UNPKG

@mikestraczek/cms-auth

Version:

Authentication and user management for the CMS template

63 lines (62 loc) 1.33 kB
{ "name": "@mikestraczek/cms-auth", "version": "1.0.23", "description": "Authentication and user management for the CMS template", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "scripts": { "build": "tsup", "dev": "tsup --watch", "lint": "eslint src", "typecheck": "tsc --noEmit" }, "keywords": [ "cms", "auth", "authentication", "user", "nextauth" ], "author": "Mike Straczek", "license": "MIT", "files": [ "dist" ], "exports": { ".": { "types": "./dist/index.d.mts", "import": "./dist/index.mjs" }, "./client": { "types": "./dist/client.d.mts", "import": "./dist/client.mjs" }, "./server": { "types": "./dist/server.d.mts", "import": "./dist/server.mjs" } }, "publishConfig": { "access": "public" }, "dependencies": { "@mikestraczek/cms-core": "^1.0.8", "bcryptjs": "^3.0.2", "next-auth": "^5.0.0-beta.29", "zod": "^3.25.76" }, "peerDependencies": { "react": "^19.1.0", "react-dom": "^19.1.0", "next": "^15.4.3" }, "devDependencies": { "@types/bcryptjs": "^3.0.0", "@types/react": "^19.1.8", "@types/react-dom": "^19.1.6", "eslint": "^9.31.0", "tsup": "^8.5.0", "typescript": "^5.8.3" } }