OpenBuilds-CONTROL/package.json

119 wiersze
2.8 KiB
JSON
Czysty Zwykły widok Historia

2018-06-19 08:07:03 +00:00
{
"name": "OpenBuildsCONTROL",
2019-04-16 18:17:42 +00:00
"version": "1.0.154-beta",
2018-06-19 08:07:03 +00:00
"license": "AGPL-3.0",
"description": "Machine Interface Driver for OpenBuilds",
"author": "github.com/openbuilds <webmaster@openbuilds.com>",
2018-06-19 08:07:03 +00:00
"devDependencies": {
2019-04-15 17:31:30 +00:00
"copyfiles": "^2.1.0",
"electron": "^4.0.5",
"electron-builder": "^20.38.5",
"electron-rebuild": "^1.8.4",
2018-06-19 08:07:03 +00:00
"ncp": "^2.0.0"
},
"dependencies": {
2019-04-15 17:31:30 +00:00
"avrgirl-arduino": "^3.0.0",
"directory-tree": "^2.2.1",
"electron-updater": "^4.0.6",
"express": "^4.16.4",
2018-06-27 14:08:24 +00:00
"formidable": "^1.2.1",
2018-06-19 08:07:03 +00:00
"ip": "^1.1.5",
2019-03-07 14:38:40 +00:00
"lodash": "^4.17.11",
2018-06-19 08:07:03 +00:00
"md5": "^2.2.1",
2018-08-13 17:22:26 +00:00
"mkdirp": "^0.5.1",
2019-04-15 17:31:30 +00:00
"rimraf": "^2.6.3",
"serialport": "^7.1.4",
"socket.io": "^2.2.0"
2018-06-19 08:07:03 +00:00
},
"main": "index.js",
"scripts": {
2018-06-27 19:23:34 +00:00
"start": "echo \"Please run 'npm run dist' to create a local installer\" ",
2018-06-19 08:07:03 +00:00
"test": "echo \"Error: no test specified\" && exit 0",
2018-07-26 16:19:59 +00:00
"dist": "build --ia32",
"distpi": "build --linux deb --armv7l"
2018-06-19 08:07:03 +00:00
},
"keywords": [
"usb"
],
2018-07-11 12:39:24 +00:00
"repository": "https://github.com/OpenBuilds/SW-Machine-Drivers",
2018-06-19 08:07:03 +00:00
"build": {
2018-08-16 12:50:11 +00:00
"icon": "build/icon.icns",
2018-06-19 08:07:03 +00:00
"appId": "openbuilds.projectmakr",
"productName": "OpenBuildsCONTROL",
2018-06-19 08:07:03 +00:00
"asar": true,
2018-06-27 14:08:24 +00:00
"nsis": {
"oneClick": false,
2018-07-11 19:52:11 +00:00
"perMachine": false,
2018-07-12 11:22:00 +00:00
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
2018-06-27 14:08:24 +00:00
"license": "build/licence.txt",
"installerIcon": "build/icon.ico",
2018-07-12 20:35:08 +00:00
"installerSidebar": "build/installerSidebar.bmp",
"artifactName": "${productName}-Setup-${version}.${ext}"
2018-06-27 14:08:24 +00:00
},
2019-04-15 18:01:02 +00:00
"fileAssociations": [
{
2019-04-15 18:09:45 +00:00
"ext": "gcode",
"name": "GCODE File",
2019-04-15 18:01:02 +00:00
"description": "GCODE File",
2019-04-15 18:09:45 +00:00
"role": "Viewer"
2019-04-15 18:07:21 +00:00
},
2019-04-15 18:09:45 +00:00
{
"ext": "gc",
"name": "GCODE File",
"description": "GCODE File",
"role": "Viewer"
},
{
"ext": "tap",
"name": "GCODE File",
"description": "GCODE File",
"role": "Viewer"
},
{
"ext": "nc",
"name": "GCODE File",
"description": "GCODE File",
"role": "Viewer"
},
{
"ext": "cnc",
"name": "GCODE File",
"description": "GCODE File",
"role": "Viewer"
}
2019-04-15 18:01:02 +00:00
],
2018-06-19 08:07:03 +00:00
"files": [
2018-07-11 19:29:51 +00:00
"**/*",
2018-12-20 19:22:02 +00:00
"ssl/**/*",
"firmware/**/*"
2018-06-19 08:07:03 +00:00
],
2018-07-11 12:39:24 +00:00
"extraFiles": [
"ssl"
],
2018-06-22 19:49:51 +00:00
"linux": {
"icon": "build/"
},
2018-06-19 08:07:03 +00:00
"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"
}
]
}
}
}