forked from MYI-Liva/piio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.67 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
{
"name": "piio",
"version": "0.7.33-custom.3",
"description": "Piio is a live production interface software",
"main": "app/main.js",
"scripts": {
"start": "electron . --inspect",
"debug": "electron . --debug=true --port=8000",
"make-linux": "electron-builder build --linux",
"make-windows": "electron-forge make --platform win32 --arch arm64 && electron-forge make --platform win32 --arch x64",
"make-windows-x86": "electron-forge make --platform win32 --arch x64",
"make-windows-arm": "electron-forge make --platform win32 "
},
"keywords": [
"piio"
],
"author": {
"name": "Philipp Buerkner"
},
"contributors": [
{
"name": "Jonas Hartmer",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/Oolonk/piio-linux/issues"
},
"license": "UNLICENSED",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel",
"zip"
]
},
"packagerConfig": {
"ignore": [
".gitignore",
"regions.json",
"changelog.txt",
"README.md",
"scoreboard.json"
],
"executableName": "piio",
"icon": "./app/logo.ico"
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "piio",
"title": "Production Interface IO",
"setupIcon": "./app/logo.ico",
"loadingGif": "img/loading.gif"
}
}
]
}
},
"build": {
"files": [
"!.gitignore",
"!regions.json",
"!changelog.txt",
"!README.md",
"!scoreboard.json"
],
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
}
],
"category": "Office",
"description": "Production Interface IO"
},
"appId": "de.piio",
"productName": "piio",
"icon": "app/logo.png"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.4",
"@electron-forge/maker-squirrel": "^6.0.4",
"@electron-forge/maker-zip": "^6.0.0-beta.61",
"debug": "^4.1.1",
"electron": "^24.3.1",
"electron-builder": "^22.14.5",
"electron-forge-maker-appimage": "^22.14.7",
"electron-packager": "^13.1.1",
"electron-winstaller": "^3.0.4"
},
"dependencies": {
"@electron/remote": "^2.0.9",
"@slippi/slippi-js": "^6.6.0",
"@vinceau/slp-realtime": "^3.3.0",
"express": "^4.16.4",
"express-ws": "^4.0.0",
"fs": "^0.0.1-security",
"fs-extra": "^7.0.1",
"nedb": "^1.8.0",
"object-watcher": "^1.0.2",
"rxjs": "^7.8.0",
"ws": "^6.1.0"
}
}