-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.13 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@bassist/monorepo",
"version": "0.0.0",
"description": "I play bass, so enjoy the name.",
"author": "chengpeiquan <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "tsx scripts/build/build-single",
"build:all": "tsx scripts/build/build-multiple",
"release": "tsx scripts/release",
"changelog": "tsx scripts/changelog.cts",
"test": "vitest",
"lint": "eslint packages --ext .js,.ts,.jsx,.tsx,.vue",
"format": "prettier --write packages",
"mirror:get": "npm config get registry",
"mirror:set": "npm config set registry https://registry.npmmirror.com",
"mirror:rm": "npm config rm registry",
"up": "npx taze minor -r -f -w -i",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"prepare": "husky install"
},
"dependencies": {
"nprogress": "^0.2.0"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.9",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@unocss/eslint-plugin": "^0.58.9",
"@withtypes/mime": "^0.1.2",
"@withtypes/minimist": "^0.1.1",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-antfu": "^2.3.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-vue": "^9.26.0",
"fs-extra": "^11.2.0",
"globals": "^14.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"tsx": "^4.16.0",
"typescript": "^5.5.2",
"unocss": "^0.58.9",
"vitest": "^1.6.0",
"vue-eslint-parser": "^9.4.3"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}