forked from sandbaseai/sandbase-harness
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.36 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
{
"name": "managed-agents",
"version": "0.1.0",
"description": "Open-source managed-agent runtime and local Console. Run standard agent sessions locally with any model.",
"type": "module",
"homepage": "https://github.com/sandbaseai/managed-agents#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sandbaseai/managed-agents.git"
},
"bugs": {
"url": "https://github.com/sandbaseai/managed-agents/issues"
},
"engines": {
"node": ">=22"
},
"bin": {
"managed-agents": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"docs",
"examples",
"README.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": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"format": "node -e \"console.log('No formatter configured yet.')\"",
"format:check": "node -e \"console.log('No formatter configured yet.')\""
},
"keywords": [
"agent",
"managed-agents",
"mcp",
"ai",
"llm",
"local-first",
"agent-runtime",
"agent-console",
"skills"
],
"license": "Apache-2.0",
"dependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/openai": "^1.0.0",
"@hono/node-server": "^1.13.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"
}
}