-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.01 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.01 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "pt-depiler",
"private": true,
"version": "0.0.6",
"type": "module",
"homepage": "https://github.com/pt-plugins/PT-depiler",
"packageManager": "pnpm@10.21.0",
"author": {
"name": "Pt-Plugins",
"url": "https://github.com/pt-plugins"
},
"maintainers": [
{
"name": "Rhilip",
"url": "https://github.com/Rhilip"
}
],
"contributors": [
{
"name": "ronggang",
"url": "https://github.com/ronggang"
},
{
"name": "ted423",
"url": "https://github.com/ted423"
}
],
"scripts": {
"dev": "vite",
"format": "prettier --list-different -w ./",
"check": "vue-tsc --noEmit",
"build:dist": "vite build",
"build:dist-firefox": "cross-env TARGET=firefox vite build",
"build:watch": "vite build --watch --mode development --minify false",
"action:upload_telegram": "tsx vite/sendToTgChannel.ts",
"release:changelog": "conventional-changelog -p angular && git add CHANGELOG.md",
"prepare": "husky"
},
"engines": {
"node": ">=23.7.0",
"pnpm": ">=10.14.0"
},
"dependencies": {
"@vueuse/components": "^14.2.1",
"@vueuse/core": "^14.2.1",
"@webext-core/job-scheduler": "^1.0.0",
"@webext-core/messaging": "^2.3.0",
"@webext-core/storage": "^1.2.0",
"axios": "^1.15.2",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"echarts": "^6.0.0",
"es-toolkit": "^1.45.1",
"file-saver": "^2.0.5",
"filesize": "^11.0.17",
"idb": "^8.0.3",
"jszip": "^3.10.1",
"konva": "^10.2.5",
"nanoid": "^5.1.9",
"p-queue": "^9.2.0",
"parse-torrent": "^11.0.19",
"pinia": "^3.0.4",
"pinia-plugin-state-persistence": "^1.11.0",
"search-query-parser": "^1.6.0",
"sizzle": "^2.3.10",
"url-join": "^5.0.0",
"urlencode": "^2.0.0",
"valid-filename": "^4.0.0",
"vue": "^3.5.33",
"vue-echarts": "^8.0.1",
"vue-i18n": "^11.4.0",
"vue-konva": "^3.4.0",
"vue-router": "^5.0.4",
"vuetify": "^3.12.4",
"webdav": "^5.9.0"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^11.0.7",
"@types/chrome": "^0.1.38",
"@types/crypto-js": "^4.2.2",
"@types/file-saver": "^2.0.7",
"@types/git-rev-sync": "^2.0.2",
"@types/node": "^25.6.0",
"@types/parse-torrent": "^5.8.8",
"@types/sizzle": "^2.3.10",
"@vitejs/plugin-vue": "^6.0.5",
"cross-env": "^10.1.0",
"git-rev-sync": "^3.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"sass": "^1.99.0",
"tsx": "^4.21.0",
"typescript": "~6.0.3",
"vite": "^6.4.2",
"vite-plugin-node-polyfills": "^0.26.0",
"vite-plugin-vue-devtools": "^8.1.1",
"vite-plugin-vuetify": "^2.1.3",
"vite-plugin-web-extension": "4.5.0",
"vue-tsc": "^3.2.7"
},
"prettier": {
"printWidth": 120,
"semi": true,
"trailingComma": "all",
"bracketSpacing": true,
"vueIndentScriptAndStyle": false,
"endOfLine": "lf"
},
"lint-staged": {
"*.{js,ts,json,vue,html,css,scss}": [
"prettier --write "
]
}
}