-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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
46
47
48
49
50
51
{
"name": "@unipro-tech/node-logger",
"version": "1.0.2",
"description": "A structured logger for Node.js using Pino.",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"license": "MIT",
"exports": {
".": {
"bun": "./dist/bun/index.js",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"repository": "https://github.com/UniPro-tech/node-logger",
"private": false,
"scripts": {
"build:cjs": "bunx tsgo -p tsconfig.cjs.json",
"build:esm": "bunx tsgo -p tsconfig.esm.json",
"build:bun": "bun run ./scripts/bunBuilder.ts"
},
"contributors": [
{
"name": "Yuito Akatsuki",
"email": "yuito@uniproject.jp"
}
],
"devDependencies": {
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20250904.1",
"bun-plugin-pino": "^1.4.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"nanoid": "^5.1.5",
"pino": "^10.0.0",
"pino-abstract-transport": "^3.0.0",
"pino-discord-webhook": "^0.1.7",
"pino-logfmt": "^1.0.1",
"pino-loki": "^3.0.0",
"pino-pretty": "^13.1.1"
}
}