-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 3.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "managed-agents",
"version": "0.3.2",
"description": "Local-first, self-hosted AI agent runtime with Claude Managed Agents-style APIs, sandboxed sessions, memory, tools, audit, replay, and a local Console.",
"type": "module",
"homepage": "https://github.com/sandbaseai/sandbase-harness#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sandbaseai/sandbase-harness.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dsh": {
"bundle": {
"patch": "./examples/deepseek-harness/cordis.yml"
}
},
"bugs": {
"url": "https://github.com/sandbaseai/sandbase-harness/issues"
},
"engines": {
"node": ">=22"
},
"bin": {
"managed-agents": "dist/index.js",
"managed-agents-mcp": "dist/mcp/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"docs",
"examples",
"scripts",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./sdk": {
"types": "./dist/sdk.d.ts",
"import": "./dist/sdk.js"
}
},
"scripts": {
"dev": "tsx src/index.ts",
"dev:console": "vite --host 0.0.0.0 --config apps/console/vite.config.ts",
"build": "npm run build:runtime && npm run build:console",
"build:runtime": "tsup",
"build:console": "vite build --config apps/console/vite.config.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:property": "vitest run tests/property",
"lint": "npm run typecheck",
"typecheck": "npm run typecheck:src && npm run typecheck:tests",
"typecheck:src": "tsc --noEmit",
"typecheck:tests": "tsc --noEmit -p tsconfig.tests.json",
"package:check": "npm pack --dry-run",
"smoke:release": "node scripts/smoke-release.mjs",
"release:check": "npm run typecheck && npm test && npm run build && npm run package:check && npm run smoke:release",
"format": "node -e \"console.log('No formatter configured yet.')\"",
"format:check": "node -e \"console.log('No formatter configured yet.')\""
},
"keywords": [
"ai-agents",
"ai-agent-runtime",
"agent-runtime",
"managed-agents",
"claude-managed-agents",
"anthropic",
"mcp",
"mcp-tools",
"deepseek-harness",
"dsh-plugin",
"local-first",
"local-ai-agents",
"sandboxed-execution",
"agent-memory",
"credential-vaults",
"audit-log",
"session-replay",
"agent-console",
"skills",
"openai-compatible",
"ollama",
"vercel-ai-sdk",
"server-sent-events",
"agent-observability",
"agent-tools",
"ai-sandbox",
"developer-tools",
"typescript",
"sqlite"
],
"license": "Apache-2.0",
"dependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/openai": "^1.0.0",
"@hono/node-server": "^1.13.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"ai": "^4.0.0",
"commander": "^12.0.0",
"hono": "^4.6.0",
"nanoid": "^5.0.0",
"yaml": "^2.5.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"fast-check": "^3.20.0",
"lucide-react": "^1.24.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tsup": "^8.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^5.4.21",
"vitest": "^2.1.0"
}
}