@akms/logger-winston 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akms/logger-winston",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
"test:verbose": "cross-env SERVER_ENV=production LOG_LEVEL=verbose tsx tests/basic.test.ts",
|
|
20
20
|
"test:winston-features": "cross-env LOG_USE_FILE=true LOG_SENSITIVE_KEYS=password,secret,token,apiKey LOG_USE_SINGLE_LINE_OBJ=true tsx tests/winston-features.test.ts"
|
|
21
21
|
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"winston": "^3.17.0",
|
|
24
|
+
"winston-daily-rotate-file": "^5.0.0"
|
|
25
|
+
},
|
|
22
26
|
"devDependencies": {
|
|
23
27
|
"@types/node": "^22.15.3",
|
|
24
28
|
"winston": "^3.17.0",
|
|
@@ -31,9 +35,5 @@
|
|
|
31
35
|
"tsx": "^4.20.6",
|
|
32
36
|
"typescript": "^5.8.3"
|
|
33
37
|
},
|
|
34
|
-
"peerDependencies": {
|
|
35
|
-
"winston": "^3.17.0",
|
|
36
|
-
"winston-daily-rotate-file": "^5.0.0"
|
|
37
|
-
},
|
|
38
38
|
"license": "MIT"
|
|
39
39
|
}
|