Files
dealplustech/dealplustech-astro/node_modules/astro-consent/package.json
Kunthawat b2e427791b feat: Add complete PDPA compliance pages
- Admin dashboard (/admin/consent-logs) with password auth
- Consent API (/api/consent) with SQLite + IP hashing
- Privacy Policy (Thai) - PDPA Section 36 compliant
- Terms & Conditions (Thai) - 9 standard clauses
- .env.example template with Umami placeholder

All pages preserve current design system.
2026-03-10 21:28:23 +07:00

61 lines
1.3 KiB
JSON

{
"name": "astro-consent",
"version": "1.0.17",
"description": "A privacy-first, GDPR-compliant cookie consent banner for Astro with a built-in preferences modal, zero dependencies, and full theme control.",
"type": "module",
"author": {
"name": "Velohost",
"url": "https://velohost.co.uk"
},
"license": "MIT",
"homepage": "https://velohost.co.uk/",
"repository": {
"type": "git",
"url": "git+https://github.com/velohost/astro-consent.git"
},
"bugs": {
"url": "https://github.com/velohost/astro-consent/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"astro-consent": "dist/cli.cjs"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cli.json && mv dist/cli.js dist/cli.cjs"
},
"keywords": [
"astro",
"astro-integration",
"cookie-banner",
"cookie-consent",
"gdpr",
"privacy",
"analytics-consent",
"marketing-consent",
"withastro",
"velohost"
],
"peerDependencies": {
"astro": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@types/node": "^25.2.1",
"astro": "^5.16.6"
},
"engines": {
"node": ">=18.0.0"
}
}