-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "grove-monorepo",
"private": true,
"version": "0.0.6",
"description": "Grove — production-grade agent runtime with OTP-style supervision, compile-time optimization, and live time-travel inspection.",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"test": "bun test packages",
"test:live": "bun test tests/live",
"test:all": "bun test",
"typecheck": "tsc --noEmit -p .",
"format": "biome format --write .",
"lint": "biome check ."
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"typescript": "^5.6.0"
},
"engines": {
"bun": ">=1.3.0"
},
"license": "MIT",
"homepage": "https://vyntral.github.io/Grove",
"repository": "github:Vyntral/Grove",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.75",
"@vyntral/grove-core": "workspace:*",
"@vyntral/grove-runtime": "workspace:*",
"@vyntral/grove-mcp": "workspace:*",
"@modelcontextprotocol/sdk": "^1.29.0",
"ai": "^6.0.175",
"zod": "^4.4.3"
}
}