obs-ss-plugin-webui/package.json
Decobus 1d4b1eefba
Some checks failed
Lint and Build / build (20) (push) Has been cancelled
Lint and Build / build (22) (push) Has been cancelled
Initial commit - OBS Source Switcher Plugin UI
Complete Next.js application for managing OBS Source Switcher
- Stream management with multiple screen layouts
- Team management CRUD operations
- SQLite database integration
- OBS WebSocket API integration
- Updated to latest versions (Next.js 15.4.1, React 19.1.0, Tailwind CSS 4.0.0)
- Enhanced .gitignore for privacy and development
2025-07-15 22:15:57 -04:00

36 lines
880 B
JSON

{
"name": "obs-source-switcher",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.11",
"bufferutil": "^4.0.8",
"next": "^15.4.1",
"obs-websocket-js": "^5.0.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"ws": "^8.18.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.20.0",
"eslint-config-next": "^15.4.1",
"eslint-config-prettier": "^10.0.1",
"postcss": "^8.5.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.8.3"
}
}