zemenay-blog
Version:
Zemenay Blog as a pluggable Next.js package (dedicated DB)
116 lines (115 loc) • 4.47 kB
JSON
{
"name": "zemenay-blog",
"version": "0.1.2",
"private": false,
"type": "module",
"main": "./components/index.ts",
"types": "./components/index.ts",
"sideEffects": true,
"description": "Zemenay Blog as a pluggable Next.js package (dedicated DB)",
"keywords": [
"blog",
"nextjs",
"react",
"typescript",
"tailwind",
"prisma",
"zemenay"
],
"author": "Team Dev - Zemenay Community",
"homepage": "https://github.com/EleniAndualem/ZemenayBlog#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/EleniAndualem/ZemenayBlog.git"
},
"bugs": {
"url": "https://github.com/EleniAndualem/ZemenayBlog/issues"
},
"license": "MIT",
"peerDependencies": {
"next": ">=15.0.0",
"react": ">=18.3.1",
"react-dom": ">=18.3.1",
"tailwindcss": ">=3.4.0"
},
"dependencies": {
"@prisma/client": "latest",
"prisma": "latest",
"clsx": "^2.1.1",
"tailwind-merge": "^2.5.5",
"lucide-react": "^0.454.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"cookies-next": "^4.1.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.4",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"class-variance-authority": "^0.7.0",
"date-fns": "^3.6.0",
"react-day-picker": "^8.10.0",
"recharts": "^2.12.7",
"sonner": "^1.4.3",
"tailwindcss-animate": "^1.0.7"
},
"exports": {
".": "./components/index.ts",
"./next/*": "./next/*",
"./components": "./components/index.ts",
"./components/*": "./components/*",
"./components/blog": "./components/blog/index.ts",
"./components/ui": "./components/ui/index.ts",
"./hooks": "./hooks/index.ts",
"./hooks/*": "./hooks/*",
"./lib": "./lib/index.ts",
"./lib/*": "./lib/*",
"./ui/*": "./ui/*",
"./auth/*": "./auth/*",
"./prisma/*": "./prisma/*",
"./styles": "./styles/index.css",
"./styles/globals.css": "./styles/globals.css",
"./styles/*": "./styles/*",
"./scripts/*": "./scripts/*",
"./public/*": "./public/*",
"./components/NewsletterForm": "./components/NewsletterForm.tsx",
"./components/RichTextEditor": "./components/RichTextEditor.tsx",
"./components/theme-provider": "./components/theme-provider.tsx",
"./next/app/api/categories/route": "./next/app/api/categories/route.ts",
"./next/app/api/tags/route": "./next/app/api/tags/route.ts",
"./next/app/api/posts/route": "./next/app/api/posts/route.ts",
"./next/app/api/posts/[slug]/route": "./next/app/api/posts/[slug]/route.ts",
"./next/app/api/posts/[slug]/comments/route": "./next/app/api/posts/[slug]/comments/route.ts",
"./next/app/api/posts/[slug]/like/route": "./next/app/api/posts/[slug]/like/route.ts",
"./next/app/api/posts/[slug]/view/route": "./next/app/api/posts/[slug]/view/route.ts",
"./next/app/categories/page": "./next/app/categories/page.tsx",
"./next/app/profile/page": "./next/app/profile/page.tsx",
"./next/app/auth/login/page": "./next/app/auth/login/page.tsx",
"./next/app/auth/register/page": "./next/app/auth/register/page.tsx",
"./next/app/api/newsletter/subscribe/route": "./next/app/api/newsletter/subscribe/route.ts",
"./next/app/page": "./next/app/page.tsx",
"./next/app/error": "./next/app/error.tsx",
"./next/app/not-found": "./next/app/not-found.tsx"
}
}