Files
YTChatHub/package.json
T
dependabot[bot] 46c477e919 chore(deps): bump the npm_and_yarn group across 1 directory with 6 updates
Bumps the npm_and_yarn group with 3 updates in the / directory: [@fastify/static](https://github.com/fastify/fastify-static), [fastify](https://github.com/fastify/fastify) and [next](https://github.com/vercel/next.js).


Updates `@fastify/static` from 8.3.0 to 10.1.2
- [Release notes](https://github.com/fastify/fastify-static/releases)
- [Commits](https://github.com/fastify/fastify-static/compare/v8.3.0...v10.1.2)

Updates `fastify` from 5.8.5 to 5.12.1
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](https://github.com/fastify/fastify/compare/v5.8.5...v5.12.1)

Updates `next` from 15.5.16 to 15.5.21
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/compare/v15.5.16...v15.5.21)

Updates `fast-uri` from 3.1.2 to 3.1.7
- [Release notes](https://github.com/fastify/fast-uri/releases)
- [Commits](https://github.com/fastify/fast-uri/compare/v3.1.2...v3.1.7)

Updates `find-my-way` from 9.6.0 to 9.9.0
- [Release notes](https://github.com/delvedor/find-my-way/releases)
- [Commits](https://github.com/delvedor/find-my-way/compare/v9.6.0...v9.9.0)

Updates `nanoid` from 3.3.12 to 3.3.18
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/3.3.18/CHANGELOG.md)
- [Commits](https://github.com/ai/nanoid/compare/3.3.12...3.3.18)

---
updated-dependencies:
- dependency-name: "@fastify/static"
  dependency-version: 10.1.2
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: fastify
  dependency-version: 5.12.1
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-version: 15.5.21
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: fast-uri
  dependency-version: 3.1.7
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: find-my-way
  dependency-version: 9.9.0
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: nanoid
  dependency-version: 3.3.18
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <[email protected]>
2026-09-02 19:08:26 +00:00

41 lines
1.3 KiB
JSON

{
"name": "youtube-client",
"version": "0.2.0",
"private": true,
"description": "YouTube Live chat client for streamers with an OBS overlay.",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"dev": "concurrently -n backend,client -c blue,magenta \"pnpm dev:backend\" \"pnpm dev:client\"",
"dev:backend": "tsx watch backend/src/index.ts",
"dev:client": "NEXT_PUBLIC_BACKEND_URL=http://localhost:4100 next dev client -p 3100",
"build": "pnpm build:client && pnpm build:backend",
"build:backend": "tsc -p backend/tsconfig.build.json",
"build:client": "next build client",
"start": "node backend/dist/backend/src/index.js",
"lint": "next lint client",
"typecheck": "tsc -p backend/tsconfig.json --noEmit && tsc -p client/tsconfig.json --noEmit",
"test": "tsx --test backend/src/**/*.test.ts"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/static": "^10.1.2",
"eventemitter3": "^5.0.1",
"fastify": "^5.12.1",
"lucide-react": "^0.544.0",
"next": "^15.5.21",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"youtubei.js": "^15.1.1"
},
"devDependencies": {
"@types/node": "^20.16.5",
"@types/react": "19.2.0",
"concurrently": "^8.2.2",
"eslint": "^9.36.0",
"eslint-config-next": "^15.5.4",
"tsx": "^4.19.1",
"typescript": "^5.9.3"
}
}