-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.12 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
79
80
81
82
{
"name": "@otherguy/elysia-logging",
"description": "A flexible logging library for Elysia.js",
"author": {
"name": "otherguy",
"url": "https://github.com/otherguy",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/otherguy/elysia-logging"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"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"
}
},
"scripts": {
"build": "rm -rf dist/* && tsc --project tsconfig.esm.json",
"dev": "bun run --watch src/index.ts | pino-pretty",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"validate": "tsc --noEmit --skipLibCheck",
"lint": "eslint --ext .ts src",
"bundle": "bun build --minify --compile src --outfile=build/api",
"release": "yarn publish --access public"
},
"jestSonar": {
"reportPath": "reports",
"reportFile": "test-report.xml"
},
"dependencies": {
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"elysia": "^0.8.17"
},
"peerDependencies": {
"elysia": "^0.8.17"
},
"optionalDependencies": {
"pino": "^8.16.2",
"@types/pino": "^7.0.5"
},
"devDependencies": {
"@types/bunyan": "^1.8.11",
"@types/jest": "^29.5.10",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"bun-types": "^1.0.30",
"bunyan": "^1.8.15",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-sonar": "^0.2.16",
"pino-pretty": "^10.2.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslog": "^4.9.2",
"typescript": "^5.3.2",
"winston": "^3.11.0"
},
"homepage": "https://github.com/otherguy/elysia-logging",
"bugs": "https://github.com/otherguy/elysia-logging/issues",
"license": "MIT",
"keywords": [
"elysia",
"logging",
"logger"
]
}