mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
45 lines
963 B
JSON
45 lines
963 B
JSON
{
|
|
"name": "@plane/logger",
|
|
"version": "0.25.3",
|
|
"license": "AGPL-3.0",
|
|
"description": "Logger shared across multiple apps internally",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"lint:errors": "eslint src --ext .ts,.tsx --quiet",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"winston": "^3.17.0",
|
|
"winston-daily-rotate-file": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "*",
|
|
"@types/node": "^22.5.4",
|
|
"tsup": "8.3.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"tsup": {
|
|
"entry": [
|
|
"src/index.ts"
|
|
],
|
|
"format": [
|
|
"cjs",
|
|
"esm"
|
|
],
|
|
"dts": true,
|
|
"splitting": false,
|
|
"sourcemap": true,
|
|
"clean": true,
|
|
"minify": false
|
|
}
|
|
}
|