-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 6.76 KB
/
Copy pathpackage.json
File metadata and controls
151 lines (151 loc) · 6.76 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"private": true,
"name": "@theia/monorepo",
"version": "0.0.0",
"engines": {
"node": ">=22"
},
"overrides": {
"perfect-scrollbar": "1.5.5",
"yauzl": "~3.3.2"
},
"devDependencies": {
"@eclipse-dash/nodejs-wrapper": "^0.0.1",
"@types/chai": "4.3.0",
"@types/chai-spies": "1.0.3",
"@types/chai-string": "^1.4.5",
"@types/express": "^4.17.25",
"@types/jsdom": "^21.1.7",
"@types/node": "24",
"@types/sinon": "^10.0.20",
"@types/temp": "^0.9.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^7.18.0",
"@vscode/vsce": "^3.9.2",
"archiver": "^5.3.2",
"chai": "4.3.10",
"chai-spies": "1.0.0",
"chai-string": "^1.6.0",
"chalk": "4.0.0",
"concurrently": "^3.6.1",
"debug": "^4.4.3",
"electron-mocha": "^13.1.0",
"esbuild": "^0.28.0",
"eslint": "^8.57.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-no-unsanitized": "4.1.4",
"eslint-plugin-react": "^7.37.5",
"glob": "^7.2.3",
"if-env": "^1.0.4",
"ignore-styles": "^5.0.1",
"js-yaml": "^4.1.0",
"jsdom": "^22.1.0",
"lerna": "^9.0.7",
"minimatch": "^10.0.3",
"mkdirp": "^0.5.6",
"node-abi": "^4.33.0",
"node-gyp": "^11.5.0",
"nyc": "^18.0.0",
"puppeteer": "25.1.0",
"puppeteer-core": "25.1.0",
"puppeteer-to-istanbul": "1.4.0",
"rimraf": "^5.0.10",
"sinon": "^12.0.1",
"temp": "^0.9.4",
"tslint": "^5.20.1",
"typedoc": "0.28.13",
"typescript": "~5.9.3",
"yargs": "^17.7.3"
},
"scripts": {
"all": "npm -s install && npm run -s lint && npm run -s build",
"build": "npm run compile && npm run build:applications",
"build:applications": "npm run build:browser && npm run build:browser-only && npm run build:electron",
"build:browser": "cd examples/browser && npm run build",
"build:browser-only": "cd examples/browser-only && npm run build",
"build:electron": "cd examples/electron && npm run build",
"build:tools": "lerna run compile --scope \"@theia/{re-exports,eslint-plugin}\"",
"clean": "npm run -s rebuild:clean && npm run -s lint:clean && lerna run clean",
"clean:release": "rimraf --glob \"{dev-packages,packages,extensions,examples}/**/*.tsbuildinfo\"",
"compile": "lerna run compile",
"compute-references": "node scripts/compile-references.js",
"docs": "rimraf gh-pages/ && npm run docs:packages && npm run docs:merge",
"docs:packages": "node scripts/generate-typedoc-per-package.js",
"docs:merge": "node scripts/merge-package-typedocs.js",
"download:plugins": "theia download:plugins",
"license:check:fetch-jar": "node scripts/fetch-dash-licenses-jar.js",
"license:check": "npm run license:check:fetch-jar && npx dash-licenses-wrapper --configFile=./configs/license-check-config.json",
"license:check:review": "npm run license:check:fetch-jar && npx dash-licenses-wrapper --configFile=./configs/license-check-config.json --review",
"lint": "lerna run lint",
"lint:clean": "rimraf .eslintcache",
"lint:fix": "lerna run lint -- --fix",
"preinstall": "node-gyp install",
"postinstall": "theia-patch && npm run -s compute-references && lerna run afterInstall",
"publish:latest": "lerna publish --exact --yes",
"publish:patch": "lerna publish --exact --yes --dist-tag patch",
"publish:next": "lerna publish --canary preminor --exact --yes --preid next --dist-tag next && npm run -s publish:check next",
"publish:check": "node scripts/check-publish.js",
"rebuild:clean": "rimraf .browser_modules",
"rebuild:browser": "cd examples/browser && npm run rebuild",
"rebuild:electron": "cd examples/electron && npm run rebuild",
"start:browser": "cd examples/browser && npm run start",
"start:browser-only": "cd examples/browser-only && npm run start",
"start:electron": "cd examples/electron && npm run start",
"test": "npm run -s test:theia && npm run -s electron test && npm run -s browser test",
"test:browser": "cd examples/browser && npm run test",
"test:desktop-release-config": "node --test scripts/desktop-release-config.spec.js",
"test:electron": "cd examples/electron && npm run test",
"test:theia": "lerna run --scope \"@theia/!(example-)*\" test --stream --concurrency=1",
"test:playwright": "cd examples/playwright && npm run -s ui-tests",
"version": "lerna run version",
"watch:browser": "cd examples/browser && npm run -s watch",
"watch:browser-only": "cd examples/browser-only && npm run -s watch",
"watch:electron": "cd examples/electron && npm run -s watch",
"watch": "concurrently --kill-others \"npm run -s watch:browser\" \"npm run -s watch:electron\"",
"performance:startup": "npm run -s performance:startup:browser && npm run -s performance:startup:electron",
"performance:startup:browser": "concurrently --success first -k -r \"cd scripts/performance && node browser-performance.js --name 'Browser Frontend Startup' --folder browser --runs 10\" \"npm --prefix examples/browser run -s start -- --log-level=debug\"",
"performance:startup:electron": "npm run -s rebuild:electron && cd scripts/performance && node electron-performance.js --name 'Electron Frontend Startup' --folder electron --runs 10",
"zip:native:dependencies": "node ./scripts/zip-native-dependencies.js"
},
"workspaces": [
"dev-packages/*",
"packages/*",
"examples/*",
"sample-plugins/*/*"
],
"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",
"EditorConfig.EditorConfig": "https://open-vsx.org/api/EditorConfig/EditorConfig/0.18.1/file/EditorConfig.EditorConfig-0.18.1.vsix",
"dbaeumer.vscode-eslint": "https://open-vsx.org/api/dbaeumer/vscode-eslint/3.0.24/file/dbaeumer.vscode-eslint-3.0.24.vsix",
"ms-toolsai.jupyter": "https://open-vsx.org/api/ms-toolsai/jupyter/2025.9.1/file/ms-toolsai.jupyter-2025.9.1.vsix",
"ms-python.python": "https://open-vsx.org/api/ms-python/python/2026.2.0/file/ms-python.python-2026.2.0.vsix"
},
"theiaPluginsExcludeIds": [
"ms-vscode.js-debug-companion",
"vscode.extension-editing",
"ms-python.vscode-pylance"
],
"allowScripts": {
"@google/genai": false,
"@parcel/watcher": true,
"@vscode/vsce-sign": false,
"@vscode/windows-ca-certs": true,
"core-js": false,
"cpu-features": true,
"drivelist": true,
"esbuild": true,
"fsevents": true,
"keytar": true,
"msgpackr-extract": true,
"native-keymap": true,
"node-pty": true,
"nx": false,
"protobufjs": false,
"puppeteer": true,
"ssh2": true
}
}