talk2me/package.json
Adolfo Delorenzo 05ad940079 Major improvements: TypeScript, animations, notifications, compression, GPU optimization
- Added TypeScript support with type definitions and build process
- Implemented loading animations and visual feedback
- Added push notifications with user preferences
- Implemented audio compression (50-70% bandwidth reduction)
- Added GPU optimization for Whisper (2-3x faster transcription)
- Support for NVIDIA, AMD (ROCm), and Apple Silicon GPUs
- Removed duplicate JavaScript code (15KB reduction)
- Enhanced .gitignore for Node.js and VAPID keys
- Created documentation for TypeScript and GPU support

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-02 21:18:16 -06:00

26 lines
521 B
JSON

{
"name": "talk2me",
"version": "1.0.0",
"description": "Real-time voice translation web application",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"dev": "tsc --watch",
"clean": "rm -rf static/js/dist",
"type-check": "tsc --noEmit"
},
"keywords": [
"translation",
"voice",
"pwa",
"typescript"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"dependencies": {}
}