{ "name": "server", "version": "1.0.0", "description": "LLM Router Server", "main": "dist/index.js", "scripts": { "build": "tsc && node scripts/copy-schemas.mjs", "start": "node dist/server/src/index.js", "dev": "tsx watch src", "typecheck": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "bench": "tsx benchmarks/index.ts", "sandbox": "tsx src/services/sandbox.ts" }, "keywords": [], "author": "", "license": "MIT", "dependencies": { "better-sqlite3": "^12.6.2", "cors": "^2.8.6", "dotenv": "^17.3.1", "express": "^5.2.1", "isolated-vm": "^6.0.2", "node-fetch": "^3.3.2", "zod": "^4.3.6" }, "devDependencies": { "@types/better-sqlite3": "^7.6.13", "@types/cors": "^2.8.19", "@types/express": "^5.0.6", "@types/node": "^25.3.3", "@types/supertest": "^7.2.0", "chalk": "^5.6.0", "cli-table3": "^0.6.5", "commander": "^14.0.0", "supertest": "^7.2.2", "tsx": "^4.21.0", "typescript": "^5.9.3", "vitest": "^4.0.18" } }