-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "activation-scripts",
"type": "module",
"version": "1.7.0",
"description": "",
"author": "wibus-wee <wibus@qq.com>",
"keywords": [],
"scripts": {
"build:core": "pnpm -C packages/core run build && cp ./dist/activator.js activator.js",
"build:generator": "pnpm -C packages/generator run build",
"build": "npm run build:core && npm run build:generator",
"start:generator": "pnpm -C packages/generator run start",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"lint": "eslint ."
},
"dependencies": {
"@antfu/eslint-config": "^2.6.4",
"commander": "^12.0.0",
"eslint": "^8.56.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.11.30",
"esno": "^0.17.0",
"lint-staged": "^15.2.7",
"rollup": "^3.29.4",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-ts": "^3.4.5",
"simple-git-hooks": "^2.9.0",
"toml": "^3.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}