-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) 路 1.67 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) 路 1.67 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
54
{
"private": true,
"workspaces": [
"lib",
"shims/*"
],
"type": "module",
"scripts": {
"build": "cd lib && pnpm build",
"dev": "CODE_MODULES_DIR=lib/node_modules node lib/src/cli.ts",
"coderaft": "node lib/src/cli.ts",
"link-deps": "node scripts/link.ts",
"postinstall": "node scripts/link.ts",
"fmt": "oxlint . --fix && oxfmt .",
"release": "cd lib && pnpm changelogen --push --release",
"lint": "oxlint . && oxfmt --check .",
"prepack": "pnpm build",
"test": "pnpm lint && pnpm typecheck && vitest run",
"typecheck": "tsgo --noEmit --skipLibCheck"
},
"devDependencies": {
"@types/node": "^26.0.1",
"@typescript/native-preview": "latest",
"changelogen": "^0.6.2",
"obuild": "^0.4.37",
"oxfmt": ">=0.58.0",
"oxlint": ">=1.71.0",
"vitest": "^4.1.9"
},
"overrides": {
"@github/copilot": "workspace:*",
"@github/copilot-sdk": "workspace:*",
"@microsoft/1ds-core-js": "workspace:*",
"@microsoft/1ds-post-js": "workspace:*",
"@parcel/watcher": "workspace:*",
"@vscode/deviceid": "workspace:*",
"@vscode/fs-copyfile": "workspace:*",
"@vscode/native-watchdog": "workspace:*",
"@vscode/proxy-agent": "workspace:*",
"@vscode/ripgrep": "workspace:*",
"@vscode/ripgrep-universal": "workspace:*",
"@vscode/spdlog": "workspace:*",
"@vscode/sqlite3": "workspace:*",
"@vscode/windows-process-tree": "workspace:*",
"@vscode/windows-registry": "workspace:*",
"argon2": "workspace:*",
"fsevents": "workspace:*",
"kerberos": "workspace:*",
"node-pty": "workspace:*",
"ssh2": "workspace:*",
"vsda": "workspace:*"
},
"packageManager": "pnpm@11.7.0"
}