- 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>
23 lines
549 B
JSON
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"
|
|
}
|
|
}
|