-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@initx-plugin/git",
"type": "module",
"version": "0.0.15",
"packageManager": "[email protected]",
"description": "initx plugin, git operations",
"author": "imba97",
"license": "MIT",
"homepage": "https://github.com/initx-collective/initx-plugin-git#readme",
"repository": {
"type": "git",
"url": "[email protected]:initx-collective/initx-plugin-git.git"
},
"bugs": {
"url": "https://github.com/initx-collective/initx-plugin-git/issues"
},
"keywords": [
"initx-plugin",
"git"
],
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"stub": "unbuild --stub",
"build": "unbuild",
"lint": "eslint --cache --flag unstable_ts_config",
"release": "bumpp",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@initx-plugin/core": "^0.0.25",
"@initx-plugin/utils": "^0.0.25"
},
"devDependencies": {
"@imba97/eslint-config": "^0.0.5",
"@types/node": "^22.9.1",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"typescript": "5.5.4",
"unbuild": "^2.0.0",
"vitest": "^2.1.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --cache --flag unstable_ts_config --fix"
}
}