mirror of
https://github.com/yusufipk/YTChatHub.git
synced 2026-09-11 19:06:14 +00:00
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "youtube-client",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "High-performance YouTube Live chat client for streamers.",
|
|
"license": "MIT",
|
|
"packageManager": "[email protected]",
|
|
"scripts": {
|
|
"dev": "concurrently \"pnpm dev:backend\" \"pnpm dev:client\"",
|
|
"dev:backend": "tsx backend/src/index.ts",
|
|
"dev:client": "next dev client",
|
|
"build": "pnpm build:backend && pnpm build:client",
|
|
"build:backend": "tsc -p backend/tsconfig.build.json",
|
|
"build:client": "next build client",
|
|
"start:backend": "node backend/dist/index.js",
|
|
"start:client": "next start client",
|
|
"lint": "next lint client"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^11.1.0",
|
|
"better-sqlite3": "^12.4.1",
|
|
"eventemitter3": "^5.0.1",
|
|
"fastify": "^5.6.1",
|
|
"next": "^15.5.4",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"youtubei.js": "^15.1.1",
|
|
"zod": "^4.1.11"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.16.5",
|
|
"@types/react": "19.2.0",
|
|
"autoprefixer": "^10.4.21",
|
|
"concurrently": "^8.2.2",
|
|
"postcss": "^8.5.6",
|
|
"tailwindcss": "^4.1.14",
|
|
"tsx": "^4.19.1",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|