forked from eclipse-glsp/glsp-theia-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.8 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "parent",
"version": "2.3.0-next",
"private": true,
"workspaces": [
"packages/theia-integration",
"examples/*"
],
"scripts": {
"all": "yarn install && yarn lint",
"browser": "yarn -s --cwd examples/browser-app",
"build": "yarn install && yarn compile",
"change:theia-version": "ts-node ./configs/change-theia-version.ts",
"check:headers": "yarn glsp checkHeaders . -t lastCommit",
"check:pr": "yarn all && yarn check:headers",
"check:theia-version": "theia check:theia-version",
"clean": "lerna run clean && rimraf logs/*.log",
"compile": "tsc -b",
"electron": "yarn -s --cwd examples/electron-app",
"generate:index": "lerna run generate:index && yarn lint:fix",
"lint": "eslint --ext .ts,.tsx .",
"lint:ci": "yarn lint --output-file eslint_report.json --format json",
"lint:fix": "yarn lint --fix",
"prepare": "yarn compile && yarn check:theia-version",
"publish:latest": "lerna publish from-git --no-git-reset --no-git-tag-version --no-push",
"publish:next": "lerna publish preminor --exact --canary --preid next --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push",
"upgrade:next": "glsp updateNext",
"watch:browser": "concurrently --kill-others -n tsc,browser -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"yarn -s browser watch\"",
"watch:electron": "concurrently --kill-others -n tsc,browser -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"yarn -s electron watch\""
},
"devDependencies": {
"@eclipse-glsp/dev": "next",
"@types/node": "16.x",
"concurrently": "^8.2.2",
"lerna": "^7.0.0",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=16.11.0",
"yarn": ">=1.7.0 <2"
}
}