-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "@bogeychan/elysia-logger",
"version": "0.1.6",
"description": "A plugin for Elysia.js for logging using the pino library",
"author": {
"name": "bogeychan",
"url": "https://github.com/bogeychan",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/bogeychan/elysia-logger"
},
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"types": "./dist/types.d.ts"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "bun run --watch examples/basic.ts",
"test": "bun run test:types && bun test",
"test:types": "tsc --project tsconfig.test.json",
"build": "rm -fr dist && tsc --project tsconfig.esm.json",
"release": "npm run build && npm run test && npm publish --access public"
},
"peerDependencies": {
"elysia": ">= 1.1.0"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"elysia": "1.1.0",
"pino-pretty": "^13.0.0",
"tsd": "^0.31.2",
"typescript": "^5.7.2"
},
"dependencies": {
"pino": "^9.5.0"
},
"homepage": "https://github.com/bogeychan/elysia-logger",
"bugs": "https://github.com/bogeychan/elysia-logger/issues",
"license": "MIT",
"keywords": [
"elysia",
"pino"
]
}