-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.43 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
{
"name": "mc-git-launcher",
"version": "1.0.0",
"private": true,
"main": "entry-point.js",
"scripts": {
"dev": "cross-env NODE_ENV=development electron . --remote-debugging-port=9222",
"prebuild": "cross-env NODE_ENV=production nuxt build ./src/renderer",
"build": "electron-builder"
},
"build": {
"appId": "mc-git-launcher",
"files": [
"src/main/**/*",
"src/renderer/dist/**/*",
"entry-point.js",
"package.json"
],
"directories": {
"output": "build"
},
"win": {
"publish": "github"
},
"mac": {
"category": "public.app-category.utilities",
"publish": "github"
},
"snap": {
"publish": "github"
}
},
"resolutions": {
"@types/node": "^14.0.23"
},
"dependencies": {
"adm-zip": "^0.4.16",
"axios": "^0.19.2",
"fs-extra": "^9.0.1",
"fs-readstream-progress": "0.0.5",
"isomorphic-git": "^1.7.8",
"make-dir": "^3.1.0",
"minecraft-launcher-core": "^3.15.0",
"tar": "^6.0.5",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.0.2",
"vuex-persistedstate": "^4.0.0-beta.1",
"zlib": "^1.0.5"
},
"devDependencies": {
"@nuxt/types": "^2.14.6",
"@nuxt/typescript-build": "^2.0.3",
"@nuxtjs/vuetify": "^1.11.2",
"cross-env": "^7.0.2",
"electron": "^9.3.2",
"electron-builder": "^22.8.1",
"nuxt": "^2.14.6",
"vuex-module-decorators": "^1.0.1"
}
}