forked from afeireal/cloud-disk-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.04 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.04 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
{
"name": "cloud-disk-plugin",
"type": "module",
"cnName": "网盘文件批量重命名",
"author": "afeireal",
"license": "MIT",
"version": "1.2.1",
"keywords": [
"网盘",
"重命名",
"批量重命名",
"cloud disk",
"rename",
"batch rename",
"tamper monkey",
"web extension"
],
"repository": "https://github.com/afeireal/cloud-disk-plugin",
"description": "Batch rename files of cloud disk.",
"cnDescription": "网盘文件批量重命名插件,支持百度网盘、阿里云盘、夸克网盘、PikPak云盘。",
"scripts": {
"dev:tamper-monkey": "vite --mode tamper-monkey",
"dev:web-extension": "vite --mode web-extension-dev",
"build:tamper-monkey": "vue-tsc --noEmit && vite build --mode tamper-monkey",
"build:web-extension": "vue-tsc --noEmit && vite build --mode web-extension-build && node buildWebExtension.js",
"preview": "vite preview",
"test": "vitest",
"type-check": "vue-tsc --noEmit -p tsconfig.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"vue": "^3.4.38",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.4",
"@types/chrome": "^0.0.270",
"@types/node": "^20.16.2",
"@types/webextension-polyfill": "^0.12.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"happy-dom": "^15.3.1",
"prettier": "^3.3.3",
"puppeteer": "^23.2.0",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-monkey": "^4.0.6",
"vite-plugin-web-extension": "^4.1.6",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.0",
"xmlbuilder2": "^3.1.1",
"zip-a-folder": "^3.1.7"
}
}