obs-ss-plugin-webui/package.json
Decobus f25fbcc720
Some checks failed
Lint and Build / build (pull_request) Failing after 1m25s
Revert CI workaround now that build-essential is installed
- Restore bufferutil as regular dependency for WebSocket performance
- Remove --no-optional flag from npm ci
- Self-hosted runners now have proper C++ build tools installed

This enables full native module support and optimal WebSocket performance.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-20 01:45:39 -04:00

49 lines
1.3 KiB
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",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --watchAll=false",
"create-sat-summer-2025-tables": "tsx scripts/createSatSummer2025Tables.ts"
},
"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",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@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",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"postcss": "^8.5.1",
"tailwindcss": "^4.0.0",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}