26 lines
555 B
JSON
26 lines
555 B
JSON
|
{
|
||
|
"main": "dist/index.js",
|
||
|
"type": "module",
|
||
|
"imports": {
|
||
|
"#root/*": "./dist/src/*"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"dev": "npm run clean && tsc-watch --onSuccess \"tsx index.ts\"",
|
||
|
"build": "npm run clean && tsc --noEmit false",
|
||
|
"clean": "rimraf dist"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^20.8.10",
|
||
|
"rimraf": "^5.0.5",
|
||
|
"tsc-watch": "^6.0.4",
|
||
|
"tsx": "^3.14.0",
|
||
|
"typescript": "^5.2.2"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"dotenv": "^16.3.1",
|
||
|
"envalid": "^7.3.1",
|
||
|
"pino": "^8.16.1",
|
||
|
"pino-pretty": "^10.2.3"
|
||
|
}
|
||
|
}
|