Got a working pnpm/bun setup

This commit is contained in:
2026-05-03 22:18:26 -04:00
parent e89097619b
commit 52cd3cf299
7 changed files with 275 additions and 6074 deletions

View File

View File

@@ -0,0 +1,20 @@
{
"name": "guild-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.33.2",
"dependencies": {
"@types/node": "^25.6.0",
"elysia": "^1.4.28",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}

View File

@@ -0,0 +1,6 @@
import { Elysia } from "elysia";
const app = new Elysia().get("/", "Hello world!");
app.listen(3000);
export default app;