-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@kakushin/agni",
"version": "0.0.1",
"description": "Semi-framework (but still boilerplate) Hono MVC Pattern using TypeScript language.",
"keywords": [
"boilerplate",
"mvc",
"hono",
"webserver",
"webapp",
"kakushin"
],
"homepage": "https://github.com/kakushindev/agni#readme",
"bugs": {
"url": "https://github.com/kakushindev/agni/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kakushindev/agni.git"
},
"license": "AGPL-3.0",
"author": "Kakushin Devs <[email protected]>",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"lint": "eslint .",
"dev": "tsx watch --env-file=./.env src/index.ts",
"release": "pnpm publish --access public --no-git-checks"
},
"dependencies": {
"@hono/node-server": "^1.11.0",
"hono": "^4.2.5",
"reflect-metadata": "^0.2.1"
},
"devDependencies": {
"@hazmi35/eslint-config": "^13.3.1",
"@tsconfig/node-lts": "^20.1.3",
"@types/node": "^20.12.7",
"pino": "^9.1.0",
"pino-pretty": "^11.0.0",
"tsx": "^4.7.2",
"zod": "^3.22.5"
}
}