-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.21 KB
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
72
73
74
{
"name": "free-export-bookmarks",
"description": "A extension project",
"version": "1.6.0",
"author": "dragonish <no.web.developer@outlook.com>",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"watch:c": "cross-env NODE_ENV=development BROWSER_ENV=chrome vite build --watch",
"watch:f": "cross-env NODE_ENV=development BROWSER_ENV=firefox vite build --watch",
"watch:e": "cross-env NODE_ENV=development BROWSER_ENV=edge vite build --watch",
"build:c": "cross-env BROWSER_ENV=chrome vite build",
"build:f": "cross-env BROWSER_ENV=firefox vite build",
"build:e": "cross-env BROWSER_ENV=edge vite build",
"build": "pnpm run build:c && pnpm run build:f && pnpm run build:e",
"release": "standard-version",
"test": "vue-tsc && cross-env NODE_NO_WARNINGS=1 mocha"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/chai": "^5.2.2",
"@types/chrome": "^0.0.307",
"@types/firefox-webext-browser": "^120.0.4",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.29",
"@typescript-eslint/parser": "^8.33.1",
"@vitejs/plugin-vue": "^5.2.4",
"chai": "^5.2.0",
"cross-env": "^7.0.3",
"eslint": "^9.28.0",
"eslint-plugin-vue": "^10.1.0",
"globals": "^16.2.0",
"jsdom": "^26.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^11.5.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-html-location": "^0.1.2",
"standard-version": "^9.5.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"unplugin-auto-import": "^19.3.0",
"unplugin-element-plus": "^0.10.0",
"unplugin-vue-components": "^28.7.0",
"vite": "^6.3.5",
"vite-plugin-zip-pack": "^1.2.4",
"vue-eslint-parser": "^10.1.3",
"vue-tsc": "^2.2.10"
},
"standard-version": {
"skip": {
"changelog": true
},
"scripts": {
"posttag": "pnpm run build"
}
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vueuse/core": "^13.3.0",
"element-plus": "^2.9.11",
"lodash-es": "^4.17.21",
"pinia": "^3.0.2",
"vue": "^3.5.16"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"vue-demi"
]
}
}