-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 897 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 897 Bytes
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
{
"name": "@lock-in-lab/walnut",
"version": "1.0.0",
"description": "Structured context for AI agents — Claude Code plugin + MCP server",
"type": "module",
"main": "dist/index.js",
"bin": { "walnut": "./dist/index.js" },
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"prepublishOnly": "npm run build"
},
"files": ["dist", "plugins", "skills", ".mcp.json", "README.md", "LICENSE"],
"keywords": ["walnut", "context", "mcp", "claude-code", "hermes", "memory", "structured-context"],
"author": "Lock-in Lab",
"license": "MIT",
"repository": { "type": "git", "url": "git+https://github.com/stackwalnuts/walnut.git" },
"engines": { "node": ">=22" },
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"gray-matter": "^4.0.3",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}