-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "pino-rotating-file-stream",
"version": "0.0.2",
"description": "A transport for pino that rotates logs",
"keywords": [
"pino",
"pino-transport",
"log-rotation",
"logging"
],
"homepage": "https://github.com/thelicato/pino-rotating-file-stream#readme",
"bugs": {
"url": "https://github.com/thelicato/pino-rotating-file-stream/issues"
},
"packageManager": "[email protected]",
"license": "MIT",
"author": "Angelo Delicato <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/thelicato/pino-rotating-file-stream.git"
},
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
},
"./*.js": "./*.js",
"./*": {
"require": "./*.js",
"import": "./*"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"scripts": {
"build-mjs": "tsc -p tsconfig.mjs.json && tsc-alias -p tsconfig.mjs.json",
"build-cjs": "tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
"build": "pnpm build-mjs && pnpm build-cjs",
"prepublishOnly": "pnpm build"
},
"typeScriptVersion": "3.7",
"devDependencies": {
"@types/node": "^20.1.1",
"pino": "^8.14.1",
"pnpm": "^8.5.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.5",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"rotating-file-stream": "^3.1.0"
}
}