-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"author": "xixu-me",
"dependencies": {
"hono": "^4.9.7"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250722.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.5.2",
"wrangler": "^4.25.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"main": "src/index.ts",
"name": "deeplx",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/xixu-me/DeepLX.git"
},
"scripts": {
"cf-typegen": "wrangler types",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"fix-lockfile": "node scripts/fix-lockfile.js",
"lint": "tsc --noEmit",
"start": "wrangler dev",
"test": "jest",
"test:ci": "jest --coverage --ci --watchAll=false",
"test:coverage": "jest --coverage",
"test:debug": "jest --detectOpenHandles --forceExit",
"test:integration": "jest --testPathPattern=tests/integration",
"test:performance": "jest --testPathPattern=tests/performance",
"test:runner": "node scripts/test-runner.js",
"test:setup": "node scripts/setup-tests.js",
"test:unit": "jest --testPathPattern=tests/lib",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
},
"version": "1.0.0"
}