-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 836 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 836 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
{
"name": "zero-token-service",
"version": "0.1.0",
"description": "Standalone OpenAI-compatible service powered by browser-driven LLM providers — zero API token cost",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "npm@10.9.4",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsdown",
"start": "node dist/server.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"hono": "4.12.7",
"@hono/node-server": "^1.19.10",
"playwright-core": "^1.52.0",
"ws": "^8.19.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.4.0",
"@types/ws": "^8.18.1",
"tsdown": "0.21.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}