29 lines
841 B
JSON
29 lines
841 B
JSON
{
|
|
"name": "@ufb/shared",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
"clean": "git clean -xdf .cache .turbo dist node_modules",
|
|
"dev": "tsup src/index.ts --format cjs,esm --dts",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"lint": "eslint",
|
|
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
|
|
},
|
|
"prettier": "@ufb/prettier-config",
|
|
"devDependencies": {
|
|
"@ufb/eslint-config": "workspace:*",
|
|
"@ufb/prettier-config": "workspace:*",
|
|
"@ufb/tsconfig": "workspace:*",
|
|
"eslint": "catalog:",
|
|
"prettier": "catalog:",
|
|
"react": "^19.2.4",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|