mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
* feat: migrat to tsdown to tsup * fix: build scripts * fix: lock file fixes * fix: adding build process to i18n and propel packages * fix: lint warning * chore: update services module entry points * fix: lock file * fix: lock file * fix: remove tsc from build * fix: tsdown configs * fix: remove tsc step from build process --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: Aaron Reisman <aaron.reisman@plane.so>
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@plane/logger",
|
|
"version": "1.0.0",
|
|
"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",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"check:lint": "eslint . --max-warnings 0",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"fix:lint": "eslint . --fix",
|
|
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"express-winston": "^4.2.0",
|
|
"winston": "^3.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.14.9",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|