forked from eclipse-theia/theia-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.61 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 4.61 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"private": true,
"version": "1.75.0",
"license": "MIT",
"author": "Rob Moran <github@thegecko.org>",
"homepage": "https://github.com/eclipse-theia/theia-ide#readme",
"bugs": {
"url": "https://github.com/eclipse-theia/theia/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eclipse-theia/theia-ide.git"
},
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=24"
},
"devDependencies": {
"@eclipse-dash/nodejs-wrapper": "^0.0.1",
"@theia/cli": "1.75.0",
"@types/yargs": "^17",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-deprecation": "1.2.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-unsanitized": "^3.2.0",
"eslint-plugin-react": "^7.37.5",
"lerna": "^9.0.7",
"node-gyp": "^11.5.0",
"rimraf": "^2.7.1",
"ts-node": "^10.9.2",
"type-fest": "^0.20.2",
"yargs": "^17.7.3"
},
"scripts": {
"clean": "lerna run clean && rimraf node_modules",
"build": "yarn build:extensions && yarn build:applications",
"build:dev": "yarn build:extensions && yarn build:applications:dev",
"build:applications": "lerna run --scope=\"theia-ide*app\" --ignore=\"theia-ide-next*\" build:prod --concurrency 1",
"build:applications:dev": "lerna run --scope=\"theia-ide*app\" --ignore=\"theia-ide-next*\" build --concurrency 1",
"build:applications:next": "lerna run --scope=\"theia-ide-next*\" build:prod --concurrency 1",
"build:applications:next:dev": "lerna run --scope=\"theia-ide-next*\" build --concurrency 1",
"build:extensions": "lerna run --scope=\"theia-ide*ext\" build",
"build:local-theia": "node scripts/build-with-local-theia.js",
"download:plugins": "theia download:plugins --rate-limit=15 --parallel=false && yarn permissions:writeable",
"package:applications": "lerna run --scope=\"theia-ide*app\" --ignore=\"theia-ide-next*\" package --concurrency 1",
"package:applications:preview": "lerna run --scope=\"theia-ide*app\" --ignore=\"theia-ide-next*\" package:preview --concurrency 1",
"package:applications:prod": "lerna run --scope=\"theia-ide*app\" --ignore=\"theia-ide-next*\" package:prod --concurrency 1",
"package:applications:next": "lerna run --scope=\"theia-ide-next*\" package --concurrency 1",
"permissions:writeable": "ts-node scripts/make-files-writeable.ts plugins",
"watch": "lerna run --parallel watch",
"test": "lerna run test",
"electron": "yarn --cwd applications/electron",
"electron-next": "yarn --cwd applications/electron-next",
"browser": "yarn --cwd applications/browser",
"update:theia": "ts-node scripts/update-theia-version.ts",
"update:theia:children": "lerna run update:theia -- ",
"update:next": "ts-node scripts/update-theia-version.ts next && lerna run update:next",
"lint": "eslint --ext js,jsx,ts,tsx scripts && lerna run lint",
"lint:fix": "eslint --ext js,jsx,ts,tsx scripts --fix && lerna run lint:fix",
"license:check:fetch-jar": "node scripts/fetch-dash-licenses-jar.js",
"license:check": "yarn license:check:fetch-jar && npx dash-licenses-wrapper --configFile=./configs/license-check-config.json",
"license:check:review": "yarn license:check:fetch-jar && npx dash-licenses-wrapper --configFile=./configs/license-check-config.json --review",
"postinstall": "theia-patch && npx patch-package --patch-dir patches"
},
"theiaPluginsDir": "plugins",
"theiaPlugins": {
"vscode-builtin-extensions": "https://github.com/eclipse-theia/vscode-builtin-extensions/releases/download/1.108.2/vscode-builtin-extensions-1.108.2.tar.gz",
"vscjava.vscode-java-pack": "https://open-vsx.org/api/vscjava/vscode-java-pack/0.30.5/file/vscjava.vscode-java-pack-0.30.5.vsix",
"vscjava.vscode-java-dependency": "https://open-vsx.org/api/vscjava/vscode-java-dependency/0.27.0/file/vscjava.vscode-java-dependency-0.27.0.vsix"
},
"theiaPluginsExcludeIds": [
"ms-vscode.js-debug-companion",
"vscode.extension-editing",
"vscode.microsoft-authentication"
],
"workspaces": [
"applications/*",
"theia-extensions/*"
],
"resolutions": {
"@types/puppeteer": "^5.4.7",
"**/yauzl": "^3.3.1",
"**/adm-zip": "^0.6.0",
"**/cross-spawn": "^7.0.6",
"**/dompurify": "^3.4.13",
"**/globule/minimatch": "^3.1.5",
"**/nx/brace-expansion": "^5.0.9",
"**/serialize-javascript": "^7.1.0",
"**/tmp": "^0.2.6",
"**/tar": "^7.5.22",
"**/uuid": "^11.1.1",
"**/mocha": "^11.0.0",
"lerna/js-yaml": "^4.3.1"
}
}