-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "image-bed-qiniu",
"type": "module",
"version": "2.0.0",
"private": "true",
"author": "sugar",
"license": "ISC",
"keywords": [],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev:client": "cd packages/client && npm run dev",
"build:client": "cd packages/client && npm run build",
"dev:static": "cd packages/static-web && npm run dev",
"build:static": "cd packages/static-web && npm run build",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"qiniu": "^7.7.0",
"qiniu-js": "^2.5.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@types/bun": "^1.0.11",
"@types/node": "^20",
"@typescript-eslint/parser": "^6.19.0",
"dotenv": "^10.0.0",
"eslint": "^8.56.0",
"less": "^3.13.1",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}