-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 747 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 747 Bytes
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
{
"name": "deterministic-llm-service",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "node --loader tsx src/server.ts",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@fastify/cors": "^10.0.1",
"fastify": "^5.2.1",
"openai": "^4.77.3",
"opossum": "^8.0.0",
"pino": "^9.6.0",
"prom-client": "^15.1.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.6",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.18.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}