2025-09-17 18:43:43 +09:00
|
|
|
{
|
|
|
|
|
"name": "@customer-portal/logging",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "Centralized logging utilities for customer portal",
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"private": true,
|
|
|
|
|
"sideEffects": false,
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.mjs",
|
|
|
|
|
"require": "./dist/index.js",
|
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2025-11-19 17:14:36 +09:00
|
|
|
"build": "tsc --build --force",
|
2025-09-17 18:43:43 +09:00
|
|
|
"dev": "tsc -w --preserveWatchOutput",
|
2025-11-19 17:14:36 +09:00
|
|
|
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
2025-09-19 16:34:10 +09:00
|
|
|
"type-check": "NODE_OPTIONS=\"--max-old-space-size=2048 --max-semi-space-size=128\" tsc --project tsconfig.json --noEmit",
|
2025-09-17 18:43:43 +09:00
|
|
|
"test": "echo \"No tests specified for logging package\"",
|
|
|
|
|
"lint": "eslint .",
|
|
|
|
|
"lint:fix": "eslint . --fix"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"pino": "^9.9.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"typescript": "^5.9.2"
|
|
|
|
|
}
|
|
|
|
|
}
|