claude: move to typescript

This commit is contained in:
2026-03-20 13:17:47 +01:00
parent 009b6f1b08
commit d88322fe46
14 changed files with 440 additions and 341 deletions

View File

@@ -5,9 +5,10 @@
"license": "ISC",
"author": "ericek111",
"type": "module",
"main": "src/index.js",
"main": "src/index.ts",
"scripts": {
"start": "node src/index.js",
"start": "node --experimental-strip-types src/index.ts",
"typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
@@ -15,5 +16,9 @@
"@hono/node-ws": "^1.3.0",
"fast-xml-parser": "^5.3.5",
"hono": "^4.12.8"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.9.3"
}
}