mono/packages/auth-ui/package.json

34 lines
818 B
JSON

{
"name": "@mono/auth-ui",
"version": "0.1.0",
"private": true,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.tsx --format cjs,esm --dts",
"dev": "tsup src/index.tsx --format cjs,esm --dts --watch",
"clean": "rm -rf dist",
"lint": "eslint src/",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@mono/auth-core": "0.1.0",
"react-hook-form": "^7.50.0",
"zod": "^3.24.2",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"next": "^14.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}