-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "propreslume",
"version": "1.1.0",
"description": "Send ProPresenter Text Stream to Resolume Text Box",
"repository": "https://github.com/monoxane/ProPresolume/",
"main": "src/index.js",
"scripts": {
"debug": "DEBUG=* electron .",
"start": "electron .",
"dist": "electron-builder",
"postinstall": "electron-rebuild",
"test": "echo \"Error: no test specified\" && exit 1",
"fixperms": "sudo chown root node_modules/electron/dist/chrome-sandbox && sudo chmod 4755 node_modules/electron/dist/chrome-sandbox"
},
"author": "Oliver Herrmann",
"license": "MIT",
"dependencies": {
"config": "^3.1.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"jsonfile": "^5.0.0",
"lodash": "^4.17.11",
"osc": "^2.3.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"electron": "^5.0.2",
"electron-rebuild": "^1.8.5",
"electron-builder": "^20.43.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
},
"build": {
"appId": "com.boreal.systems.propresolume",
"productName": "ProPresolume",
"mac": {
"category": "your.app.category.type",
"target": "default",
"type": "development"
}
}
}