forked from Tsuk1ko/nhentai-helper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.27 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
{
"name": "nhentai-helper",
"author": "Jindai Kirin",
"version": "3.6.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.0.10",
"comlink": "^4.4.1",
"detect-browser": "^5.3.0",
"element-plus": "^2.2.27",
"eventemitter3": "^5.0.0",
"file-saver": "^2.0.5",
"jquery": "^3.6.3",
"jquery-pjax": "^2.0.1",
"jszip": "^3.10.1",
"just-once": "^2.2.0",
"localforage": "^1.10.0",
"localforage-setitems": "^1.4.0",
"lodash-es": "^4.17.21",
"md5": "^2.3.0",
"noty": "3.1.4",
"streamsaver": "^2.0.6",
"uuid": "^9.0.0",
"vue": "^3.2.47"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@tsuk1ko/postversion": "^1.0.1",
"@types/clean-css": "^4.2.6",
"@types/file-saver": "^2.0.5",
"@types/jquery": "^3.5.16",
"@types/jquery.pjax": "^0.0.31",
"@types/lodash-es": "^4.17.6",
"@types/md5": "^2.3.2",
"@types/node": "^16.11.57",
"@types/streamsaver": "^2.0.1",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitejs/plugin-vue": "^3.2.0",
"clean-css": "^5.3.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.9.0",
"is-ci": "^3.0.1",
"less": "^4.1.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rollup-plugin-copy": "^3.4.0",
"typescript": "^4.9.5",
"unplugin-vue-components": "^0.24.0",
"vite": "^3.2.5",
"vite-plugin-monkey": "^2.12.0",
"vue-tsc": "^1.1.3",
"yesno": "^0.4.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e"
},
"lint-staged": {
"*.{vue,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}