forked from eclipse-glsp/glsp-theia-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.09 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
{
"private": true,
"name": "parent",
"version": "1.0.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 --",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push",
"publish:latest": "lerna publish from-git --no-git-reset --no-git-tag-version --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": "1.0.0",
"@types/node": "12.x",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"typescript": "~4.5.5"
},
"workspaces": [
"packages/theia-integration",
"examples/*"
]
}