grid-apps-cmms/package.json

164 lines
4.8 KiB
JSON
Raw Normal View History

2017-04-18 17:09:33 -04:00
{
2018-02-24 21:31:32 -05:00
"name": "grid-apps",
2025-01-10 22:55:38 -05:00
"version": "4.1.0-D3",
2024-09-14 11:41:51 -04:00
"description": "grid.space 3d slicing & modeling tools",
"author": "Stewart Allen <sa@grid.space>",
2017-09-06 11:19:44 -04:00
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/gridspace/apps.git"
},
"keywords": [
2017-08-12 07:50:41 -04:00
"grid.space",
2024-09-14 11:41:51 -04:00
"mesh:tool",
2017-08-12 07:50:41 -04:00
"kiri:moto",
"kirimoto",
"kiri",
2024-09-14 11:41:51 -04:00
"mesh",
"editor",
"3D",
"FDM",
2017-08-12 07:50:41 -04:00
"CAM",
2024-09-14 11:41:51 -04:00
"CNC",
"mSLA",
2017-08-12 07:50:41 -04:00
"laser",
2024-09-14 11:41:51 -04:00
"waterjet",
"wire edm",
"wire-edm",
"dragknife",
"drag knife",
2017-08-12 07:50:41 -04:00
"gcode",
2018-02-24 21:31:32 -05:00
"slicer"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
2022-04-10 22:36:13 -04:00
"@fortawesome/fontawesome-free": "^6.1.1",
"@gridspace/net-level-client": "^0.2.3",
"@tracespace/parser": "^5.0.0-next.0",
2023-10-21 17:08:27 -04:00
"@tweenjs/tween.js": "^16.6.0",
"base64-js": "^1.5.1",
2024-07-28 15:02:35 -04:00
"bootstrap-icons": "^1.11.3",
2017-10-11 11:40:51 -04:00
"buffer-crc32": "^0.2.13",
"compression": "^1.7.4",
2020-03-03 08:34:33 -05:00
"connect": "^3.7.0",
"earcut": "^2.2.3",
2020-03-03 08:34:33 -05:00
"express-useragent": "^1.0.13",
"jszip": "^3.7.1",
"manifold-3d": "^2.5.1",
"moment": "^2.29.4",
2020-03-03 08:34:33 -05:00
"serve-static": "^1.14.1",
"three": "^0.167.1",
"three-mesh-bvh": "^0.7.6",
"uglify-js": "3.14.5",
"validator": ">=13.7.0",
"ws": "^7.5.5"
2022-10-24 11:43:43 -04:00
},
"devDependencies": {
"@electron/notarize": "latest",
"dotenv": "latest",
2024-06-14 17:38:07 -04:00
"electron": "latest",
"electron-builder": "latest",
"fs-extra": "^11.2.0",
"@gridspace/app-server": "^0.0.15",
"node-fetch": "^3.3.2",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
2022-10-24 11:43:43 -04:00
},
"scripts": {
"dev": "gs-app-server --debug",
"prod": "gs-app-server",
2024-06-16 21:48:41 -04:00
"start": "npm run prebuild && electron .",
"start-dev": "npm run prebuild && electron . --devel",
"start-dbg": "npm run prebuild && electron . --debugg",
"start-ddb": "npm run prebuild && electron . --devel --debugg",
2024-06-14 17:38:07 -04:00
"build": "npm run prebuild && electron-builder",
"build-debug": "npm run prebuild && DEBUG=electron-builder electron-builder",
"build-linux": "npm run build -- --linux --x64",
2024-06-18 12:06:25 -04:00
"build-linux-arm": "npm run build -- --linux --arm64",
"build-win": "npm run build -- --win --x64",
2024-06-18 12:06:25 -04:00
"build-win-arm": "npm run build -- --win --arm64",
"build-mac": "npm run build -- --mac --arm64",
2024-06-18 12:06:25 -04:00
"build-mac-intel": "npm run build -- --mac --x64",
"mklinks": "find src web -type l | xargs -I{} sh -c 'echo \"{},$(readlink {})\"' > links.csv",
"mac-verify": "spctl --assess -vv --type install dist/*/*.app",
"prebuild": "node bin/electron-pre.js",
"postbuild": "node bin/electron-post.js",
"preinstall": "node bin/install-pre.js; npx webpack --config bin/webpack-three.js"
2024-06-14 17:38:07 -04:00
},
"main": "app-el.js",
"build": {
"appId": "space.grid.kiri",
"productName": "KiriMoto",
"artifactName": "KiriMoto-${os}-${arch}.${ext}",
2024-06-14 17:38:07 -04:00
"files": [
{
"from": "tmp/src",
"to": "src",
"filter": [
"**/*"
]
2024-06-14 17:38:07 -04:00
},
{
"from": "tmp/web",
"to": "web",
"filter": [
"**/*"
]
2024-06-14 17:38:07 -04:00
},
2024-06-16 21:48:41 -04:00
{
"from": "tmp/mod",
"to": "mod",
"filter": [
"**/*"
]
},
"bin/*",
2024-06-14 17:38:07 -04:00
"conf/**/*",
"data/**/*",
"dist/**/*",
"app-el.js",
"app.js",
"package.json"
],
"extraFiles": [],
2024-06-14 17:38:07 -04:00
"directories": {
"output": "dist"
},
"win": {
"icon": "bin/GS.ico",
"target": [
"nsis",
"zip"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true
2024-06-14 17:38:07 -04:00
},
"mac": {
"icon": "bin/GS.icns",
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "bin/electron-entitlements.plist",
"entitlementsInherit": "bin/electron-entitlements.plist",
"target": [
2024-06-16 21:48:41 -04:00
"dmg",
"zip"
]
2024-06-14 17:38:07 -04:00
},
"linux": {
"icon": "bin/GS.png",
"target": [
"AppImage",
"zip"
]
},
"afterSign": "bin/electron-notarize.js"
}
}