-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.45 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
{
"type": "module",
"version": "0.4.4",
"private": true,
"description": "Archive your Weibo posts before being banned completely.",
"author": {
"name": "Chilfish",
"email": "[email protected]",
"url": "https://github.com/Chilfish"
},
"license": "Apache-2.0",
"homepage": "https://github.com/Chilfish/Weibo-archiver.git",
"repository": {
"type": "git",
"url": "https://github.com/Chilfish/Weibo-archiver.git"
},
"engines": {
"node": ">=20.9.0",
"pnpm": ">=9.4.0"
},
"scripts": {
"dev:web": "pnpm -F web dev",
"dev:monkey": "pnpm -F monkey dev",
"build:web": "pnpm -F web build",
"build:monkey": "pnpm -F monkey build",
"build:cli": "pnpm -F shared build && pnpm -F weibo-archiver build",
"preview:web": "pnpm -F web preview",
"typecheck:web": "pnpm -F web typecheck",
"release": "tsx release.ts",
"lint": "eslint .",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@unocss/eslint-config": "^0.65.2",
"@unocss/eslint-plugin": "^0.65.2",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"jszip": "3.9.1",
"lint-staged": "^15.2.11",
"pnpm": "^9.15.1",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"unbuild": "^3.0.1",
"vue-tsc": "^2.1.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}