-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.98 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
{
"name": "openprovider",
"version": "0.1.0",
"description": "OpenProvider-first LLM gateway with auto model routing.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "next dev",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.node.json",
"build": "node scripts/db-migrate.mjs && next build",
"build:web": "next build",
"build:gateway": "tsc -p tsconfig.node.json && node scripts/write-cjs-package.cjs",
"build:all": "npm run build:web && npm run build:gateway",
"verify": "npm run lint && npm run security:audit && npm run build:all",
"lint": "npm run typecheck",
"security:audit": "node scripts/security-audit.mjs",
"production:check": "node scripts/production-readiness.mjs",
"demo": "npm run build:gateway && node dist/index.js",
"serve": "npm run build:gateway && node dist/server.js",
"start": "node dist/server.js",
"start:web": "next start",
"test:providers": "npm run build:gateway && node dist/scripts/testProviders.js",
"status:models": "node scripts/update-model-status.mjs",
"status:models:finalize": "node scripts/update-model-status.mjs --finalize-unknown",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^0.31.10",
"typescript": "^5.6.3"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.2",
"@neondatabase/serverless": "^1.1.0",
"@streamdown/code": "^1.1.1",
"@vercel/analytics": "^2.0.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.11.0",
"next": "^16.2.4",
"next-auth": "^4.24.14",
"nextjs-toploader": "^3.9.17",
"postgres": "^3.4.9",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"shiki": "^3.23.0",
"streamdown": "^2.5.0"
}
}