-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "bookmark-cleaner",
"private": true,
"version": "1.0.0",
"description": "自动检测失效书签链接,一键清理 🚀",
"type": "module",
"author": "justorez",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development vite build --watch --mode development",
"build": "vue-tsc --noEmit && cross-env NODE_ENV=production vite build",
"test": "vitest",
"zip": "node .vite/scripts/zip.js",
"dist": "pnpm build && pnpm zip"
},
"homepage": "https://github.com/justorez/bookmark-cleaner#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/justorez/bookmark-cleaner.git"
},
"bugs": {
"url": "https://github.com/justorez/bookmark-cleaner/issues"
},
"dependencies": {
"@element-plus/icons-vue": "^1.1.4",
"axios": "^0.28.0",
"element-plus": "^2.1.11",
"vue": "^3.2.25"
},
"devDependencies": {
"@types/chrome": "^0.0.183",
"@types/node": "^20.12.3",
"@types/ws": "^8.5.3",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/ui": "^1.4.0",
"adm-zip": "^0.5.9",
"cross-env": "^7.0.3",
"less": "^4.1.2",
"rimraf": "^5.0.5",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^4.5.4",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.2.14",
"vitest": "^1.4.0",
"vue-tsc": "^2.0.7",
"ws": "^8.17.1"
}
}