Add messaging

This commit is contained in:
Aslan 2026-01-11 14:17:13 -05:00
parent 23128f25e1
commit 5733975aa0
29 changed files with 986 additions and 8 deletions

View file

@ -1,6 +1,6 @@
{
"name": "tether",
"version": "0.3.7",
"version": "0.4.0",
"description": "Communication server using the Nexlink protocol",
"repository": {
"type": "git",
@ -19,6 +19,7 @@
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.3",
"@types/pg": "^8.16.0",
"@types/ws": "^8.18.1",
"dotenv": "^17.2.3",
"prisma": "^7.2.0",
"ts-node": "^10.9.2",
@ -27,12 +28,14 @@
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/websocket": "^11.2.0",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"argon2": "^0.44.0",
"fastify": "^5.6.2",
"jsonwebtoken": "^9.0.3",
"pg": "^8.16.3",
"uuid": "^13.0.0"
"uuid": "^13.0.0",
"ws": "^8.19.0"
}
}