forked from Lin-arm/GKD_subscription
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.88 KB
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
{
"name": "@lin_arm/gkd_subscription",
"version": "0.0.0",
"type": "module",
"gkd": {
"outDir": "dist",
"file": "gkd.json5",
"versionFile": "gkd.version.json5",
"changelog": "CHANGELOG.md",
"README.md": "README.md"
},
"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": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@commitlint/types": "21.0.1",
"@eslint/js": "10.0.1",
"@gkd-kit/api": "0.9.3",
"@gkd-kit/define": "0.0.1",
"@gkd-kit/tools": "0.8.0",
"@types/node": "26.0.0",
"eslint": "10.5.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-unused-imports": "4.4.1",
"json5": "2.2.3",
"lint-staged": "17.0.8",
"prettier": "3.8.4",
"simple-git-hooks": "2.13.1",
"tsx": "4.22.4",
"typescript": "6.0.3",
"typescript-eslint": "8.61.1"
},
"volta": {
"node": "24.17.0"
},
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
"engineStrict": true,
"engines": {
"node": ">=22"
}
}