23 lines
977 B
JSON
Executable file
23 lines
977 B
JSON
Executable file
{
|
|
"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"
|
|
}
|
|
}
|