Initial Commit

This commit is contained in:
2026-01-27 13:24:03 -05:00
commit c85b877dc0
42 changed files with 5689 additions and 0 deletions

48
package.json Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "privacy-policy-analyzer",
"version": "1.0.0",
"description": "AI-powered privacy policy analyzer with A-E grading",
"main": "src/app.js",
"type": "module",
"scripts": {
"start": "bun run src/app.js",
"dev": "bun run --watch src/app.js",
"migrate": "bun run src/scripts/migrate.js",
"healthcheck": "bun run src/scripts/healthcheck.js",
"test": "bun test"
},
"dependencies": {
"openai": "^4.28.0",
"postgres": "^3.4.3",
"meilisearch": "^0.37.0",
"ioredis": "^5.3.2",
"ejs": "^3.1.9",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"uuid": "^9.0.1",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"bun": ">=1.0.0"
},
"keywords": [
"privacy",
"policy",
"analyzer",
"ai",
"openai",
"bun",
"postgresql",
"meilisearch",
"redis"
],
"author": "",
"license": "MIT",
"private": true
}