CoolFace
Apppublic

Mistral-AI-Game-Jam/DefendDaniel2

sourceHugging Faceupdated 2y agoView on Hugging Face
7likes
package.json34 linesDownload Raw Back to root
1{2  "name": "myapp",3  "version": "0.1.0",4  "private": true,5  "scripts": {6    "dev": "next dev --turbopack",7    "build": "next build",8    "start": "next start",9    "lint": "next lint"10  },11  "dependencies": {12    "@mistralai/mistralai": "^1.4.0",13    "elevenlabs": "^1.50.4",14    "elevenlabs-client": "^0.0.13",15    "ffmpeg-static": "^5.2.0",16    "fluent-ffmpeg": "^2.1.3",17    "next": "15.1.6",18    "react": "^19.0.0",19    "react-dom": "^19.0.0"20  },21  "devDependencies": {22    "@eslint/eslintrc": "^3",23    "@types/fluent-ffmpeg": "^2.1.27",24    "@types/node": "^20",25    "@types/react": "^19",26    "@types/react-dom": "^19",27    "eslint": "^9",28    "eslint-config-next": "15.1.6",29    "postcss": "^8",30    "tailwindcss": "^3.4.1",31    "typescript": "^5"32  }33}34