-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.98 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.98 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
{
"name": "innkeeper",
"version": "2.4.0",
"description": "A World of Warcraft companion app",
"main": "main.js",
"scripts": {
"start": "electron .",
"build:engine:win": "pyinstaller --onefile --distpath dist-engine --name engine --exclude-module uvicorn --exclude-module fastapi --exclude-module dotenv backend/engine.py",
"build:engine:linux": "pyinstaller --onefile --distpath dist-engine --name engine --exclude-module uvicorn --exclude-module fastapi --exclude-module dotenv backend/engine.py",
"build:win": "npm run build:engine:win && electron-builder --win",
"build:linux": "npm run build:engine:linux && electron-builder --linux",
"build:mac": "npm run build:engine:mac && electron-builder --mac",
"build:engine:mac": "pyinstaller --onefile --distpath dist-engine --name engine --exclude-module uvicorn --exclude-module fastapi --exclude-module dotenv backend/engine.py"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"electron": "^35.1.5",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.eightmouse.innkeeper",
"productName": "Innkeeper",
"icon": "assets/icon.ico",
"afterPack": "./afterPack.js",
"files": [
"main.js",
"frontend/**/*",
"assets/**/*"
],
"extraResources": [
{
"from": "assets/talent_builds.json",
"to": "talent_builds.json"
}
],
"win": {
"target": "portable",
"extraResources": [
{
"from": "dist-engine/engine.exe",
"to": "engine.exe"
}
]
},
"linux": {
"target": "AppImage",
"icon": "assets/logo.png",
"extraResources": [
{
"from": "dist-engine/engine",
"to": "engine"
}
]
},
"mac": {
"target": "dmg",
"icon": "assets/logo.png",
"extraResources": [
{
"from": "dist-engine/engine",
"to": "engine"
}
]
}
}
}