nestlogged/package.json
Shinwoo PARK a304d72ca3 feat: add LoggedGuard and LoggedInterceptor decorators
Introduce new decorators `LoggedGuard` and `LoggedInterceptor` to extend logging capabilities for NestJS guards and interceptors. This enhances the logging functionality to cover more aspects of the application, improving debugging and monitoring. The version is updated to `3.2.0-beta.1` to reflect these additions.
2025-03-18 21:27:41 +09:00

31 lines
1.0 KiB
JSON

{
"name": "nestlogged",
"version": "3.2.0-beta.1",
"description": "A NestJS Logger Decorator Library",
"main": "./dist/lib/index.js",
"repository": "https://git.psw.kr/p-sw/nestlogged",
"author": "Shinwoo PARK",
"license": "MIT",
"private": true,
"dependencies": {
"@nestjs/common": "^10.2.8",
"hyperid": "^3.1.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/node": "^20.9.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"docs": "cp ./README.md ./dist/README.md",
"build": "rimraf ./dist/lib && tsc --project tsconfig.build.json",
"up": "yarn docs && yarn build && yarn npm publish dist",
"up:beta": "yarn docs && yarn build && yarn npm publish dist --tag beta",
"test": "ts-node ./src/test/index.ts"
},
"packageManager": "yarn@4.7.0+sha512.5a0afa1d4c1d844b3447ee3319633797bcd6385d9a44be07993ae52ff4facabccafb4af5dcd1c2f9a94ac113e5e9ff56f6130431905884414229e284e37bb7c9"
}