29 lines
704 B
JSON
29 lines
704 B
JSON
{
|
|
"name": "command-code-openai-bridge",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Local OpenAI Chat Completions and Responses compatible bridge for Command Code CLI",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"check": "tsc -p tsconfig.json --noEmit",
|
|
"dev": "tsx src/index.ts --config config.yaml",
|
|
"start": "node dist/index.js --config config.yaml"
|
|
},
|
|
"dependencies": {
|
|
"ajv": "^8.20.0",
|
|
"fastify": "^5.5.0",
|
|
"openai": "^5.19.1",
|
|
"yaml": "^2.8.1",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.3.0",
|
|
"tsx": "^4.20.5",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|