-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.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
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
70
71
{
"private": true,
"displayName": "豆瓣小组评论举报工具",
"name": "douban-group-reporter-webext",
"description": "💢批量举报豆瓣小组帖子的评论",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "pnpm clean && vite",
"build": "pnpm clean && vite build && pnpm zip",
"clean": "node scripts/clean.cjs",
"zip": "node scripts/zip.cjs",
"lint": "eslint . --fix --ext js,mjs,cjs,ts,mts,cts,vue",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.6.5",
"cheerio": "1.0.0-rc.12",
"vue": "^3.4.6",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.21",
"@iconify-json/mdi": "^1.1.64",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/eslint": "^8.56.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/compiler-sfc": "^3.4.6",
"@vueuse/core": "^10.7.1",
"adm-zip": "^0.5.10",
"autoprefixer": "^10.4.16",
"chrome-types": "^0.1.248",
"daisyui": "^4.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.19.2",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"sass": "^1.69.7",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.3",
"unplugin-icons": "^0.18.2",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.5.1",
"vite-plugin-pages": "^0.32.0",
"vite-plugin-vue-devtools": "^7.0.6",
"vue-tsc": "^1.8.27",
"webext-bridge": "^6.0.1"
},
"overrides": {
"@crxjs/vite-plugin": "$@crxjs/vite-plugin"
},
"pnpm": {
"overrides": {},
"peerDependencyRules": {
"allowAny": [],
"allowedDeprecatedVersions": {
"sourcemap-codec": "1.4.8"
},
"allowedVersions": {},
"ignoreMissing": []
}
}
}