feat: sample backend package w/ express

This commit is contained in:
Benjamin Singleton 2025-06-10 17:11:14 -05:00
parent 100b326baf
commit 6dc71c32cc
9 changed files with 743 additions and 16 deletions

View file

@ -5,17 +5,20 @@
"type": "module",
"exports": {
"./*": {
"types": "./dist/*.d.ts",
"types": "./src/*.ts",
"import": "./dist/*.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm exec tsc",
"dev": "pnpm exec tsc --watch"
"build": "rm -rf ./dist & pnpm exec tsc",
"watch": "rm -rf ./dist & pnpm exec tsc --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.11.0"
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"typescript": "~5.8.3"
}
}