-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.69 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
{
"private": true,
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=18"
},
"scripts": {
"build:browser": "yarn --cwd browser-app bundle",
"build:electron": "yarn --cwd electron-app build",
"prepare": "lerna run prepare",
"postinstall": "theia check:theia-version",
"start:browser": "yarn --cwd browser-app start",
"start:electron": "yarn --cwd electron-app start",
"watch:browser": "lerna run --parallel watch --ignore electron-app",
"watch:electron": "lerna run --parallel watch --ignore browser-app",
"browser": "yarn --cwd browser-app",
"electron": "yarn --cwd electron-app",
"download:plugins": "theia download:plugins --rate-limit=15 --parallel=false && yarn permissions:writeable",
"permissions:writeable": "ts-node scripts/make-files-writeable.ts plugins"
},
"devDependencies": {
"@types/yargs": "^17.0.33",
"lerna": "2.4.0",
"ts-node": "^10.0.0",
"type-fest": "^0.20.2",
"yargs": "17.2.1"
},
"workspaces": [
"coderibbon-theia",
"browser-app",
"electron-app"
],
"theiaPluginsDir": "plugins",
"theiaPlugins": {
"vscode.git": "https://open-vsx.org/api/vscode/git/1.95.3/file/vscode.git-1.95.3.vsix",
"vscode.markdown-language-features": "https://open-vsx.org/api/vscode/markdown-language-features/1.95.3/file/vscode.markdown-language-features-1.95.3.vsix",
"vscode-builtin-extensions-pack": "https://open-vsx.org/api/eclipse-theia/builtin-extension-pack/1.95.3/file/eclipse-theia.builtin-extension-pack-1.95.3.vsix"
},
"theiaPluginsExcludeIds": [
"vscode.extension-editing",
"vscode.microsoft-authentication",
"ms-vscode.js-debug-companion",
"VisualStudioExptTeam.vscodeintellicode"
]
}