-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
69
{
"name": "vanilla-pudding",
"type": "module",
"version": "0.0.0",
"private": true,
"description": "香草布丁🌿🍮脚本管理",
"author": "[email protected]",
"scripts": {
"preinit": "run-p rm:* && run-s step-1:*",
"step-1:init": "pnpm i",
"step-1:build": "pnpm build-packages",
"rm:vite-plugin": "pnpm run -C packages/vite-plugin rm-all",
"rm:message": "pnpm run -C packages/message rm-all",
"rm:ext": "pnpm run -C project/ext rm-all",
"rm:self": "rimraf node_modules",
"build-packages": "run-s packages:*",
"packages:vite-plugin": "pnpm run -C packages/vite-plugin build",
"packages:message": "pnpm run -C packages/message build",
"build:ext": "pnpm run -C project/ext build",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@webext-core/proxy-service": "^1.2.0",
"@wxt-dev/i18n": "^0.1.1",
"dexie": "^4.0.8",
"deyu-deps": "^0.0.7",
"monaco-editor": "^0.52.0",
"naive-ui": "^2.40.1",
"nanoid": "^5.0.7",
"qs": "^6.13.0",
"quick-fy": "^0.3.0",
"vue": "^3.5.11"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@types/chrome": "latest",
"@types/minimist": "^1.2.5",
"@types/node": "latest",
"@types/prompts": "^2.4.9",
"@types/qs": "^6.9.16",
"@vicons/fa": "^0.12.0",
"@vicons/fluent": "^0.12.0",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.12.0",
"lint-staged": "^15.2.10",
"npm-run-all2": "^6.2.3",
"postcss": "^8.4.47",
"rimraf": "^6.0.1",
"sass": "^1.79.4",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.13",
"terser": "^5.34.1",
"typescript": "^5.6.3",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6",
"wxt": "^0.19.11"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}