-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "openai-converter",
"version": "0.2.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "npm run typecheck && npm run build:node",
"build:node": "tsup",
"dev": "tsx watch src/node.ts",
"dev:worker": "wrangler dev",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "eslint . --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:worker": "wrangler deploy --dry-run",
"start": "node dist/node.js",
"deploy:worker": "wrangler deploy",
"test": "vitest run"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"dotenv": "^16.4.7",
"hono": "^4.8.5",
"tslog": "^4.10.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.10.7",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5",
"wrangler": "^4.18.0"
}
}