forked from OpenBuilds/OpenBuilds-CAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.14 KB
/
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
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
{
"name": "bobscnc-basic-cam",
"version": "1.3.5",
"description": "Basic CAM - Cloud based software for converting DXF, SVG, Bitmap (BMP, JPG, PNG, GIF) and Gerber X274 to GCODE",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder --mac --windows --linux --publish always",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "https://github.com/rlwoodjr/Basic-CAM.git"
},
"keywords": [],
"author": "github.com/rlwoodjr <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rlwoodjr/Basic-CAM/issues"
},
"homepage": "https://github.com/rlwoodjr/Basic-CAM#readme",
"devDependencies": {
"electron": "^19.0.17",
"electron-builder": "^23.3.3",
"electron-builder-notarize": "^1.5.0"
},
"build": {
"appId": "bobscnc.cam",
"afterSign": "electron-builder-notarize",
"mac": {
"hardenedRuntime": true,
"icon": "icon.icns",
"category": "public.app-category.graphics-design",
"entitlements": "entitlements.mac.plist"
},
"productName": "BobsCNC Basic CAM",
"icon": "icon.icns",
"publish": [
{
"provider": "github",
"vPrefixedTagName": true
}
],
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
"installerIcon": "icon.ico"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "icon.ico"
},
"linux": {
"icon": "apple-icon-512x512.png",
"target": [
"deb",
"AppImage"
]
},
"dmg": {
"icon": "icon.icns",
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
}
}
}