forked from rootschafer/LaserWeb4-Binaries
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·91 lines (91 loc) · 2.14 KB
/
package.json
File metadata and controls
executable file
·91 lines (91 loc) · 2.14 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
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
{
"name": "EDMWeb",
"version": "1.0.0",
"description": "Builds EDMWeb",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make"
},
"postinstall": "electron-rebuild",
"repository": {
"type": "git",
"url": "git+https://github.com/Rack-Robotics/EDMWeb-binaries.git"
},
"author": "Anders Rottschafer",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rack-Robotics/EDMWeb-binaries/issues"
},
"homepage": "https://github.com/Rack-Robotics/EDMWeb-binaries#readme",
"dependencies": {
"axios": "^1.4.0",
"electron-download-tf": "^4.3.4",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^2.21.10",
"ew.comm-server": "git+https://github.com/Rack-Robotics/ew.comm-server.git",
"ncp": "^2.0.0",
"node-hid": "^2.1.2",
"serialport": "^11.0.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@electron-forge/cli": "^6.2.1",
"@electron-forge/maker-deb": "^6.2.1",
"@electron-forge/maker-rpm": "^6.2.1",
"@electron-forge/maker-squirrel": "^6.2.1",
"@electron-forge/maker-zip": "^6.2.1",
"@electron-forge/plugin-auto-unpack-natives": "^6.2.1",
"@electron/rebuild": "^3.2.13",
"copyfiles": "^1.2.0",
"electron": "^25.1.1",
"node-gyp": "^9.4.0"
},
"build": {
"appId": "xyz.edmweb",
"productName": "EDMWeb",
"asar": true,
"files": [
"**/*"
],
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.graphics-design"
},
"dmg": {
"icon": "build/icon.icns",
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"linux": {
"category": "Graphics"
}
},
"keywords": [
"laserweb",
"rackrobotics",
"edmweb",
"cncweb",
"grbl",
"smoothieware",
"tinyg",
"usb",
"serial",
"ethernet",
"gateway",
"ESP8266"
]
}