-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "agentboost",
"version": "0.1.0",
"description": "A thin, pluggable Skills / Instincts / Memory enhancement layer for coding agents (Claude Code, Cursor, OpenCode, Codex).",
"type": "module",
"bin": {
"agentboost": "dist/cli/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"adapters",
"docs",
"README.md"
],
"scripts": {
"build": "tsc && npm run copy-static",
"copy-static": "node -e \"const fs=require('fs');fs.cpSync('src/gui/static','dist/gui/static',{recursive:true})\"",
"dev": "tsx src/cli/index.ts",
"mcp": "tsx src/mcp/server.ts",
"gui": "tsx src/cli/index.ts gui",
"test": "node --import tsx --test test/*.test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"mcp",
"claude-code",
"cursor",
"opencode",
"codex",
"planning",
"memory",
"verification"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"commander": "^12.1.0",
"yaml": "^2.6.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}