-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.94 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
{
"name": "parent",
"version": "2.8.0-next",
"private": true,
"scripts": {
"build": "pnpm compile",
"check:all": "pnpm build && pnpm lint && pnpm format:check && pnpm headers:check",
"clean": "pnpm -r run clean",
"compile": "tsc -b && pnpm -r run compile:alias",
"example": "pnpm -C ./examples/workflow-test",
"fix:all": "pnpm lint:fix && pnpm format && pnpm headers:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate:index": "pnpm -r run generate:index && pnpm lint:fix",
"headers:check": "glsp checkHeaders .",
"headers:fix": "glsp checkHeaders . --autoFix",
"lint": "pnpm build && eslint .",
"lint:ci": "pnpm lint --output-file eslint_report.json --format json",
"lint:fix": "pnpm lint --fix",
"publish:latest": "glsp releng publish latest",
"publish:next": "glsp releng publish next",
"repo": "pnpm example run repo",
"repo:clean": "pnpm example repo:clean",
"repo:setup": "pnpm example repo:setup",
"test": "pnpm build && pnpm -C examples/workflow-test test",
"test:standalone": "pnpm build && pnpm example test:standalone",
"test:standalone-browser": "pnpm build && pnpm example test:standalone-browser",
"test:theia": "pnpm build && pnpm example test:theia",
"test:vscode": "pnpm build && pnpm example test:vscode",
"test:vscode-setup": "pnpm build && pnpm example test:vscode-setup",
"upgrade:next": "glsp updateNext",
"watch": "concurrently --kill-others -n tsc,alias -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"pnpm -C packages/glsp-playwright watch:alias\""
},
"devDependencies": {
"@eclipse-glsp/dev": "next",
"@estruyf/github-actions-reporter": "^1.7.0",
"@types/node": "22.x",
"concurrently": "^8.2.2",
"mocha-ctrf-json-reporter": "0.0.9",
"tsc-alias": "1.8.10",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@11.7.0",
"engines": {
"node": ">=22",
"pnpm": ">=11"
}
}