-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.7 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.7 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
{
"private": true,
"name": "@eclipse-cdt-cloud/clangd-contexts-parent",
"version": "0.8.0",
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=14.18.0"
},
"resolutions": {
"**/@types/node": "12",
"**/node-abi": "^2.18.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"electron-mocha": "^11.0.2",
"eslint": "^8.27.0",
"eslint-plugin-deprecation": "^1.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-unsanitized": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"if-env": "^1.0.4",
"ignore-styles": "^5.0.1",
"lerna": "^6.0.3",
"nyc": "^15.0.0",
"rimraf": "3.0.2",
"tslint": "^5.12.0",
"typescript": "^4.8.4"
},
"dependencies": {},
"scripts": {
"preinstall": "node-gyp install",
"prepare": "yarn prepare:build && yarn prepare:hoisting && yarn download:plugins && yarn prepare:package",
"prepare:build": "yarn build && lerna run lint && lerna run build --stream --parallel",
"prepare:hoisting": "theia check:hoisted -s",
"prepare:package": "yarn --cwd examples/clangd-contexts-ext package",
"clean": "yarn lint:clean && node scripts/run-reverse-topo.js yarn clean",
"build": "tsc -b configs/root-compilation.tsconfig.json",
"watch": "tsc -b configs/root-compilation.tsconfig.json -w",
"lint": "lerna run lint",
"lint:clean": "rimraf .eslintcache",
"lint:oneshot": "node --max-old-space-size=4096 node_modules/eslint/bin/eslint.js --cache=true \"{packages,examples}/**/*.{ts,tsx}\"",
"test": "lerna run --scope \"@eclipse-cdt-cloud/!(example-)*\" test --stream --concurrency=1",
"rebuild:clean": "rimraf .browser_modules",
"rebuild:browser": "theia rebuild:browser",
"rebuild:electron": "theia rebuild:electron",
"rebuild:electron:debug": "DEBUG=electron-rebuild && yarn rebuild:electron",
"publish": "yarn && yarn test && yarn publish:latest",
"publish:latest": "lerna publish from-git --no-git-reset --no-verify-access --no-push",
"publish:next": "SHA=$(git rev-parse --short HEAD) && lerna publish preminor --exact --canary --preid next.${SHA} --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes --no-verify-access --force-publish \"@eclipse-cdt-cloud/\"",
"start:browser": "yarn rebuild:browser && yarn --cwd examples/browser start",
"start:browser:clangd": "yarn start:browser --root-dir=../clangd-workspace",
"start:electron": "yarn rebuild:electron && yarn --cwd examples/electron start",
"start:electron:clangd": "yarn start:electron --root-dir=../clangd-workspace",
"download:plugins": "theia download:plugins"
},
"workspaces": [
"packages/*",
"examples/*"
],
"theiaPluginsDir": "plugins",
"theiaPlugins": {
"vscode-builtin-cpp": "https://open-vsx.org/api/vscode/cpp/1.45.1/file/vscode.cpp-1.45.1.vsix",
"vscode-builtin-json": "https://open-vsx.org/api/vscode/json/1.46.1/file/vscode.json-1.46.1.vsix",
"vscode-builtin-markdown": "https://open-vsx.org/api/vscode/markdown/1.45.1/file/vscode.markdown-1.45.1.vsix",
"vscode-builtin-npm": "https://open-vsx.org/api/vscode/npm/1.45.1/file/vscode.npm-1.45.1.vsix",
"vscode-builtin-typescript": "https://open-vsx.org/api/vscode/typescript/1.45.1/file/vscode.typescript-1.45.1.vsix",
"vscode-builtin-typescript-language-features": "https://open-vsx.org/api/vscode/typescript-language-features/1.45.1/file/vscode.typescript-language-features-1.45.1.vsix",
"vscode-clangd": "https://open-vsx.org/api/llvm-vs-code-extensions/vscode-clangd/0.1.7/file/llvm-vs-code-extensions.vscode-clangd-0.1.7.vsix"
}
}