-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
45
{
"name": "@pionxzh/userscripts",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@8.10.2",
"author": "pionxzh",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"cz": "cz",
"clean": "rimraf ./dist",
"release:ci": "cpy packages/**/dist/*.user.js dist --flat",
"prepare": "husky install"
},
"devDependencies": {
"@pionxzh/eslint-config": "1.0.1",
"@types/node": "^20.8.10",
"commitizen": "^4.3.0",
"cpy-cli": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"rimraf": "^5.0.5",
"sass": "^1.69.5",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "pnpm exec eslint"
}
}