refactor: refine configuration for simpler package
This commit is contained in:
parent
68c514ac50
commit
f437cf5886
19
dist/package.json
vendored
Normal file
19
dist/package.json
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"name": "nestlogged",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "A NestJS Logger Decorator Library",
|
||||||
|
"main": "index.js",
|
||||||
|
"repository": "https://github.com/worplo/nestlogged",
|
||||||
|
"author": "Shinwoo PARK",
|
||||||
|
"license": "MIT",
|
||||||
|
"private": false,
|
||||||
|
"dependencies": {
|
||||||
|
"@nestjs/common": "^10.2.8",
|
||||||
|
"reflect-metadata": "^0.1.13",
|
||||||
|
"rxjs": "^7.8.1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^20.9.1",
|
||||||
|
"typescript": "^5.2.2"
|
||||||
|
}
|
||||||
|
}
|
@ -2,11 +2,11 @@
|
|||||||
"name": "nestlogged",
|
"name": "nestlogged",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "A NestJS Logger Decorator Library",
|
"description": "A NestJS Logger Decorator Library",
|
||||||
"main": "index.js",
|
"main": "./dist/index.js",
|
||||||
"repository": "https://github.com/worplo/nestlogged",
|
"repository": "https://github.com/worplo/nestlogged",
|
||||||
"author": "Shinwoo PARK",
|
"author": "Shinwoo PARK",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"private": false,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nestjs/common": "^10.2.8",
|
"@nestjs/common": "^10.2.8",
|
||||||
"reflect-metadata": "^0.1.13",
|
"reflect-metadata": "^0.1.13",
|
||||||
@ -17,6 +17,7 @@
|
|||||||
"typescript": "^5.2.2"
|
"typescript": "^5.2.2"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc"
|
"build": "tsc",
|
||||||
|
"publish": "tsc && yarn publish dist"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,9 @@
|
|||||||
"target": "ES2021",
|
"target": "ES2021",
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src"
|
"rootDir": "./src",
|
||||||
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
},
|
},
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules"
|
"node_modules"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user