-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.64 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
{
"version": "2.8.0-next",
"private": true,
"scripts": {
"build": "pnpm compile && pnpm bundle",
"bundle": "pnpm -r bundle",
"bundle:prod": "pnpm -r bundle:prod",
"check:all": "pnpm build && pnpm lint && pnpm format:check && pnpm headers:check",
"clean": "pnpm -r run clean && rimraf logs/*.log",
"compile": "tsc -b",
"fix:all": "pnpm lint:fix && pnpm format && pnpm headers:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate:index": "pnpm -r generate:index && pnpm lint:fix",
"headers:check": "glsp checkHeaders .",
"headers:fix": "glsp checkHeaders . --autoFix",
"lint": "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",
"upgrade:next": "glsp updateNext",
"watch": "concurrently --kill-others -n tsc,webview,extension,web-extension -c red,blue,yellow,green \"tsc -b -w --preserveWatchOutput\" \"pnpm -s workflow:webview watch:bundle\" \"pnpm -s workflow watch:bundle\" \"pnpm -s workflow:web watch:bundle\"",
"workflow": "pnpm -C example/workflow/extension",
"workflow:web": "pnpm -C example/workflow/web-extension",
"workflow:webview": "pnpm -C example/workflow/webview"
},
"devDependencies": {
"@eclipse-glsp/dev": "next",
"@types/node": "22.x",
"@types/vscode": "^1.101.0",
"concurrently": "^8.2.2",
"mocha-ctrf-json-reporter": "0.0.9",
"typescript": "5.9.2"
},
"packageManager": "pnpm@11.7.0",
"engines": {
"node": ">=22",
"pnpm": ">=11"
}
}