-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 1.74 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "hono-pino",
"version": "0.7.2",
"description": "A pino logger plugin for hono",
"repository": {
"type": "git",
"url": "git+/~https://github.com/maou-shonen/hono-pino.git"
},
"license": "MIT",
"author": "maou-shonen",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"hono",
"pino",
"logger"
],
"homepage": "/~https://github.com/maou-shonen/hono-pino#readme",
"bugs": {
"url": "/~https://github.com/maou-shonen/hono-pino/issues"
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "husky",
"build": "tsup-node",
"format": "prettier --write .",
"typecheck": "tsc",
"lint": "eslint --quiet .",
"test": "vitest run",
"test:watch": "vitest",
"test:edge": "vitest run --environment edge-runtime",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"hono": ">=4.0.0",
"pino": ">=7.1.0"
},
"dependencies": {
"defu": "^6.1.4"
},
"devDependencies": {
"@edge-runtime/vm": "^4.0.4",
"@eslint/js": "^9.5.0",
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^2.1.3",
"eslint": "^8.57.0",
"hono": "^4.6.20",
"husky": "^9.0.11",
"jsr": "^0.13.2",
"lint-staged": "^15.2.7",
"pino": "^9.4.0",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.7.3",
"typescript-eslint": "^7.13.0",
"vitest": "^2.1.3"
}
}