fix: update tsup build packages (#7438)

This commit is contained in:
sriram veeraghanta 2025-07-18 15:04:31 +05:30 committed by GitHub
parent 07c80bb02c
commit df4ea1f7ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 81 additions and 61 deletions

View file

@ -5,6 +5,8 @@
"private": true,
"main": "./src/index.ts",
"scripts": {
"build": "tsc --noEmit && tsup --minify",
"dev": "tsup --watch",
"check:lint": "eslint . --max-warnings 0",
"check:types": "tsc --noEmit",
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
@ -15,5 +17,11 @@
"dependencies": {
"@plane/constants": "*",
"axios": "^1.8.3"
},
"devDependencies": {
"@plane/eslint-config": "*",
"@plane/typescript-config": "*",
"tsup": "8.4.0",
"typescript": "5.8.3"
}
}