36 lines
913 B
JSON
36 lines
913 B
JSON
|
|
{
|
||
|
|
"name": "@link-stack/logger",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"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": "^9.5.0",
|
||
|
|
"pino-pretty": "^13.0.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@link-stack/eslint-config": "*",
|
||
|
|
"@link-stack/typescript-config": "*",
|
||
|
|
"@types/node": "^22.10.5",
|
||
|
|
"eslint": "^9.17.0",
|
||
|
|
"tsup": "^8.3.5",
|
||
|
|
"typescript": "^5.7.3"
|
||
|
|
},
|
||
|
|
"publishConfig": {
|
||
|
|
"access": "public"
|
||
|
|
}
|
||
|
|
}
|