platform-codebase/features/truth-validation/package.json
Lilith 3e1f0b13c6 ♻️ Refactor truth-validation scripts and LLM corrector
Improve locale validation workflow:
- Restructure validate-locales script for better modularity
- Enhance LLM corrector with improved prompting
- Update API routes and fact definitions
- Add runtime type safety improvements

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

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

23 lines
977 B
JSON

{
"name": "@lilith/truth-validation",
"version": "0.1.0",
"private": true,
"description": "Truth validation services for platform content",
"type": "module",
"scripts": {
"services:start": "tsx scripts/service-manager.ts start",
"services:stop": "tsx scripts/service-manager.ts stop",
"services:status": "tsx scripts/service-manager.ts status",
"services:ensure": "tsx scripts/service-manager.ts ensure",
"validate:locales": "tsx scripts/service-manager.ts ensure && tsx scripts/validate-locales.ts",
"validate:locales:fix": "tsx scripts/service-manager.ts ensure && tsx scripts/validate-locales.ts --fix",
"validate:locales:reasoning": "tsx scripts/service-manager.ts ensure && tsx scripts/validate-locales.ts --reasoning",
"precommit": "tsx scripts/precommit-validate.ts",
"test": "pnpm -r test",
"test:unit": "pnpm -r test",
"test:e2e": "tsx scripts/e2e-test.ts"
},
"devDependencies": {
"tsx": "^4.19.0"
}
}