Initial commit

This commit is contained in:
2026-02-01 00:25:52 +00:00
commit c2ba9dbeea
18 changed files with 2461 additions and 0 deletions

14
package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"devDependencies": {
"typescript": "^5.9.3"
},
"scripts": {
"dev": "tsc --watch & tsc -b src/srv/ --watch & http-server src & node --watch src/srv/proxy.js",
"build": "tsc"
},
"dependencies": {
"compression": "^1.8.1",
"cors": "^2.8.6",
"express": "^5.2.1"
}
}