OpenBuilds-CONTROL/package.json

175 wiersze
4.2 KiB
JSON
Czysty Zwykły widok Historia

2018-06-19 08:07:03 +00:00
{
"name": "OpenBuildsCONTROL",
2024-05-09 18:18:32 +00:00
"version": "1.0.376",
2018-06-19 08:07:03 +00:00
"license": "AGPL-3.0",
2022-07-12 13:44:49 +00:00
"description": "OpenBuildsCONTROL CNC Machine Host Software",
2021-03-19 15:49:34 +00:00
"author": "github.com/openbuilds <support@openbuilds.com>",
2018-06-19 08:07:03 +00:00
"devDependencies": {
2023-03-02 20:51:00 +00:00
"electron": "^23.1.1",
2024-04-05 21:11:35 +00:00
"electron-builder": "^24.9.1",
2024-04-05 19:55:37 +00:00
"electron-builder-notarize": "latest",
"electron-rebuild": "^3.2.9",
2023-03-08 14:16:02 +00:00
"ncp": "^2.0.0"
2018-06-19 08:07:03 +00:00
},
"dependencies": {
2020-08-10 14:27:13 +00:00
"detect-rpi": "^1.4.0",
"electron-updater": "^5.2.1",
2022-07-06 20:08:38 +00:00
"evilscan": "^1.9.1",
"express": "^4.18.1",
2023-02-16 17:05:26 +00:00
"formidable": "^2.1.1",
2020-03-19 14:21:06 +00:00
"https": "^1.0.0",
"ip": "^1.1.8",
"lodash": "^4.17.21",
2020-08-10 14:27:13 +00:00
"md5": "^2.3.0",
2023-02-16 17:05:26 +00:00
"mkdirp": "^2.1.3",
"multer": "^1.4.5-lts.1",
2020-11-24 20:50:36 +00:00
"ncp": "^2.0.0",
2023-02-16 17:05:26 +00:00
"node-abi": "^3.33.0",
"node-gyp": "^9.3.1",
2024-04-16 13:13:37 +00:00
"serialport": "^12.0.0",
2023-02-21 20:10:43 +00:00
"socket.io": "^4.6.1",
"xmodem.js": "^0.1.0"
2018-06-19 08:07:03 +00:00
},
"main": "index.js",
"scripts": {
2021-04-13 15:29:44 +00:00
"start": "echo \"Error: no start script specified\" && exit 0",
2021-04-16 13:41:00 +00:00
"test": "echo \"Error: no test specified\" && exit 0",
2023-02-21 20:10:43 +00:00
"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.0.3xx)\" && echo \"2) Commit that change (git commit -am v1.0.3xx)\" && echo \"3) Push your changes to GitHub (git push)\"",
2023-03-01 15:16:44 +00:00
"run-local": "electron .",
2023-03-02 19:19:29 +00:00
"postinstall": "electron-builder install-app-deps"
2018-06-19 08:07:03 +00:00
},
"keywords": [
"usb"
],
2019-05-06 17:10:44 +00:00
"repository": "https://github.com/OpenBuilds/OpenBuilds-CONTROL",
2018-06-19 08:07:03 +00:00
"build": {
2024-04-08 19:13:46 +00:00
"publish": [
{
"provider": "github",
"vPrefixedTagName": true
}
],
2024-04-06 06:47:45 +00:00
"afterSign": "./notarize.js",
2021-03-19 14:06:46 +00:00
"mac": {
"icon": "build/icon.icns",
2021-03-19 15:03:01 +00:00
"category": "public.app-category.graphics-design",
2021-03-19 15:01:03 +00:00
"entitlements": "build/entitlements.mac.plist",
2024-04-05 21:22:17 +00:00
"entitlementsInherit": "build/entitlements.mac.plist",
2024-04-25 20:45:27 +00:00
"hardenedRuntime":true,
"gatekeeperAssess": false,
2024-04-25 14:56:11 +00:00
"notarize": false,
2024-04-25 15:01:10 +00:00
"target": {
"target": "default",
2024-04-25 14:57:45 +00:00
"arch": [
"x64",
"arm64"
]
2024-04-25 15:01:10 +00:00
}
2021-03-19 14:06:46 +00:00
},
2018-08-16 12:50:11 +00:00
"icon": "build/icon.icns",
2021-03-19 14:15:57 +00:00
"appId": "openbuilds.control",
"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-29 17:26:29 +00:00
{
"ext": "obc",
2024-04-19 17:08:02 +00:00
"name": "OpenBuilds CAM Project",
"description": "OpenBuilds CAM Project",
2019-04-29 17:26:29 +00:00
"role": "Viewer"
},
2019-04-15 18:01:02 +00:00
{
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": [
"**/*",
"ssl/**/*",
"firmware/**/*",
""
],
"extraFiles": [
2023-03-01 14:04:58 +00:00
"ssl"
],
"asarUnpack": [
"esptool.exe",
"esptool-mac",
"esptool.py",
2023-03-08 13:24:58 +00:00
"*.bin"
],
2021-03-01 13:23:03 +00:00
"win": {
2024-04-08 20:27:54 +00:00
"sign": "./signWin.js",
"signingHashAlgorithms": ["sha256"],
2021-03-19 14:06:46 +00:00
"target": [
{
"target": "nsis",
"arch": [
2024-04-16 12:49:13 +00:00
"x64"
2021-03-19 14:06:46 +00:00
]
}
],
"icon": "build/icon.ico"
},
2018-06-22 19:49:51 +00:00
"linux": {
2021-02-26 20:21:04 +00:00
"icon": "build/",
"target": [
"deb",
"AppImage"
2021-02-26 20:22:53 +00:00
]
2018-06-22 19:49:51 +00:00
},
2018-06-19 08:07:03 +00:00
"dmg": {
2024-04-25 20:45:27 +00:00
"sign": false,
2018-06-19 08:07:03 +00:00
"icon": "build/icon.icns",
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
}
}
}