mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-24 11:46:32 +00:00
129 lines
3.6 KiB
JSON
129 lines
3.6 KiB
JSON
{
|
|
"name": "arduino-ide-extension",
|
|
"version": "2.0.0-beta.5",
|
|
"description": "An extension for Theia building the Arduino IDE",
|
|
"license": "AGPL-3.0-or-later",
|
|
"scripts": {
|
|
"prepare": "yarn download-cli && yarn download-ls && yarn clean && yarn download-examples && yarn build",
|
|
"clean": "rimraf lib",
|
|
"download-cli": "node ./scripts/download-cli.js",
|
|
"download-ls": "node ./scripts/download-ls.js",
|
|
"download-examples": "node ./scripts/download-examples.js",
|
|
"generate-protocol": "node ./scripts/generate-protocol.js",
|
|
"lint": "tslint -c ./tslint.json --project ./tsconfig.json",
|
|
"build": "tsc && ncp ./src/node/cli-protocol/ ./lib/node/cli-protocol/ && yarn lint",
|
|
"watch": "tsc -w",
|
|
"test": "mocha \"./lib/test/**/*.test.js\"",
|
|
"test:watch": "mocha --watch --watch-files lib \"./lib/test/**/*.test.js\""
|
|
},
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "^1.1.1",
|
|
"@theia/application-package": "next",
|
|
"@theia/core": "next",
|
|
"@theia/editor": "next",
|
|
"@theia/filesystem": "next",
|
|
"@theia/git": "next",
|
|
"@theia/keymaps": "next",
|
|
"@theia/markers": "next",
|
|
"@theia/monaco": "next",
|
|
"@theia/navigator": "next",
|
|
"@theia/outline-view": "next",
|
|
"@theia/preferences": "next",
|
|
"@theia/output": "next",
|
|
"@theia/search-in-workspace": "next",
|
|
"@theia/terminal": "next",
|
|
"@theia/workspace": "next",
|
|
"@types/dateformat": "^3.0.1",
|
|
"@types/deepmerge": "^2.2.0",
|
|
"@types/glob": "^5.0.35",
|
|
"@types/google-protobuf": "^3.7.2",
|
|
"@types/js-yaml": "^3.12.2",
|
|
"@types/lodash.debounce": "^4.0.6",
|
|
"@types/ncp": "^2.0.4",
|
|
"@types/ps-tree": "^1.1.0",
|
|
"@types/react-select": "^3.0.0",
|
|
"@types/react-tabs": "^2.3.2",
|
|
"@types/sinon": "^7.5.2",
|
|
"@types/temp": "^0.8.34",
|
|
"@types/which": "^1.3.1",
|
|
"ajv": "^6.5.3",
|
|
"async-mutex": "^0.3.0",
|
|
"css-element-queries": "^1.2.0",
|
|
"dateformat": "^3.0.3",
|
|
"deepmerge": "^4.2.2",
|
|
"fuzzy": "^0.1.3",
|
|
"glob": "^7.1.6",
|
|
"google-protobuf": "^3.11.4",
|
|
"lodash.debounce": "^4.0.8",
|
|
"js-yaml": "^3.13.1",
|
|
"ncp": "^2.0.0",
|
|
"p-queue": "^5.0.0",
|
|
"ps-tree": "^1.2.0",
|
|
"react-disable": "^0.1.0",
|
|
"react-select": "^3.0.4",
|
|
"react-tabs": "^3.1.2",
|
|
"semver": "^7.3.2",
|
|
"string-natural-compare": "^2.0.3",
|
|
"temp": "^0.9.1",
|
|
"tree-kill": "^1.2.1",
|
|
"upath": "^1.1.2",
|
|
"which": "^1.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.7",
|
|
"@types/chai-string": "^1.4.2",
|
|
"@types/mocha": "^5.2.7",
|
|
"chai": "^4.2.0",
|
|
"chai-string": "^1.5.0",
|
|
"decompress": "^4.2.0",
|
|
"decompress-targz": "^4.1.1",
|
|
"decompress-unzip": "^4.0.1",
|
|
"download": "^7.1.0",
|
|
"grpc_tools_node_protoc_ts": "^4.1.0",
|
|
"mocha": "^7.0.0",
|
|
"moment": "^2.24.0",
|
|
"protoc": "^1.0.4",
|
|
"shelljs": "^0.8.3",
|
|
"sinon": "^9.0.1",
|
|
"uuid": "^3.2.1",
|
|
"yargs": "^11.1.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"grpc-tools": "^1.9.0"
|
|
},
|
|
"mocha": {
|
|
"require": [
|
|
"reflect-metadata/Reflect"
|
|
],
|
|
"reporter": "spec",
|
|
"colors": true,
|
|
"watch-extensions": "js",
|
|
"timeout": 10000
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"src",
|
|
"build",
|
|
"data",
|
|
"examples"
|
|
],
|
|
"theiaExtensions": [
|
|
{
|
|
"backend": "lib/node/arduino-ide-backend-module",
|
|
"frontend": "lib/browser/arduino-ide-frontend-module"
|
|
},
|
|
{
|
|
"frontend": "lib/browser/theia/core/browser-menu-module",
|
|
"frontendElectron": "lib/electron-browser/theia/core/electron-menu-module"
|
|
},
|
|
{
|
|
"electronMain": "lib/electron-main/arduino-electron-main-module"
|
|
}
|
|
],
|
|
"arduino": {
|
|
"cli": {
|
|
"version": "0.18.1"
|
|
}
|
|
}
|
|
}
|