mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-04-19 12:57:17 +00:00
76 lines
3.2 KiB
JSON
76 lines
3.2 KiB
JSON
{
|
|
"name": "arduino-ide",
|
|
"version": "2.0.0-rc3",
|
|
"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": "1.19.0",
|
|
"@types/sinon": "^2.3.5",
|
|
"@types/jsdom": "^11.0.4",
|
|
"@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",
|
|
"ignore-styles": "^5.0.1",
|
|
"lerna": "^3.20.2",
|
|
"lint-staged": "^11.0.0",
|
|
"prettier": "^2.3.1",
|
|
"reflect-metadata": "^0.1.10",
|
|
"rimraf": "^2.6.1",
|
|
"semver": "^7.3.2",
|
|
"typescript": "^3.9.2",
|
|
"jsdom": "^11.5.1"
|
|
},
|
|
"scripts": {
|
|
"prepare": "cross-env THEIA_ELECTRON_SKIP_REPLACE_FFMPEG=1 lerna run prepare && yarn download:plugins",
|
|
"cleanup": "npx rimraf ./**/node_modules && rm -rf ./node_modules ./.browser_modules ./arduino-ide-extension/build ./arduino-ide-extension/downloads ./arduino-ide-extension/Examples ./arduino-ide-extension/lib ./browser-app/lib ./browser-app/src-gen ./browser-app/gen-webpack.config.js ./electron-app/lib ./electron-app/src-gen ./electron-app/gen-webpack.config.js",
|
|
"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",
|
|
"i18n:generate": "theia nls-extract -e vscode -f \"+(arduino-ide-extension|browser-app|electron|electron-app|plugins)/**/*.ts?(x)\" -o ./i18n/en.json",
|
|
"i18n:check": "yarn i18n:generate && git add -N ./i18n && git diff --exit-code ./i18n",
|
|
"i18n:push": "node ./scripts/i18n/transifex-push.js ./i18n/en.json",
|
|
"i18n:pull": "node ./scripts/i18n/transifex-pull.js ./i18n/",
|
|
"compose-changelog": "yarn --cwd ./arduino-ide-extension compose-changelog"
|
|
},
|
|
"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/vscode-arduino-tools-0.0.2-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"
|
|
}
|
|
}
|