omnivore/packages/utils/package.json
Timothy Atapagra 0927294546 🚀 Stable Foundation: PDF Upload, Auth, and Infrastructure Fixes
 Core Stability Achievements:
- Demo user login working (demo@omnivore.app / demo_password)
- PDF upload, viewing, highlighting, and notes fully functional
- Database persistence across container restarts
- Redis connection issues resolved

🔧 Infrastructure Improvements:
- Added PostgreSQL persistent volumes (postgres_data, postgres_replica_data)
- Fixed Redis configuration with proper URLs and missing MQ_REDIS_URL
- Enhanced demo user creation with corrected ON CONFLICT clause
- Improved PDF content handler with better title extraction

🐛 Bug Fixes:
- Fixed demo user authentication by correcting setup.sh ON CONFLICT
- Resolved Redis connection errors in API and content-fetch services
- Enhanced RSS handler Redis client with null-check safety
- Added mail server data to gitignore

📚 Documentation:
- Added development vs production guide
- Added troubleshooting documentation
- Added Cursor AI rules for consistent development

🎯 Next Phase Ready:
Stable foundation established for implementing link upload/saving functionality.
2025-07-09 16:36:49 -04:00

28 lines
710 B
JSON

{
"name": "@omnivore/utils",
"version": "1.0.0",
"description": "Utility functions for Omnivore packages.",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"test": "yarn mocha -r ts-node/register --config mocha-config.json",
"lint": "eslint src --ext ts,js,tsx,jsx",
"build": "tsc"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.0",
"@types/cookie": "^0.5.4",
"@types/node": "^22.10.7",
"chai": "^4.3.6",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"ioredis": "^5.3.2"
},
"volta": {
"extends": "../../package.json"
}
}