arduino-ide/package.json
Akos Kitta 507fbd0fd1 Updated the README with the build step.
From now on, Electron `4.x` is used for the dev.
Otherwise, we could not use `@grpc/grpc-js`.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
2019-05-09 09:11:18 +02:00

25 lines
700 B
JSON

{
"name": "arduino-poc",
"version": "0.0.1",
"description": "A PoC demonstrating an Arduino IDE built using Eclipse Theia",
"main": "index.js",
"repository": "https://github.com/bcmi-labs/arduino-editor.git",
"author": "Christian Weichel <christian.weichel@typefox.io>",
"license": "MIT",
"private": true,
"devDependencies": {
"lerna": "^3.13.3"
},
"scripts": {
"prepare": "lerna run prepare",
"rebuild:browser": "theia rebuild:browser",
"rebuild:electron": "theia rebuild:electron",
"start": "cd arduino-ide-browser && yarn start"
},
"workspaces": [
"arduino-ide-electron",
"arduino-ide-browser",
"arduino-ide-extension"
]
}