-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 949 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 949 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": "qwen-code-cli-wrapper",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"test": "vitest",
"cf-typegen": "wrangler types",
"format": "prettier --write src",
"format:check": "prettier --check src",
"build": "wrangler deploy --dry-run --outdir=dist",
"tsc": "tsc --noEmit --skipLibCheck",
"lint": "eslint --ext .ts src && npm run tsc",
"lint:fix": "eslint --ext .ts src --fix"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.19",
"@cloudflare/workers-types": "^4.20250819.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"eslint": "^9.33.0",
"prettier": "^3.6.2",
"typescript": "^5.5.2",
"vitest": "~3.2.0",
"wrangler": "4"
},
"dependencies": {
"hono": "^4.9.2"
}
}