Initial commit: Image moderation service using local vision LLM

This commit is contained in:
2026-03-29 21:57:57 -04:00
commit 445970b7d4
9 changed files with 2888 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "image-moderation-service",
"version": "1.0.0",
"description": "Standalone image moderation service using local vision AI",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"dependencies": {
"dotenv": "^16.4.7",
"express": "^5.1.0",
"multer": "^1.4.5-lts.2",
"node-windows": "^1.0.0-beta.8",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/multer": "^1.4.12",
"tsx": "^4.19.4",
"typescript": "^5.8.2"
}
}