-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "kdocs-scripts",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"author": "DreamyTZK",
"license": "MIT",
"keywords": [],
"sideEffects": false,
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "nr build",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.3",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.6",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.10.4",
"bumpp": "^9.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"esno": "^4.0.0",
"lint-staged": "^15.2.0",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}