platform-codebase/features/age-verification/shared/package.json

23 lines
551 B
JSON
Executable file

{
"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.19.30",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}