-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.26 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@foxxmd/logging",
"type": "module",
"version": "0.2.2",
"repository": "https://github.com/foxxmd/logging",
"description": "A typed, opinionated, batteries-included, Pino-based logging solution for backend TS/JS projects",
"scripts": {
"typedoc": "typedoc --plugin typedoc-plugin-missing-exports --plugin typedoc-plugin-replace-text --plugin typedoc-plugin-inline-sources --plugin @8hobbies/typedoc-plugin-plausible",
"typedoc:watch": "typedoc --plugin typedoc-plugin-missing-exports --plugin typedoc-plugin-replace-text --plugin typedoc-plugin-inline-sources --media ./assets --watch",
"build": "tsc",
"prepare": "tshy",
"test": "mocha --reporter spec --recursive ./tests/*.test.ts",
"example": "tsx example/kitchenSink.ts",
"screenshot": "freeze --execute \"node_modules/.bin/tsx example/kitchenSink.ts\" -c full -o \"assets/example.svg\""
},
"runkitExampleFilename": "example/runkit.js",
"keywords": [
"pino",
"logger",
"child",
"file",
"async",
"console",
"typescript"
],
"author": "FoxxMD",
"license": "MIT",
"private": false,
"engines": {
"node": ">=18.0.0",
"npm": ">=9.3.0"
},
"files": [
"dist"
],
"tshy": {
"project": "./tsconfig.build.json",
"exports": {
"./package.json": "./package.json",
".": "./src/index.js",
"./factory": "./src/factory.js"
},
"dialects": [
"esm",
"commonjs"
]
},
"devDependencies": {
"@8hobbies/typedoc-plugin-plausible": "^2.0.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/dateformat": "^5.0.2",
"@types/mocha": "^9.1.0",
"@types/node": "^18.0.0",
"@types/pump": "^1.1.3",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dateformat": "^5.0.3",
"mocha": "^10.2.0",
"p-event": "^6.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"ts-essentials": "^9.4.1",
"tshy": "^1.7.0",
"tsx": "^4.7.1",
"typedoc": "^0.26.2",
"typedoc-plugin-inline-sources": "^1.0.3",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-replace-text": "^4.0.0",
"typescript": "^5.3.3",
"with-local-tmp-dir": "^5.1.1"
},
"dependencies": {
"pino": "^9.2.0",
"pino-abstract-transport": "^1.2.0",
"pino-pretty": "^11.2.1",
"pino-roll": "^2.2.0",
"pump": "^3.0.0"
},
"overrides": {
"with-local-tmp-dir": {
"tmp-promise": {
"tmp": "0.2.1"
}
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"source": "./src/index.js",
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"source": "./src/index.js",
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./factory": {
"import": {
"source": "./src/factory.js",
"types": "./dist/esm/factory.d.ts",
"default": "./dist/esm/factory.js"
},
"require": {
"source": "./src/factory.js",
"types": "./dist/commonjs/factory.d.ts",
"default": "./dist/commonjs/factory.js"
}
}
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js"
}