-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
121 lines (121 loc) · 2.72 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
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
116
117
118
119
120
121
{
"name": "monimo",
"author": "Monimo",
"description": "First class experience for watching animes.",
"version": "0.2.3",
"private": false,
"scripts": {
"serve": "vue-cli-service serve ",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build:electron": "vue-cli-service build:electron",
"serve:electron": "vue-cli-service serve:electron",
"postinstall": "electron-builder install-app-deps",
"publish:mac": "vue-cli-service build:electron --mac -p always",
"publish:win": "vue-cli-service build:electron --win -p always",
"publish:linux": "vue-cli-service build:electron --linux -p always"
},
"dependencies": {
"axios": "^0.18.0",
"cloudscraper": "^1.5.0",
"electron-updater": "^3.1.2",
"nearby-cities": "^1.1.0",
"register-service-worker": "^1.0.0",
"vue": "^2.5.17",
"vue-feather-icons": "^4.7.1",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-persistedstate": "^2.5.4",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.3",
"@vue/cli-plugin-eslint": "^3.0.3",
"@vue/cli-plugin-pwa": "^3.0.3",
"@vue/cli-service": "^3.0.3",
"concurrently": "^4.0.1",
"electron": "^2.0.9",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"vue-cli-plugin-electron-builder": "^1.0.0-rc.3",
"vue-template-compiler": "^2.5.17"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"main": "dist_electron/bundled/background.js",
"build": {
"appId": "com.github.altinselimi.monimo",
"publish": [
{
"provider": "github",
"owner": "altinselimi",
"repo": "monimo"
}
],
"productName": "Monimo",
"directories": {
"output": "build"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"publish": [
"github"
],
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "src/assets/icon.png"
},
"nsis": {
"createDesktopShortcut": true,
"uninstallDisplayName": "Monimo"
},
"mac": {
"icon": "src/assets/icon.png"
},
"linux": {
"icon": "src/assets"
}
}
}