29 lines
667 B
JSON
29 lines
667 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|