photos/package.json
Michael Mainguy 96e6f4676a Add native Web Share API for photo sharing
- Install react-share library and add native sharing to ImageModal
- Replace Facebook-specific sharing with Web Share API for broader compatibility
- Extract GPS location from EXIF data for enhanced share text
- Support file sharing with fallbacks to URL/clipboard for unsupported devices
- Add smart share text generation with location coordinates and camera info
- Perfect for private hosts - shares actual files without external URLs
- Update CLAUDE.md with completed roadmap items and coding standards

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-27 13:04:31 -05:00

38 lines
856 B
JSON

{
"name": "photos",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@tabler/icons-react": "^3.34.1",
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "^12.2.0",
"exif-reader": "^2.0.2",
"glob": "^11.0.3",
"next": "^15.5.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-share": "^5.2.2",
"sharp": "^0.34.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.12",
"@types/node": "^24.3.0",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.8",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.2"
}
}