29 lines
676 B
JSON
Executable file
29 lines
676 B
JSON
Executable file
{
|
|
"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.19.7",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|