-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.67 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
{
"name": "@agentmuxai/muxcode",
"version": "0.7.0",
"description": "First-party agentic loop CLI for AgentMux — local GGUF inference via llama-server, cloud APIs, full MCP tool execution",
"type": "module",
"bin": {
"muxcode": "./bin/muxcode.js"
},
"files": [
"bin/",
"dist/",
"catalog.json"
],
"scripts": {
"prepare": "node -e \"try{const cp=require('child_process'),path=require('path'),fs=require('fs');const t=path.resolve(cp.execSync('git rev-parse --show-toplevel',{stdio:['ignore','pipe','ignore']}).toString().trim());if(t!==path.resolve(process.cwd())||!fs.existsSync(path.join(t,'.githooks')))process.exit(0)}catch(e){process.exit(0)}require('child_process').execSync('git config core.hooksPath .githooks',{stdio:'ignore'})\"",
"build": "tsc",
"dev": "tsc --watch",
"start": "node bin/muxcode.js",
"test": "npm run build && node --test \"test/**/*.test.mjs\"",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.128.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"commander": "^12.0.0",
"openai": "^4.68.0"
},
"devDependencies": {
"@types/node": "^22.20.4",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=24.18.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/agentmuxai/muxcode.git"
},
"license": "MIT",
"homepage": "https://github.com/agentmuxai/muxcode#readme",
"bugs": {
"url": "https://github.com/agentmuxai/muxcode/issues"
},
"keywords": [
"agentmux",
"agent",
"cli",
"llm",
"mcp",
"llama.cpp"
]
}