platform-codebase/features/age-verification/shared/package.json
Lilith 983c1a1576 Add age verification gate (18+) feature
- New age-verification feature with frontend-components and shared packages
- Add 'age-gate-enabled' feature flag (staging/production)
- Integrate AgeGateProvider into landing App.tsx
- Add AgeGateLoginLink component for authenticated bypass
- Add en/es locales for age-gate UI

Site-wide 18+ confirmation required for adult content platform.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 20:27:04 -08:00

23 lines
549 B
JSON

{
"name": "@lilith/age-verification",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Age verification types and utilities for the Lilith platform",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"test": "vitest run --passWithNoTests",
"lint": "eslint . --ext ts,tsx"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"vitest": "^4.0.16"
}
}