-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "gkd-mrlc",
"version": "1.2.11",
"type": "module",
"gkd": {
"outDir": "dist",
"file": "gkd.json5",
"versionFile": "gkd.version.json5",
"changelog": "CHANGELOG.md",
"README.md": "README.md"
},
"main": "./dist/gkd.json5",
"scripts": {
"postinstall": "simple-git-hooks",
"format": "prettier --cache --write ./**/*.{js,cjs,mjs,ts,jsx,tsx,json}",
"lint": "eslint --cache --fix ./**/*.{js,cjs,mjs,ts,jsx,tsx}",
"check": "tsc --noEmit && tsx ./scripts/check.ts",
"build": "tsc --noEmit && tsx ./scripts/build.ts"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "pnpm exec commitlint --config commitlint.config.ts --edit ${1}",
"pre-push": "pnpm run check"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,jsx,tsx}": [
"eslint --cache --fix",
"prettier --cache --write"
],
"*.json": [
"prettier --cache --write"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"./dist"
],
"dependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/types": "19.5.0",
"@eslint/js": "9.14.0",
"@gkd-kit/api": "0.6.0",
"@gkd-kit/define": "0.0.1",
"@gkd-kit/tools": "0.5.2",
"@types/eslint__js": "8.42.3",
"@types/node": "22.9.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-unused-imports": "4.1.4",
"json5": "2.2.3",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"simple-git-hooks": "2.11.1",
"tsx": "4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0"
},
"volta": {
"node": "20.13.1"
},
"packageManager": "pnpm@9.12.3",
"engineStrict": true,
"engines": {
"node": ">=22"
}
}