@aj-archipelago/cortex
Version:
Cortex is a GraphQL API for AI. It provides a simple, extensible interface for using AI services from OpenAI, Azure and others.
29 lines (28 loc) • 763 B
JSON
{
"name": "cortex-realtime-voice",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "concurrently \"cd client && bun run dev\" \"bun --watch run index.ts\"",
"dev:server": "bun --watch run index.ts",
"dev:client": "cd client && bun run dev",
"start": "bun run index.ts",
"start:test": "NODE_ENV=test bun run index.ts",
"start:prod": "NODE_ENV=production bun run index.ts"
},
"dependencies": {
"@hono/node-server": "1.13.7",
"@paralleldrive/cuid2": "2.2.2",
"hono": "4.6.13",
"socket.io": "4.8.1"
},
"devDependencies": {
"@types/bun": "1.1.14",
"@types/node": "22.10.1",
"bun-types": "^1.1.38",
"concurrently": "^8.2.2"
},
"peerDependencies": {
"typescript": "5.7.2"
}
}