forked from Tsuk1ko/nhentai-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.24 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
{
"name": "nhentai-helper",
"author": "Jindai Kirin",
"version": "3.14.2",
"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.0.5",
"@vueuse/core": "^10.10.0",
"comlink": "^4.4.1",
"detect-browser": "^5.3.0",
"element-plus": "^2.7.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",
"uuid": "^9.0.1",
"vue": "^3.4.27",
"vue-i18n": "^9.13.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tsuk1ko/postversion": "^1.0.2",
"@types/clean-css": "^4.2.11",
"@types/file-saver": "^2.0.7",
"@types/jquery": "^3.5.30",
"@types/jquery.pjax": "^0.0.35",
"@types/lodash-es": "^4.17.12",
"@types/md5": "^2.3.5",
"@types/node": "^20.12.13",
"@types/streamsaver": "^2.0.4",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"eslint-config-love": "^47.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-vue": "^9.26.0",
"less": "^4.2.0",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-monkey": "^4.0.0",
"vue-tsc": "^2.0.19",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e"
},
"lint-staged": {
"*.{vue,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}