-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 2.37 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
{
"private": true,
"workspaces": [
"applications/*",
"extensions/*"
],
"devDependencies": {
"@theia/cli": "latest",
"lerna": "^8.0.2",
"prettier": "^3.1.1",
"rimraf": "latest"
},
"scripts": {
"clean": "lerna run clean && rimraf plugins",
"build": "yarn build:extensions && yarn build:applications",
"build:dev": "yarn build:extensions && yarn build:applications:dev",
"build:applications": "yarn build:extensions && lerna run --scope=\"*app\" build:prod --concurrency 1",
"build:applications:dev": "yarn build:extensions && lerna run --scope=\"*app\" build --concurrency 1",
"build:extensions": "lerna run --scope=\"*ext\" build",
"download:plugins": "theia download:plugins --rate-limit=15 --parallel=true",
"package:applications": "lerna run --scope=\"*app\" package --concurrency 1",
"package:applications:preview": "lerna run --scope=\"*app\" package:preview --concurrency 1",
"package:applications:prod": "lerna run --scope=\"*app\" package:prod --concurrency 1",
"watch": "lerna run --parallel watch",
"test": "lerna run test",
"electron": "yarn --cwd applications/electron",
"browser": "yarn --cwd applications/browser",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"format:check": "prettier --list-different \"**/*.{ts,tsx,js,json,md}\""
},
"theiaPluginsDir": "plugins",
"theiaPlugins": {
"vscode.cpp": "https://open-vsx.org/api/vscode/cpp/1.79.0/file/vscode.cpp-1.79.0.vsix",
"vscode.json": "https://open-vsx.org/api/vscode/json/1.79.0/file/vscode.json-1.79.0.vsix",
"vscode.json-language-features": "https://open-vsx.org/api/vscode/json-language-features/1.79.0/file/vscode.json-language-features-1.79.0.vsix",
"vscode.yaml": "https://open-vsx.org/api/vscode/yaml/1.79.0/file/vscode.yaml-1.79.0.vsix",
"vscode.python": "https://open-vsx.org/api/vscode/python/1.79.0/file/vscode.python-1.79.0.vsix",
"vscode.markdown": "https://open-vsx.org/api/vscode/markdown/1.79.0/file/vscode.markdown-1.79.0.vsix",
"vscode.media-preview": "https://open-vsx.org/api/vscode/media-preview/1.79.0/file/vscode.media-preview-1.79.0.vsix",
"vscode.git": "https://open-vsx.org/api/vscode/git/1.79.0/file/vscode.git-1.79.0.vsix",
"ms-vscode.cpptools": "https://github.com/microsoft/vscode-cpptools/releases/download/v1.18.5/cpptools-osx-arm64.vsix"
},
"theiaPluginsExcludeIds": []
}