Skip to content

Commit a34cfff

Browse files
committed
initialize project with TypeScript setup, routing controller, and dependency injection
0 parents  commit a34cfff

File tree

12 files changed

+1415
-0
lines changed

12 files changed

+1415
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

README.md

Whitespace-only changes.

package.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "hono-routing-controller",
3+
"version": "0.0.1",
4+
"main": "dist/index.cjs",
5+
"module": "dist/index.mjs",
6+
"types": "dist/index.d.ts",
7+
"exports": {
8+
"import": "./dist/index.mjs",
9+
"require": "./dist/index.cjs"
10+
},
11+
"files": [
12+
"dist"
13+
],
14+
"scripts": {
15+
"build": "tsup src/index.ts --format esm,cjs --dts",
16+
"dev": "tsup src/index.ts --format esm,cjs --dts --watch"
17+
},
18+
"keywords": [
19+
"hono",
20+
"routing",
21+
"controller",
22+
"typescript",
23+
"middleware",
24+
"dependency-injection"
25+
],
26+
"author": "Hasibur Rahman",
27+
"license": "MIT",
28+
"description": "A routing controller package for Hono.js",
29+
"dependencies": {
30+
"hono": "^4.7.2",
31+
"reflect-metadata": "^0.2.2"
32+
},
33+
"devDependencies": {
34+
"@swc/core": "^1.11.5",
35+
"@types/node": "^22.13.7",
36+
"tsup": "^8.4.0",
37+
"typescript": "^5.8.2"
38+
},
39+
"repository": {
40+
"type": "git",
41+
"url": "https://github.com/hasib-devs/hono-routing-controller.git"
42+
}
43+
}

0 commit comments

Comments
 (0)