-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.44 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "pt-depiler",
"private": true,
"version": "0.0.1",
"type": "module",
"homepage": "https://github.com/pt-plugins/PT-depiler",
"packageManager": "pnpm@9.11.0",
"author": {
"name": "Pt-Plugins",
"url": "https://github.com/pt-plugins"
},
"maintainers": [
{
"name": "Rhilip",
"url": "https://github.com/Rhilip"
},
{
"name": "ted423",
"url": "https://github.com/ted423"
}
],
"contributors": [
{
"name": "ronggang",
"url": "https://github.com/ronggang"
}
],
"scripts": {
"dev": "vite",
"format": "prettier --list-different -w ./",
"build:dist": "vue-tsc --noEmit && vite build",
"build:watch": "vite build --watch --mode development --minify false",
"prepare": "husky"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@tailwindcss/vite": "^4.0.12",
"@vueuse/core": "^12.8.2",
"@vueuse/router": "^12.8.2",
"@webext-core/messaging": "^2.2.0",
"@webext-core/storage": "^1.2.0",
"axios": "^1.8.2",
"axios-cache-interceptor": "^1.6.2",
"date-fns": "^4.1.0",
"es-toolkit": "^1.32.0",
"filesize": "^10.1.6",
"nanoid": "^5.1.3",
"p-queue": "^8.1.0",
"parse-torrent": "^11.0.18",
"pinia": "^3.0.1",
"pinia-plugin-state-persistence": "^1.10.1",
"search-query-parser": "^1.6.0",
"sizzle": "^2.3.10",
"tailwindcss": "^4.0.12",
"url-join": "^5.0.0",
"urlencode": "^2.0.0",
"vue": "^3.5.13",
"vue-i18n": "^11.1.2",
"vue-router": "^4.5.0",
"vuetify": "^3.7.15",
"webdav": "^5.8.0"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@types/chrome": "^0.0.308",
"@types/git-rev-sync": "^2.0.2",
"@types/node": "^22.13.9",
"@types/parse-torrent": "^5.8.7",
"@types/sizzle": "^2.3.9",
"@vitejs/plugin-vue": "^4.6.2",
"git-rev-sync": "^3.0.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.3",
"sass": "^1.85.1",
"typescript": "~5.6.3",
"vite": "^5.4.14",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-vue-devtools": "^7.7.2",
"vite-plugin-vuetify": "^2.1.0",
"vite-plugin-web-extension": "^4.4.3",
"vue-tsc": "^2.2.8"
},
"prettier": {
"printWidth": 120,
"semi": true,
"trailingComma": "all",
"bracketSpacing": true,
"endOfLine": "lf"
},
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx,json,yml,yaml,vue,html}": [
"prettier --write "
]
}
}