OpenBuilds-CONTROL/package.json

166 wiersze
4.2 KiB
JSON

{
"name": "OpenBuildsCONTROL",
"version": "1.0.330",
"license": "AGPL-3.0",
"description": "OpenBuildsCONTROL CNC Machine Host Software",
"author": "github.com/openbuilds <support@openbuilds.com>",
"devDependencies": {
"copyfiles": "^2.3.0",
"electron": "^9.2.0",
"electron-builder": "^22.10.5",
"electron-rebuild": "^3.2.7",
"ncp": "^2.0.0"
},
"dependencies": {
"avrgirl-arduino": "^4.2.3",
"detect-rpi": "^1.4.0",
"directory-tree": "^2.2.4",
"drivelist": "^9.2.4",
"electron-builder-notarize": "^1.2.0",
"electron-updater": "^5.0.5",
"evilscan": "^1.9.1",
"express": "^4.17.1",
"formidable": "^1.2.2",
"hazardous": "^0.3.0",
"https": "^1.0.0",
"ip": "^1.1.5",
"jscs-loader": "^0.3.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"mkdirp": "^1.0.4",
"multer": "^1.4.2",
"ncp": "^2.0.0",
"node-abi": "^2.18.0",
"rimraf": "^3.0.2",
"serialport": "^9.0.1",
"socket.io": "^2.4.0"
},
"main": "index.js",
"scripts": {
"start": "echo \"Error: no start script specified\" && exit 0",
"test": "echo \"Error: no test specified\" && exit 0",
"release": "echo \"When you want to create a new release, follow these steps:\" && echo \"1) Update the version in your project's package.json file (e.g. 1.2.3)\" && echo \"2) Commit that change (git commit -am v1.2.3)\" && echo \"3) Tag your commit (git tag v1.2.3). Make sure your tag name's format is v*.*.*. Your workflow will use this tag to detect when to create a release\" && echo \"4) Push your changes to GitHub (git push && git push --tags)\""
},
"keywords": [
"usb"
],
"repository": "https://github.com/OpenBuilds/OpenBuilds-CONTROL",
"build": {
"publish": [
{
"provider": "github",
"vPrefixedTagName": true
}
],
"afterSign": "electron-builder-notarize",
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.graphics-design",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"icon": "build/icon.icns",
"appId": "openbuilds.control",
"productName": "OpenBuildsCONTROL",
"asar": true,
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
"license": "build/licence.txt",
"installerIcon": "build/icon.ico",
"installerSidebar": "build/installerSidebar.bmp",
"artifactName": "${productName}-Setup-${version}.${ext}"
},
"fileAssociations": [
{
"ext": "obc",
"name": "OpenBuilds CAM Workspace",
"description": "OpenBuilds CAM Workspace",
"role": "Viewer"
},
{
"ext": "gcode",
"name": "GCODE File",
"description": "GCODE File",
"role": "Viewer"
},
{
"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"
}
],
"files": [
"**/*",
"ssl/**/*",
"firmware/**/*",
""
],
"extraFiles": [
"ssl"
],
"asarUnpack": [
"esptool.exe",
"esptool-mac",
"esptool.py",
"*.bin"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "build/icon.ico"
},
"linux": {
"icon": "build/",
"target": [
"deb",
"AppImage"
]
},
"dmg": {
"icon": "build/icon.icns",
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
}
}
}