-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 962 Bytes
/
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
{
"name": "octadre",
"version": "1.0.3",
"description": "Transform your Novation Launchpad into a midi sequencer.",
"main": "src/main.js",
"bin": "main.js",
"scripts": {
"test": "node tests/tests.js",
"start": "electron . ",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"check": "npx eslint src/",
"postinstall": "electron-builder install-app-deps"
},
"author": "",
"license": "ISC",
"dependencies": {
"@electron/remote": "^1.0.2",
"async": "^3.2.0",
"easymidi": "^2.0.1",
"hyperswarm": "^3.0.0-beta2",
"pkg": "^4.4.9",
"random-seed": "^0.3.0",
"readable-stream": "^3.6.0",
"socket.io-client": "^4.0.1",
"tape": "^5.2.2"
},
"devDependencies": {
"electron": "^11.2.3",
"electron-builder": "^22.9.1",
"electron-rebuild": "^2.3.5",
"eslint": "^7.20.0"
},
"build": {
"appId": "octadre",
"linux": {
"target": "AppImage"
}
}
}