obs-ss-plugin-webui/package.json
Decobus a16bdcc7b9
Some checks failed
Lint and Build / build (pull_request) Failing after 4m19s
Fix CI build failures on self-hosted runners
- Move bufferutil to optionalDependencies (not required for core functionality)
- Add --no-optional flag to npm ci in workflow to skip native dependencies
- This avoids needing C++ build tools on CI runners

The bufferutil package is a performance optimization for WebSocket but not required.

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

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

51 lines
1.4 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",
"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"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
},
"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"
}
}