This repository has been archived by the owner on Apr 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 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
{
"name": "AlphaConsole",
"version": "10.0.0",
"description": "Electron version of AlphaConsole",
"main": "source/index.js",
"scripts": {
"test": "electron source/index.js",
"app": "electron source/index.js",
"build-packager": "electron-packager . --out=build --overwrite --platform win32 --icon=source/assets/img/app_icon.ico",
"pack": "build --dir --ia32",
"publish": "build -p onTag",
"watch": "grunt watch"
},
"build": {
"appId": "alphaconsole",
"productName": "AlphaConsole",
"asarUnpack": [
"textures/packages.json",
"items.json",
"slotDictionary.json",
"xapofx1_5.dll",
"discord-rpc.dll"
],
"icon": "source/assets/img/app_icon.ico",
"extraResources": [
{
"from": "app-update.yml",
"to": "app-update.yml"
}
],
"files": [
"**/*",
"!textures/*",
"textures/packages.json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlphaConsole/AlphaConsoleElectron.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlphaConsole/AlphaConsoleElectron/issues"
},
"homepage": "https://github.com/AlphaConsole/AlphaConsoleElectron#readme",
"devDependencies": {
"electron": "^1.8.2",
"electron-builder": "19.37.0",
"electron-installer-windows": "^0.2.0",
"electron-packager": "^14.0.6",
"electron-winstaller": "^2.6.4",
"grunt": "^1.0.2",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-electron": "^8.0.0",
"grunt-sass": "^2.1.0",
"gulp": "^4.0.0"
},
"dependencies": {
"electron-is-dev": "^1.1.0",
"electron-log": "^2.2.14",
"electron-updater": "2.12.0",
"modclean": "^2.1.2",
"node-notifier": "^5.2.1",
"request": "^2.83.0",
"squirrel": "^1.0.0",
"tmp": "^0.0.33"
}
}