mirror of
https://github.com/Anil-matcha/Open-Generative-AI.git
synced 2026-05-07 01:17:18 +00:00
- Migrated from Vite/vanilla JS to Next.js App Router - Added packages/studio: shared React component library (ImageStudio, VideoStudio, LipSyncStudio, CinemaStudio) - BYOK flow via StandaloneShell (localStorage API key) + ApiKeyModal - Fixed dropdown clipping caused by overflow-x-auto on controls row - Fixed dropdown background to solid bg-[#111] (was glass/transparent) - Renamed Cinema tab to Cinema Studio - Updated README: architecture, quick start port (3000), tech stack Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
823 B
JSON
33 lines
823 B
JSON
{
|
|
"name": "studio",
|
|
"version": "1.0.0",
|
|
"description": "Open Higgsfield AI studio components for Muapi",
|
|
"main": "src/index.js",
|
|
"module": "src/index.js",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build:css": "tailwindcss -i ./src/tailwind.css -o ./dist/tailwind.css --minify",
|
|
"build": "npm run build:css && babel src --out-dir dist --extensions .js,.jsx"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"axios": "^1.7.0",
|
|
"react-icons": "^5.0.1",
|
|
"react-hot-toast": "^2.4.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18.0.0",
|
|
"react-dom": ">=18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.28.3",
|
|
"@babel/preset-env": "^7.28.5",
|
|
"@babel/preset-react": "^7.28.5",
|
|
"autoprefixer": "^10.4.14",
|
|
"postcss": "^8.4.24",
|
|
"tailwindcss": "^3.3.3"
|
|
}
|
|
}
|