forked from tinyhttp/logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "@otterhttp/logger",
"type": "module",
"description": "Flexible HTTP logging middleware for otterhttp",
"homepage": "https://github.com/OtterJS/otterhttp-logger#readme",
"repository": {
"type": "git",
"url": "https://github.com/OtterJS/otterhttp-logger.git"
},
"engines": {
"node": ">=20"
},
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./filelogger": {
"import": "./dist/filelogger.js",
"types": "./dist/filelogger.d.ts"
}
},
"keywords": ["otterhttp", "node.js", "web framework", "web", "backend"],
"author": "lordfirespeed <[email protected]>",
"license": "LGPL-3.0-or-later",
"files": ["dist"],
"dependencies": {
"colorette": "^2.0.20",
"dayjs": "^1.11.10"
},
"scripts": {
"build": "tsup",
"check": "biome check .",
"check:fix": "biome check --write .",
"prepare": "husky",
"prepack": "pnpm build",
"test": "vitest run",
"test:coverage": "vitest run --coverage --silent",
"test:dev": "vitest",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@otterhttp/app": "^3.4.0",
"@types/node": "^20.8.9",
"@vitest/coverage-istanbul": "^2.0.5",
"husky": "^9.1.5",
"tsup": "^8.2.4",
"typescript": "^5.2.2",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]+sha256.56a9e76b51796ca7f73b85e44cf83712862091f4d498c0ce4d5b7ecdc6ba18f7"
}