Initial code

This commit is contained in:
Aslan 2025-12-22 21:58:15 -05:00
parent f4a1afe71b
commit c6d3e066c9
21 changed files with 2446 additions and 0 deletions

31
package.json Normal file
View file

@ -0,0 +1,31 @@
{
"name": "tether",
"version": "0.1.0",
"description": "Communication server using the Nexlink protocol",
"repository": {
"type": "git",
"url": "https://git.aslan2142.space/aslan/tether"
},
"license": "GPL-3.0-only",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "npx tsc && node --env-file=.env dist/index.js"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/pg": "^8.16.0",
"dotenv": "^17.2.3",
"prisma": "^7.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"fastify": "^5.6.2",
"pg": "^8.16.3"
}
}