-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
{
"name": "mangu-reader",
"version": "2.3.1",
"private": false,
"description": "A Manga reader that lets you learn.",
"repository": "https://github.com/korigamik/mangu",
"keywords": [
"manga",
"mangu",
"reader",
"comic",
"origami"
],
"author": "KorigamiK <[email protected]>",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build --publish=never",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"electron:build:linux": "vue-cli-service electron:build --linux"
},
"main": "background.js",
"dependencies": {
"core-js": "^3.6.5",
"file-url": "^4.0.0",
"fuse.js": "^6.4.6",
"mime-types": "^2.1.31",
"node-fetch": "^2.6.1",
"vue": "^3.0.0",
"vue-router": "^4.0.0-0"
},
"devDependencies": {
"@types/mime-types": "^2.1.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"electron": "^13.0.1",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0",
"lint-staged": "^9.5.0",
"typescript": "~4.1.5",
"vue-cli-plugin-electron-builder": "~2.1.1"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}