-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.01 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.01 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
{
"name": "mcp-cli",
"version": "0.3.0",
"description": "A lightweight CLI for interacting with MCP (Model Context Protocol) servers",
"type": "module",
"main": "src/index.ts",
"bin": {
"mcp-cli": "src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build --compile --minify src/index.ts --outfile dist/mcp-cli",
"build:linux": "bun build --compile --minify --target=bun-linux-x64 src/index.ts --outfile dist/mcp-cli-linux-x64",
"build:linux-arm": "bun build --compile --minify --target=bun-linux-arm64 src/index.ts --outfile dist/mcp-cli-linux-arm64",
"build:macos": "bun build --compile --minify --target=bun-darwin-x64 src/index.ts --outfile dist/mcp-cli-darwin-x64",
"build:macos-arm": "bun build --compile --minify --target=bun-darwin-arm64 src/index.ts --outfile dist/mcp-cli-darwin-arm64",
"build:windows": "bun build --compile --minify --target=bun-windows-x64 src/index.ts --outfile dist/mcp-cli-windows-x64.exe",
"build:all": "bun run build:linux && bun run build:linux-arm && bun run build:macos && bun run build:macos-arm && bun run build:windows",
"test": "bun test",
"test:integration": "bun test --timeout 30000 tests/integration",
"typecheck": "tsc --noEmit",
"lint": "bunx --bun @biomejs/biome check src/",
"lint:fix": "bunx --bun @biomejs/biome check --write src/",
"format": "bunx --bun @biomejs/biome format --write src/"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.3.5",
"typescript": "^5.9.3"
},
"keywords": [
"mcp",
"model-context-protocol",
"cli",
"ai",
"tools",
"agents"
],
"author": "Philipp Schmid",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/philschmid/mcp-cli"
},
"bugs": {
"url": "https://github.com/philschmid/mcp-cli/issues"
},
"homepage": "https://github.com/philschmid/mcp-cli#readme",
"engines": {
"bun": ">=1.0.0"
}
}