-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "drive-rename",
"type": "module",
"version": "1.4.0",
"private": true,
"packageManager": "[email protected]",
"description": "Batch rename files, supporting various cloud drives.",
"author": "a1mersnow",
"repository": "https://github.com/a1mersnow/drive-rename",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "vite build",
"dev": "vite --port 3333 --open",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"up": "taze major -I",
"postinstall": "npx simple-git-hooks",
"release": "bumpp"
},
"dependencies": {
"@vueuse/core": "^12.4.0",
"dayjs": "^1.11.13",
"js-md5": "^0.8.3",
"pinia": "^2.3.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@iconify-json/carbon": "^1.2.5",
"@iconify-json/ion": "^1.2.2",
"@types/node": "^22.10.7",
"@unocss/eslint-config": "^65.4.2",
"@unocss/preset-rem-to-px": "^65.4.2",
"@unocss/reset": "^65.4.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"animated-unocss": "^0.0.6",
"bumpp": "^9.10.1",
"eslint": "^9.18.0",
"eslint-define-config": "^2.1.0",
"execa": "^9.5.2",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.1",
"pnpm": "^9.15.4",
"simple-git-hooks": "^2.11.1",
"taze": "^18.2.0",
"typescript": "^5.7.3",
"unocss": "^65.4.2",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"vite": "^6.0.7",
"vite-plugin-monkey": "^5.0.5",
"vitest": "^3.0.2",
"vue-tsc": "^2.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}