mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-04-22 14:27:20 +00:00
65 lines
2.2 KiB
JSON
65 lines
2.2 KiB
JSON
{
|
|
"name": "arduino-ide",
|
|
"version": "2.0.0-beta.11",
|
|
"description": "Arduino IDE",
|
|
"repository": "https://github.com/arduino/arduino-ide.git",
|
|
"author": "Arduino SA",
|
|
"license": "AGPL-3.0-or-later",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=12.14.1 <13"
|
|
},
|
|
"devDependencies": {
|
|
"@theia/cli": "next",
|
|
"@typescript-eslint/eslint-plugin": "^4.27.0",
|
|
"@typescript-eslint/parser": "^4.27.0",
|
|
"cross-env": "^7.0.2",
|
|
"eslint": "^7.28.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"eslint-plugin-react": "^7.24.0",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"eslint-plugin-unused-imports": "^1.1.1",
|
|
"husky": "^6.0.0",
|
|
"lerna": "^3.20.2",
|
|
"lint-staged": "^11.0.0",
|
|
"prettier": "^2.3.1",
|
|
"rimraf": "^2.6.1",
|
|
"semver": "^7.3.2",
|
|
"typescript": "^3.9.2"
|
|
},
|
|
"scripts": {
|
|
"prepare": "cross-env THEIA_ELECTRON_SKIP_REPLACE_FFMPEG=1 lerna run prepare && yarn download:plugins",
|
|
"rebuild:browser": "theia rebuild:browser",
|
|
"rebuild:electron": "theia rebuild:electron",
|
|
"start": "yarn --cwd ./electron-app start",
|
|
"watch": "lerna run watch --parallel",
|
|
"test": "lerna run test",
|
|
"download:plugins": "theia download:plugins",
|
|
"update:version": "node ./scripts/update-version.js"
|
|
},
|
|
"lint-staged": {
|
|
"./arduino-ide-extension/**/*.{ts,tsx}": [
|
|
"eslint --fix --quiet"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"workspaces": [
|
|
"arduino-ide-extension",
|
|
"electron-app",
|
|
"browser-app"
|
|
],
|
|
"theiaPluginsDir": "plugins",
|
|
"theiaPlugins": {
|
|
"vscode-builtin-cpp": "https://open-vsx.org/api/vscode/cpp/1.52.1/file/vscode.cpp-1.52.1.vsix",
|
|
"vscode-arduino-tools": "https://downloads.arduino.cc/vscode-arduino-tools/nightly/vscode-arduino-tools-0.0.1-beta.1.vsix",
|
|
"vscode-builtin-json": "https://open-vsx.org/api/vscode/json/1.46.1/file/vscode.json-1.46.1.vsix",
|
|
"vscode-builtin-json-language-features": "https://open-vsx.org/api/vscode/json-language-features/1.46.1/file/vscode.json-language-features-1.46.1.vsix",
|
|
"cortex-debug": "https://open-vsx.org/api/marus25/cortex-debug/0.3.10/file/marus25.cortex-debug-0.3.10.vsix"
|
|
}
|
|
}
|