nextjs-cookie-consent
Version:
A GDPR/DSGVO-compliant cookie consent banner for Next.js
50 lines (49 loc) • 1.2 kB
JSON
{
"name": "nextjs-cookie-consent",
"version": "2.0.0",
"description": "A GDPR/DSGVO-compliant cookie consent banner for Next.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && cp -r src/styles dist/",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"No tests yet\"",
"lint": "echo \"No linting yet\""
},
"keywords": [
"nextjs",
"cookie",
"consent",
"gdpr",
"dsgvo",
"privacy",
"react",
"typescript"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/nextjs-cookie-consent.git"
},
"bugs": {
"url": "https://github.com/yourusername/nextjs-cookie-consent/issues"
},
"homepage": "https://github.com/yourusername/nextjs-cookie-consent#readme"
}