chore: optimize turborepo (#8286)

This commit is contained in:
Aaron 2025-12-10 18:35:14 +07:00 committed by GitHub
parent 20510bb2dd
commit ff544c98b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 235 additions and 68 deletions

View file

@ -4,9 +4,20 @@
"license": "AGPL-3.0",
"description": "Shared state shared across multiple apps internally",
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"check:lint": "eslint . --max-warnings=191",
"check:types": "tsc --noEmit",
"check:format": "prettier --check .",
@ -28,6 +39,7 @@
"@plane/typescript-config": "workspace:*",
"@types/lodash-es": "catalog:",
"@types/node": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
}
}