initial commit

This commit is contained in:
2026-07-14 21:31:59 -07:00
commit bd79966218
61 changed files with 19379 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "@lxc/server",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"dev": "tsx watch src/index.ts",
"test": "node --test test/*.test.mjs"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/static": "^8.1.1",
"@fastify/websocket": "^11.0.0",
"@laplace.live/ws": "^8.0.1",
"@lxc/protocol": "*",
"fastify": "^5.2.1",
"pg": "^8.13.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/pg": "^8.11.11",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}