-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 896 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 896 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
32
33
34
35
36
{
"name": "llm-fusion",
"version": "0.1.42",
"private": true,
"type": "module",
"description": "Lightweight OpenAI-compatible LLM proxy (Fusion Proxy) for Ollama Cloud.",
"engines": {
"node": ">=24"
},
"bin": {
"fusion-opencode": "bin/fusion-opencode"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.test.json",
"test": "vitest run",
"smoke": "vitest run test/live.smoke.test.ts"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"hono": "^4.6.14",
"p-limit": "^6.1.0",
"pino": "^9.5.0",
"yaml": "^2.6.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.2",
"jsdom": "^30.0.1",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}