-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 KB
/
package.json
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
{
"name": "zesti",
"version": "0.1.19",
"description": "A small and fast Edge framework",
"keywords": [],
"license": "MIT",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"homepage": "https://github.com/re-utils/zesti",
"repository": {
"url": "https://github.com/re-utils/zesti",
"type": "github"
},
"scripts": {
"task": "bun scripts/task.ts",
"build:test": "bun task build && bun test",
"build:publish": "bun task build && bun task bench-app --node && bun task report-size && bun task publish",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"devDependencies": {
"0x": "^5.8.0",
"@cloudflare/workers-types": "^4.20250109.0",
"@stylistic/eslint-plugin": "latest",
"@types/bun": "^1.1.18",
"@types/deno": "^2.0.0",
"@types/uglify-js": "^3.17.5",
"eslint": "latest",
"eslint-plugin-jsdoc": "latest",
"mitata": "^1.0.30",
"stnl": "^0.3.5",
"tsx": "latest",
"typescript": "latest",
"typescript-eslint": "latest",
"uglify-js": "^3.19.3"
},
"dependencies": {
"@mapl/router": "0.3.5"
}
}