-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.47 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
{
"name": "bookmark-url-batch-replacer",
"version": "1.3.0",
"private": true,
"author": "dragonish",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vue-tsc && cross-env NODE_ENV=development vite build --watch",
"dev:ff": "vue-tsc && cross-env NODE_ENV=development BROWSER=ff vite build --watch",
"build": "vue-tsc && vite build",
"build:ff": "vue-tsc && cross-env BROWSER=ff vite build",
"build:zip": "vue-tsc && cross-env ZIP_MODE=true vite build && cross-env ZIP_MODE=true BROWSER=ff vite build",
"release": "commit-and-tag-version"
},
"dependencies": {
"@vueuse/core": "^14.3.0",
"ant-design-vue": "^4.2.6",
"vue": "^3.5.34"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chrome": "^0.1.42",
"@types/node": "^24.12.4",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"@vitejs/plugin-vue": "^6.0.7",
"commit-and-tag-version": "^12.7.3",
"cross-env": "^10.1.0",
"eslint": "^10.4.0",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.6.0",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"unplugin-vue-components": "^32.0.0",
"vite": "^8.0.13",
"vite-plugin-zip-pack": "^1.2.4",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.9"
},
"commit-and-tag-version": {
"skip": {
"changelog": true
},
"scripts": {
"posttag": "pnpm run build:zip"
}
}
}