mirror of
https://github.com/xodio/xod.git
synced 2026-03-06 08:54:06 +01:00
142 lines
3.7 KiB
JSON
142 lines
3.7 KiB
JSON
{
|
|
"author": "XOD Team <dev@xod.io>",
|
|
"description": "XOD visual programming language IDE",
|
|
"homepage": "https://xod.io/",
|
|
"license": "AGPL-3.0",
|
|
"main": "src-babel/app/main.js",
|
|
"name": "xod-client-electron",
|
|
"version": "0.37.2",
|
|
"scripts": {
|
|
"build:workspace": "cpx \"../../workspace/**/*\" \"src-babel/workspace\"",
|
|
"build:gui": "webpack --colors",
|
|
"build:app": "babel src/app/ -d src-babel/app/ && babel src/shared/ -d src-babel/shared/",
|
|
"build": "yarn build:gui && yarn build:app && yarn build:workspace",
|
|
"clean:dist": "rimraf ./src-babel",
|
|
"start": "electron .",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"test": "electron-mocha --no-sandbox --require babel-register --timeout 60000 ./test",
|
|
"test-func": "mocha --opts test-func/mocha.opts test-func/**/*.spec.js"
|
|
},
|
|
"dependencies": {
|
|
"babel-polyfill": "^6.16.0",
|
|
"bs-platform": "7.1.1",
|
|
"classnames": "^2.2.5",
|
|
"cpx": "^1.5.0",
|
|
"electron-context-menu": "^2.3.0",
|
|
"electron-log": "^4.2.4",
|
|
"electron-settings": "^4.0.2",
|
|
"electron-updater": "4.3.4",
|
|
"electron-window-state": "^5.0.3",
|
|
"fs-extra": "^4.0.2",
|
|
"node-noop": "^1.0.0",
|
|
"prop-types": "^15.5.10",
|
|
"ramda": "^0.24.1",
|
|
"ramda-fantasy": "^0.8.0",
|
|
"rc-progress": "^2.1.2",
|
|
"react": "^16.2",
|
|
"react-dom": "^16.2",
|
|
"react-event-listener": "^0.5.3",
|
|
"react-fa": "^5.0.0",
|
|
"react-hotkeys": "^1.1.4",
|
|
"react-redux": "^4.4.5",
|
|
"react-skylight": "git+https://github.com/xodio/react-skylight.git#6dc266edc5198d0d1a6feb57f329826e782ec967",
|
|
"redux": "^3.0.5",
|
|
"redux-thunk": "^2.1.0",
|
|
"serialport": "^9.0.4",
|
|
"xod-arduino": "^0.37.0",
|
|
"xod-client": "^0.37.0",
|
|
"xod-deploy": "^0.37.0",
|
|
"xod-deploy-bin": "^0.37.0",
|
|
"xod-fs": "^0.37.0",
|
|
"xod-func-tools": "^0.34.0",
|
|
"xod-project": "^0.37.0",
|
|
"xod-tethering-inet": "^0.34.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.16.0",
|
|
"chai": "^4.1.2",
|
|
"chai-as-promised": "^6.0.0",
|
|
"devtron": "^1.3.0",
|
|
"dir-compare": "^1.4.0",
|
|
"electron": "10.1.1",
|
|
"electron-builder": "^22.8.0",
|
|
"electron-devtools-installer": "^3.1.1",
|
|
"electron-mocha": "^10.0.0",
|
|
"fsp": "^0.1.2"
|
|
},
|
|
"build": {
|
|
"appId": "io.xod.ide",
|
|
"productName": "XOD IDE",
|
|
"buildDependenciesFromSource": true,
|
|
"files": [
|
|
"**/*",
|
|
"!**/node_modules/xod-arduino/**/*",
|
|
"**/node_modules/xod-arduino/dist/**/*",
|
|
"!**/node_modules/bs-platform/**/*",
|
|
"**/node_modules/bs-platform/lib/js/**/*"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "arduino-cli",
|
|
"to": "arduino-cli"
|
|
},
|
|
{
|
|
"from": "arduino-cli.exe",
|
|
"to": "arduino-cli.exe"
|
|
},
|
|
{
|
|
"from": "src-babel/workspace",
|
|
"to": "workspace"
|
|
}
|
|
],
|
|
"linux": {
|
|
"target": [
|
|
"deb",
|
|
"rpm"
|
|
],
|
|
"category": "Development"
|
|
},
|
|
"mac": {
|
|
"target": [
|
|
"zip",
|
|
"dmg"
|
|
],
|
|
"category": "public.app-category.developer-tools"
|
|
},
|
|
"win": {
|
|
"publisherName": [
|
|
"AMPERKA, OOO",
|
|
"Amperka, OOO"
|
|
],
|
|
"target": [
|
|
"nsis"
|
|
]
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false
|
|
},
|
|
"fileAssociations": [
|
|
{
|
|
"ext": "xod",
|
|
"description": "XOD Project Manifest"
|
|
},
|
|
{
|
|
"ext": "xodp",
|
|
"description": "XOD Patch"
|
|
},
|
|
{
|
|
"ext": "xodball",
|
|
"description": "XOD Packed Project"
|
|
}
|
|
],
|
|
"publish": [
|
|
{
|
|
"provider": "generic",
|
|
"url": "https://releases.xod.io/releases/latest",
|
|
"channel": "latest"
|
|
}
|
|
]
|
|
}
|
|
}
|