-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.01 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.01 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
{
"name": "one-api-workers",
"workspaces": [
"frontend"
],
"scripts": {
"dev": "concurrently --kill-others-on-fail -n web,worker -c cyan,green \"bun run dev:web\" \"bun run dev:worker\"",
"dev:web": "bun run --filter frontend dev",
"dev:worker": "wrangler dev --config wrangler.local.jsonc --local --host localhost",
"build": "bun run --filter frontend build",
"deploy": "bun run build && wrangler deploy --config wrangler.jsonc",
"cf-typegen": "wrangler types --config wrangler.jsonc --include-env=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tokinx/one-api-workers.git"
},
"homepage": "https://github.com/Tokinx/one-api-workers",
"bugs": {
"url": "https://github.com/Tokinx/one-api-workers/issues"
},
"dependencies": {
"chanfana": "^3.3.0",
"hono": "^4.12.12",
"zod": "^4.3.6"
},
"devDependencies": {
"concurrently": "^9.2.1",
"typescript": "^6.0.2",
"wrangler": "^4.81.0"
},
"packageManager": "bun@1.3.11"
}