-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "@axme/code",
"version": "0.2.3",
"description": "Persistent memory, decisions, and safety guardrails for Claude Code",
"type": "module",
"main": "./dist/server.js",
"bin": {
"axme-code": "./dist/axme-code.js"
},
"scripts": {
"build": "node build.mjs",
"start": "node dist/server.js",
"dev": "tsx src/cli.ts",
"test": "tsx --test test/*.test.ts",
"lint": "tsc --noEmit"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.84",
"@modelcontextprotocol/sdk": "^1.29.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"esbuild": "^0.25.0",
"tsx": "^4.20.0",
"typescript": "^5.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AxmeAI/axme-code.git"
},
"license": "MIT",
"keywords": ["mcp", "claude-code", "ai-agent", "developer-tools"],
"files": ["dist", "templates", ".claude-plugin", "README.md", "LICENSE"],
"overrides": {
"@anthropic-ai/sdk": ">=0.81.0"
}
}