forked from natcl/electron-node-red
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package-template.json
93 lines (93 loc) · 2.59 KB
/
package-template.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
{
"name": "electron_node_red",
"version": "1.2.0",
"description": "Electron Node-RED application starter kit for development",
"main": "main.js",
"NRelectron": {
"productName": "My Node-RED Electron App",
"editable": true,
"allowLoadSave": false,
"showMap": false,
"kioskMode": false,
"addNodes": true,
"flowFile": "electronflow.json",
"start": "dashboard"
},
"scripts": {
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder build -p always",
"postinstall": "electron-builder install-app-deps",
"start": "electron main.js",
"test": "echo \" Warning: no test specified \""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dceejay/electron-node-red.git"
},
"dependencies": {
"electron-is-dev": "^3.0.1",
"electron-store": "^8.0.0",
"express": "^4.21.1",
"node-red": "4.0.5"
},
"keywords": [
"electron",
"quick start",
"node-red"
],
"author": {
"name": "Your Name",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dceejay/electron-node-red/issues"
},
"homepage": "https://github.com/dceejay/electron-node-red#readme",
"devDependencies": {
"electron": "32.0.0",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.electron.node-red-app",
"productName": "My Node-RED Electron App",
"copyright": "Copyright © 2018,2024 D.Conway-Jones",
"buildDependenciesFromSource": true,
"files": [
"**/*",
{
"from": "node_modules/@node-red/nodes/examples",
"to": "node_modules/@node-red/nodes/examples"
}
],
"mac": {
"category": "public.app-category.developer-tools",
"target": "dmg"
},
"linux": {
"target": [
"rpm",
{
"target": "deb",
"arch": [
"x64",
"armv7l"
]
}
],
"synopsis": "Node-RED Low Code development",
"category": "Development"
},
"win": {
"target": [
{
"target": "msi",
"arch": [
"x64"
]
}
]
}
}
}