-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.26 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.26 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "gkd-subscription",
"version": "2.0.68",
"type": "module",
"gkd": {
"outDir": "dist",
"file": "gkd.json5",
"versionFile": "gkd.version.json5",
"changelog": "CHANGELOG.md",
"README.md": "README.md"
},
"main": "./dist/gkd.json5",
"unpkg": "./dist/gkd.json5",
"jsdelivr": "./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,cts,mts,jsx,tsx}": [
"prettier --cache --write",
"eslint --cache --fix"
],
"*.json": [
"prettier --cache --write"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"./dist"
],
"dependencies": {
"@commitlint/cli": "20.4.4",
"@commitlint/config-conventional": "20.4.4",
"@commitlint/types": "20.4.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^10.0.0",
"@gkd-kit/api": "0.8.0",
"@gkd-kit/define": "0.0.1",
"@gkd-kit/tools": "0.8.0",
"@types/node": "24.12.0",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@typescript-eslint/parser": "8.57.0",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-define-config": "2.1.0",
"eslint-plugin-unused-imports": "4.4.1",
"json5": "2.2.3",
"lint-staged": "16.4.0",
"prettier": "3.8.1",
"simple-git-hooks": "2.13.1",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"volta": {
"node": "24.14.0"
},
"author": "梦念逍遥",
"license": "MIT",
"homepage": "https://github.com/MengNianxiaoyao/gkd-subscription#readme",
"bugs": {
"url": "https://github.com/MengNianxiaoyao/gkd-subscription/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MengNianxiaoyao/gkd-subscription.git"
},
"engineStrict": true,
"engines": {
"node": ">=20"
}
}