Files
plane/packages/logger/package.json

41 lines
1.1 KiB
JSON
Raw Permalink Normal View History

{
"name": "@plane/logger",
2026-04-20 17:20:12 +05:30
"version": "1.3.1",
"private": true,
"description": "Logger shared across multiple apps internally",
"license": "AGPL-3.0",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
2026-03-27 17:29:55 +07:00
"dev": "tsdown --watch --no-clean",
"check:lint": "oxlint --max-warnings=0 .",
"check:types": "tsc --noEmit",
"check:format": "oxfmt --check .",
"fix:lint": "oxlint --fix .",
"fix:format": "oxfmt .",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"express-winston": "catalog:",
"winston": "catalog:"
},
"devDependencies": {
"@plane/typescript-config": "workspace:*",
"@types/express": "catalog:",
"@types/node": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
2026-03-27 17:29:55 +07:00
},
"inlinedDependencies": {
"@types/express": "4.17.23",
"@types/express-serve-static-core": "4.19.6"
}
}