-
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.01 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"type": "module",
"name": "@exelarium/hono-toolkit",
"description": "A collection of middlewares and helpers for Hono framework",
"version": "1.2.2",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "npm run build"
},
"keywords": [
"exelarium",
"hono",
"middleware",
"caching",
"database",
"authentication"
],
"homepage": "https://exelarium.com",
"author": {
"name": "Exelarium",
"email": "development@exelarium.com"
},
"repository": {
"type": "git",
"url": "https://github.com/exelarium/hono-toolkit"
},
"bugs": {
"url": "https://github.com/exelarium/hono-toolkit/issues"
},
"license": "ISC",
"peerDependencies": {
"@hono/sentry": "^1.2.1",
"@hono/zod-validator": "^0.7.0",
"hono": "^4.7.10",
"jose": ">=5.0.0 <7.0.0",
"zod": "^3.25.48"
},
"devDependencies": {
"typescript": "^5.8.3",
"@cloudflare/workers-types": "^4.20250605.0"
}
}