36 lines
934 B
JSON
36 lines
934 B
JSON
{
|
|
"name": "@link-stack/logger",
|
|
"version": "3.3.5",
|
|
"description": "Shared logging utility for Link Stack monorepo",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.js",
|
|
"import": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
"lint": "eslint . --ext .ts",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"pino": "^10.0.0",
|
|
"pino-pretty": "^13.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@link-stack/eslint-config": "workspace:*",
|
|
"@link-stack/typescript-config": "workspace:*",
|
|
"@types/node": "^24.7.0",
|
|
"eslint": "^9.37.0",
|
|
"tsup": "^8.5.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|