-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 792 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
{
"name": "getmerlin-worker",
"version": "2.1.1",
"description": "Cloudflare Worker version of GetMerlin",
"main": "src/index.ts",
"scripts": {
"build": "tsc --noEmit",
"type-check": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"tail": "wrangler tail"
},
"keywords": [
"cloudflare",
"worker",
"merlin",
"openai",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"@cloudflare/workers-types": "^4.20250723.0",
"hono": "^4.8.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/fake-useragent": "^1.0.0",
"@types/node": "^24.1.0",
"typescript": "^5.8.3",
"wrangler": "^4.25.0"
}
}