Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
395 changes: 162 additions & 233 deletions ROADMAP.md

Large diffs are not rendered by default.

36 changes: 33 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
"typescript": "^5.4.0"
},
"dependencies": {
"@types/ws": "^8.18.1",
"bcryptjs": "^3.0.3",
"pg": "^8.20.0"
"pg": "^8.20.0",
"ws": "^8.20.0"
Comment on lines +45 to +48

Copilot AI May 1, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@types/ws is a TypeScript-only package and typically belongs in devDependencies (it isn't required at runtime). Keeping it in dependencies makes it part of production installs and also pulls @types/node into prod via transitive deps. Consider moving @types/ws to devDependencies while keeping ws in dependencies.

Copilot uses AI. Check for mistakes.
}
}
Loading
Loading