-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.57 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
{
"name": "@sandbaseai/cli",
"version": "0.1.17",
"mcpName": "io.github.sandbaseai/cli",
"description": "Connect 25 AI clients—including Claude Code, Codex, Cursor, Hermes, and OpenClaw—to 2,000+ models through a local MCP server",
"type": "module",
"bin": {
"sandbase": "dist/cli.js"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"assets",
"skills",
"llms-install.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && tsc -p tsconfig.test.json && node --test dist-test/test/*.test.js",
"lint": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"audit:package": "bash scripts/audit-package.sh",
"prepack": "npm run build"
},
"devDependencies": {
"@types/node": "22.15.3",
"typescript": "5.8.3"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sandbaseai/cli.git"
},
"homepage": "https://github.com/sandbaseai/cli#readme",
"bugs": {
"url": "https://github.com/sandbaseai/cli/issues"
},
"keywords": [
"ai",
"agent",
"cli",
"mcp",
"model-context-protocol",
"cursor",
"claude-code",
"codex",
"windsurf",
"gemini-cli",
"opencode",
"openclaw",
"hermes-agent",
"model-routing",
"multimodal-ai",
"developer-tools",
"automation"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"jsonc-parser": "3.3.1",
"smol-toml": "1.7.0",
"yaml": "2.9.0"
}
}