-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.62 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ownllm",
"version": "0.2.1",
"description": "Self-hostable, subscription-auth, OpenAI-compatible API gateway with real per-request model routing.",
"keywords": [
"openai",
"api-gateway",
"llm",
"proxy",
"oauth",
"subscription",
"model-routing",
"self-hosted",
"codex",
"grok"
],
"homepage": "https://github.com/lukaisailovic/ownllm#readme",
"bugs": "https://github.com/lukaisailovic/ownllm/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/lukaisailovic/ownllm.git"
},
"type": "module",
"license": "Apache-2.0",
"author": "Luka Isailovic",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.34.1",
"publishConfig": {
"access": "public"
},
"bin": {
"ownllm": "dist/main.js"
},
"files": ["dist", "config.example.yaml", "README.md", "LICENSE"],
"scripts": {
"build": "tsup",
"dev": "tsx watch src/main.ts",
"cli": "tsx src/main.ts",
"start": "node dist/main.js",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@hono/node-server": "^1.13.0",
"citty": "^0.1.6",
"eventsource-parser": "^3.0.0",
"hono": "^4.6.0",
"pino": "^9.5.0",
"tough-cookie": "^5.0.0",
"yaml": "^2.6.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^22.10.0",
"openai": "^4.77.0",
"pino-pretty": "^13.0.0",
"tsup": "^8.3.0",
"tsx": "^4.22.3",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}