monorepo/packages/plugin-custom-logger/package.json
2024-12-09 12:01:58 +00:00

32 lines
665 B
JSON

{
"name": "@wyvern/plugin-custom-logger",
"version": "0.0.0",
"type": "module",
"private": true,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"typecheck": "tsc --noEmit --skipLibCheck"
},
"exports": {
".": {
"default": "./dist/src/index.js",
"types": "./src/index.ts"
},
"./register": {
"default": "./dist/src/register.js",
"types": "./src/register.ts"
}
},
"dependencies": {
"@datalust/winston-seq": "^2.0.0",
"@wyvern/config": "*",
"winston": "^3.17.0",
"winston-transport-sentry-node": "^3.0.0"
}
}