-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 819 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 819 Bytes
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
{
"name": "gandr",
"version": "1.0.1",
"description": "A WSL bridge for Claude Desktop on Windows that routes MCP tool calls into Claude Code running inside Linux.",
"scripts": {
"build": "bun run scripts/build.ts",
"build:x64": "bun run scripts/build.ts --arch x64",
"build:arm64": "bun run scripts/build.ts --arch arm64",
"check": "tsc --noEmit --skipLibCheck",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"version:bump": "bumpp --quiet --release",
"healthcheck": "bun run src/index.ts --healthcheck",
"version": "bun run src/index.ts --version"
},
"devDependencies": {
"@types/bun": "1.3.11",
"@types/node": "^22.19.15",
"bumpp": "^10.4.1",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"typescript": "^5.9.3"
}
}