-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
80 lines (80 loc) · 2.19 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
{
"name": "nhentai-helper",
"author": "Jindai Kirin",
"version": "3.16.0",
"type": "module",
"license": "GPL-3.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint:fix": "eslint . --ext .ts,.tsx,.vue --fix",
"postversion": "tpv"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@intlify/unplugin-vue-i18n": "^4.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vueuse/core": "^11.1.0",
"comlink": "^4.4.1",
"detect-browser": "^5.3.0",
"element-plus": "^2.8.4",
"eventemitter3": "^5.0.1",
"file-saver": "^2.0.5",
"jquery": "^3.7.1",
"jquery-pjax": "^2.0.1",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"localforage-setitems": "^1.4.0",
"lodash-es": "^4.17.21",
"md5": "^2.3.0",
"nano-jsx": "^0.1.0",
"noty": "3.1.4",
"streamsaver": "^2.0.6",
"vue": "^3.5.11",
"vue-i18n": "^9.14.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@tsuk1ko/postversion": "^1.0.2",
"@types/clean-css": "^4.2.11",
"@types/file-saver": "^2.0.7",
"@types/jquery": "^3.5.31",
"@types/jquery.pjax": "^0.0.35",
"@types/lodash-es": "^4.17.12",
"@types/md5": "^2.3.5",
"@types/node": "^20.16.10",
"@types/streamsaver": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-love": "^47.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-vue": "^9.28.0",
"less": "^4.2.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-monkey": "^4.0.6",
"vue-tsc": "^2.1.6",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e"
},
"lint-staged": {
"*.{vue,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}