-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.64 KB
/
package.json
File metadata and controls
72 lines (72 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "cli-bridge",
"version": "0.1.3",
"type": "module",
"main": "dist/server.js",
"bin": {
"cli-bridge": "dist/cli-bridge.js"
},
"scripts": {
"build": "tsc && node scripts/bundle.js",
"lint": "eslint src/ tests/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
"check:versions": "node scripts/check-versions.mjs",
"prepare": "lefthook install || true"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"lefthook": "^2.1.6",
"prettier": "^3.8.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.5"
},
"files": [
"dist/",
"specs/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walkindude/cli-bridge.git"
},
"homepage": "https://projects.mioli.dev/cli-bridge/",
"license": "Apache-2.0",
"author": "Stefano Mioli",
"keywords": [
"mcp",
"cli",
"claude",
"codex",
"agent",
"tool-use",
"model-context-protocol"
],
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"hono": "^4.12.14",
"vite": "^8.0.5"
}
}
}