-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 2.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"private": true,
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=16.14.0"
},
"workspaces": [
"oniro-ide-extension",
"apps/*"
],
"scripts": {
"postinstall": "theia check:theia-version",
"compile": "lerna run build",
"browser": "yarn -s --cwd apps/browser",
"electron": "yarn -s --cwd apps/electron",
"watch": "lerna run watch --scope=oniro-ide-extension",
"download:plugins": "theia download:plugins",
"translation:update": "node ./scripts/translation-update.js"
},
"devDependencies": {
"@theia/cli": "1.39.0",
"concurrently": "^8.0.1",
"lerna": "^6.6.1",
"shx": "^0.3.4",
"typescript": "^4.9.5"
},
"theiaPluginsDir": "plugins",
"theiaPlugins": {
"vscode.markdown-language-features": "https://open-vsx.org/api/vscode/markdown-language-features/1.64.2/file/vscode.markdown-language-features-1.64.2.vsix",
"eclipse-theia.builtin-extension-pack": "https://open-vsx.org/api/eclipse-theia/builtin-extension-pack/1.77.0/file/eclipse-theia.builtin-extension-pack-1.77.0.vsix",
"EditorConfig.EditorConfig": "https://open-vsx.org/api/EditorConfig/EditorConfig/0.14.4/file/EditorConfig.EditorConfig-0.14.4.vsix",
"dbaeumer.vscode-eslint": "https://open-vsx.org/api/dbaeumer/vscode-eslint/2.1.20/file/dbaeumer.vscode-eslint-2.1.20.vsix",
"llvm-vs-code-extensions.vscode-clangd": "https://open-vsx.org/api/llvm-vs-code-extensions/vscode-clangd/0.1.24/file/llvm-vs-code-extensions.vscode-clangd-0.1.24.vsix",
"eclipse-cdt.cdt-gdb-vscode": "https://open-vsx.org/api/eclipse-cdt/cdt-gdb-vscode/0.0.96/file/eclipse-cdt.cdt-gdb-vscode-0.0.96.vsix",
"rust-analyzer": "https://open-vsx.org/api/rust-lang/rust-analyzer/${targetPlatform}/0.4.1585/file/rust-lang.rust-analyzer-0.4.1585@${targetPlatform}.vsix",
"CodeLLDB": "https://open-vsx.org/api/vadimcn/vscode-lldb/1.9.2/file/vadimcn.vscode-lldb-1.9.2.vsix"
},
"theiaPluginsExcludeIds": [
"ms-vscode.js-debug-companion",
"vscode.extension-editing",
"vscode.github",
"vscode.github-authentication",
"vscode.microsoft-authentication",
"ms-vscode.references-view",
"vscode.ipynb"
]
}