This repository has been archived by the owner on Jan 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package1.json
101 lines (101 loc) · 2.18 KB
/
package1.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
94
95
96
97
98
99
100
101
{
"name": "laserweb",
"version": "3.254.0",
"description": "a fully featured web ui for laser cutter/engravers, reprap and other 3d printers",
"contributors": [
"Peter van der Walt <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openhardwarecoza/LaserWeb3.git"
},
"licenses": [
{
"type": "AGPL-3.0",
"url": "http://www.gnu.org/licenses/agpl-3.0.txt"
}
],
"dependencies": {
"chalk": "*",
"dotenv": "*",
"node-static": "*",
"request": "*",
"serialport": "^4.0.6",
"socket.io": "*",
"tinyg": "^0.4.5"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/openhardwarecoza/LaserWeb3/issues"
},
"homepage": "https://github.com/openhardwarecoza/LaserWeb3#readme",
"main": "server-smoothie.js",
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"laser",
"cnc",
"laserweb",
"cncweb",
"grbl",
"smoothieware",
"threejs",
"dxf",
"svg",
"stl",
"raster",
"lasercutter",
"engrave"
],
"author": "Peter van der Walt",
"devDependencies": {
"copyfiles": "^1.0.0",
"electron": "1.4.1",
"electron-builder": "next",
"ncp": "^2.0.0"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "npm install && npm run copy && electron ./app",
"pack": "npm run copy && build --dir",
"dist": "npm run copy && build",
"release": "npm run copy && build",
"copy": "copyfiles *.js app && ncp public app/public --limit=6"
},
"build": {
"appId": "xyz.laserweb",
"productName": "LaserWeb",
"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"
}
]
},
"win": {
"remoteReleases": "https://github.com/openhardwarecoza/LaserWeb3",
"publish": [
"github",
"bintray"
]
}
}
}