New feature module for content moderation with server and shared components. Migrated from text-utils package. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
675 B
JSON
29 lines
675 B
JSON
{
|
|
"name": "@lilith/content-moderation",
|
|
"version": "0.1.0",
|
|
"description": "Content moderation with truth validation integration",
|
|
"type": "module",
|
|
"main": "./server/src/index.ts",
|
|
"types": "./server/src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./server/src/index.ts",
|
|
"import": "./server/src/index.ts"
|
|
},
|
|
"./shared": {
|
|
"types": "./shared/src/index.ts",
|
|
"import": "./shared/src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/truth-client": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|