platform-codebase/@packages/@infrastructure/seo-client/package.json
Quinn Ftw b112478cef feat(@packages): add i18n landing locales and SEO client
- Add landing-specific i18n locale files (apps, categories, privacy,
  profile, roadmap, shop, terms, values)
- Add seo-client package with React hooks for SEO metadata
- Export truth-client validation API for runtime usage
- Fix types tsconfig to use local base config

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 01:29:45 -08:00

36 lines
716 B
JSON

{
"name": "@lilith/seo-client",
"version": "0.1.0",
"description": "SEO service client for Lilith Platform",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./react": {
"types": "./src/hooks.ts",
"default": "./src/hooks.ts"
}
},
"files": [
"src"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"dependencies": {
"@tanstack/react-query": "^5.0.0"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
}
}