Files
chatrooms/package.json
Alexander Zinn d8fe4a9dc6 Create WebSocket Server
- Created a WebSocket server with connection handling and message broadcasting
- Added frontend files including HTML, TypeScript, and CSS for a WebSocket test client
- Configured package.json for both server and frontend with necessary scripts and dependencies
- Introduced Prettier configuration for code formatting
- Established a basic structure for handling WebSocket connections and messages
2025-09-05 23:44:28 -04:00

30 lines
735 B
JSON

{
"name": "@techniker-me/chatrooms",
"version": "0.0.0",
"description": "A collections of chatting rooms",
"repository": {
"type": "git",
"url": "https://git.techniker.me/techniker-me/chatrooms.git"
},
"license": "ISC",
"author": "Alexander Zinn",
"type": "module",
"main": "index.js",
"scripts": {
"dev:web": "npm run dev --workspace=web",
"dev:server": "npm run dev --workspace=server",
"lint:server": "npm run lint --workspace=server",
"lint:fix:server": "npm run lint:fix --workspace=server"
},
"workspaces": [
"server",
"frontend/web"
],
"devDependencies": {
"@types/node": "24.3.1",
"nodemon": "3.1.10",
"ts-node": "10.9.2",
"typescript": "5.9.2"
}
}