-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"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.9.1",
"@vitest/coverage-v8": "^4.1.8",
"esbuild": "^0.28.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"lefthook": "^2.1.9",
"prettier": "^3.8.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.8"
},
"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"
]
}