platform-codebase/features/truth-validation/frontend-admin/package.json
Quinn Ftw 82e1143e76 refactor(truth-validation): migrate to feature-sliced architecture
Move truth-client from @packages/@infrastructure to features/truth-validation/:
- features/truth-validation/client/typescript: TS client library
- features/truth-validation/frontend-admin: Admin panel components
- features/truth-validation/ml-service: Python ML validation service
- features/truth-validation/shared: Shared types

Removes generate-facts script and README as part of cleanup.

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

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

22 lines
473 B
JSON

{
"name": "@lilith/truth-validation-admin",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
}
},
"dependencies": {
"@lilith/truth-validation-shared": "workspace:*",
"@tanstack/react-query": "^5.75.7",
"react": "^19.1.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
}
}