-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"app_name": "Overwigger",
"author": "Bruno Molteni",
"dependencies": {
"carlo": "^0.9.43",
"engine.io": "^3.1.4",
"express": "^4.16.2",
"primus": "^7.1.0",
"primus.io": "^4.0.0",
"quick-local-ip": "^1.0.7",
"sockjs": "^0.3.19",
"ws": "^3.3.2"
},
"description": "Browser UI to control Bitwig Studio",
"license": "ISC",
"bg-script": "overwigger.server.js",
"main": "http://localhost:8888",
"name": "overwigger",
"version": "0.1.0",
"window": {
"id": "Overwigger",
"title": "Overwigger",
"icon": "./src/favicon.ico",
"fullscreen": true
},
"devDependencies": {
"nwjs-builder-phoenix": "^1.15.0"
},
"build": {
"nwVersion": "0.35.5",
"targets": [
"zip",
"nsis7z"
]
},
"scripts": {
"dist": "build --tasks win-x86,win-x64,linux-x86,linux-x64,mac-x64 --mirror https://dl.nwjs.io/ .",
"win": "build --tasks win-x64 --mirror https://dl.nwjs.io/ .",
"start": "run --x86 --mirror https://dl.nwjs.io/ ."
}
}