forked from Mansalek/glsp-theia-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.13 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
{
"private": true,
"name": "parent",
"version": "0.8.0",
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=12.14.1"
},
"scripts": {
"prepare": "lerna run prepare",
"watch": "lerna run --parallel watch",
"build": "lerna run build",
"lint": "lerna run lint --",
"rebuild:browser": "theia rebuild:browser",
"publish:prepare": "lerna version minor --exact --ignore-scripts --yes --no-push",
"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",
"upgrade:next": "yarn upgrade -p \"sprotty-theia|@eclipse-glsp.*\" --next ",
"download:exampleServer": "ts-node examples/workflow-theia/server/download.ts"
},
"devDependencies": {
"@eclipse-glsp/config": "next",
"@types/node": "12.x",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"typescript": "~4.5.5"
},
"workspaces": [
"packages/theia-integration",
"examples/*"
]
}