forked from windoliver/grove
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.53 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.53 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
{
"name": "grove",
"description": "Protocol and platform for asynchronous, massively collaborative agent work",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "bun@1.3.9",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./local": {
"types": "./dist/local/index.d.ts",
"import": "./dist/local/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js"
},
"./nexus": {
"types": "./dist/nexus/index.d.ts",
"import": "./dist/nexus/index.js"
}
},
"bin": {
"grove": "./dist/cli/main.js",
"grove-server": "./dist/server/serve.js",
"grove-mcp": "./dist/mcp/serve.js",
"grove-mcp-http": "./dist/mcp/serve-http.js"
},
"scripts": {
"build": "bun run --cwd packages/ask-user build && tsup",
"typecheck": "bun run --cwd packages/ask-user typecheck && bun run --cwd packages/ask-user build && tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"start:server": "bun run src/server/serve.ts",
"test": "bun test && bun test --cwd packages/ask-user",
"test:coverage": "bun test --coverage && bun test --cwd packages/ask-user --coverage",
"test:integration": "NEXUS_URL=http://localhost:2026 bun test tests/nexus/integration/",
"nexus:up": "docker compose up nexus -d",
"nexus:down": "docker compose down",
"check": "biome check .",
"postinstall": "bun run --cwd packages/ask-user build && bun ./scripts/install-hooks.mjs"
},
"dependencies": {
"@grove/ask-user": "workspace:*",
"@hono/zod-validator": "0.7.6",
"@modelcontextprotocol/sdk": "^1.27.0",
"@opentui-ui/dialog": "0.1.2",
"@opentui-ui/toast": "0.0.5",
"@opentui/core": "^0.1.87",
"@opentui/react": "^0.1.87",
"@xterm/addon-serialize": "0.14.0",
"@xterm/headless": "6.0.0",
"blake3": "^1.0.2",
"hono": "^4.12.6",
"react": "^19.0.0",
"yaml": "^2.8.2",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/bun": "1.3.9",
"@types/react": "^19.0.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"lefthook": "2.1.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"esbuild"
]
}