Files
2026-03-22 13:16:22 +08:00

24 lines
581 B
JSON
Executable File

{
"name": "openclaw-ollama-toolcall-proxy",
"version": "1.0.0",
"description": "A proxy layer between OpenClaw and Ollama to rewrite XML tool calls into structured tool_calls.",
"main": "dist/index.js",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"dotenv": "^16.4.5",
"fastify": "^4.26.2"
},
"devDependencies": {
"@types/node": "^20.12.7",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}