-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.58 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
{
"name": "@tjamescouch/gro",
"version": "3.0.57",
"license": "MIT",
"description": "Provider-agnostic LLM runtime with context management",
"bin": {
"gro": "./dist/main.js",
"gro-supervised": "./dist/supervisor.js"
},
"homepage": "https://github.com/tjamescouch/gro#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tjamescouch/gro.git"
},
"bugs": {
"url": "https://github.com/tjamescouch/gro/issues"
},
"files": [
"dist/",
"src/",
"gro",
"providers/",
"models.json",
"_base.md",
"owl"
],
"type": "module",
"scripts": {
"start": "npx tsx src/main.ts",
"build": "node -e \"const v=require('./package.json').version; const f='src/version.ts'; let c=require('fs').readFileSync(f,'utf8'); c=c.replace(/GRO_VERSION = \\\"[^\\\"]*\\\"/,'GRO_VERSION = \\\"'+v+'\\\"'); require('fs').writeFileSync(f,c)\" && tsc && chmod +x dist/main.js dist/supervisor.js && cp package.json dist/ && cp models.json dist/ && cp src/memory/virtual/summarizer-prompt.md dist/memory/virtual/ && mkdir -p dist/boot && cp src/boot/runtime.md dist/boot/",
"prepare": "npm run build || true",
"prepublishOnly": "npm run build",
"build:bun": "bun build src/main.ts --outdir dist --target bun",
"test": "npx tsx --test tests/*.test.ts",
"test:bun": "bun test"
},
"devDependencies": {
"@types/blessed": "^0.1.27",
"@types/node": "^25.3.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"blessed": "^0.1.81",
"isexe": "^4.0.0"
}
}