-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.96 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
{
"name": "parent",
"version": "2.8.0-next",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"bundle": "yarn standalone bundle",
"bundle:browser": "yarn standalone bundle:browser",
"check:all": "yarn install && yarn lint && yarn format:check && yarn headers:check",
"clean": "lerna run clean && rimraf coverage .nyc_output",
"compile": "tsc -b",
"dev": "yarn standalone dev",
"dev:browser": "yarn standalone dev:browser",
"dev:mcp": "yarn standalone dev:mcp",
"fix:all": "yarn lint:fix && yarn format && yarn headers:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate:index": "lerna run generate:index && yarn lint:fix",
"headers:check": "glsp checkHeaders .",
"headers:fix": "glsp checkHeaders . --autoFix",
"lint": "eslint .",
"lint:ci": "yarn lint --output-file eslint_report.json --format json",
"lint:fix": " yarn lint --fix",
"prepare": "yarn compile",
"publish:latest": "lerna publish from-package --no-git-reset -y",
"publish:next": "lerna publish preminor --exact --canary --preid next --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes",
"standalone": "yarn --cwd ./examples/workflow-standalone",
"start": "yarn standalone start",
"start:browser": "yarn standalone start:browser",
"start:exampleServer": "yarn standalone start:server",
"start:mcp": "yarn standalone start:mcp",
"test": "lerna run test --no-bail",
"test:ci": "lerna run test:ci --no-bail",
"test:coverage": "lerna run test:coverage",
"test:coverage:ci": "yarn glsp coverageReport",
"upgrade:next": "glsp updateNext"
},
"devDependencies": {
"@eclipse-glsp/dev": "next",
"@types/node": "22.x",
"concurrently": "^9.2.1",
"lerna": "^9.0.0",
"mocha-ctrf-json-reporter": "^0.0.9",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=22",
"yarn": ">=1.7.0 <2"
}
}