jax-hono 1.0.25 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +129 -129
package/package.json
CHANGED
|
@@ -1,130 +1,130 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "jax-hono",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Lightweight framework layer on top of Hono, built for Bun",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./index.ts",
|
|
7
|
-
"types": "./index.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"import": "./index.ts",
|
|
11
|
-
"types": "./index.ts"
|
|
12
|
-
},
|
|
13
|
-
"./setup": {
|
|
14
|
-
"import": "./setup.ts",
|
|
15
|
-
"types": "./setup.ts"
|
|
16
|
-
},
|
|
17
|
-
"./config": {
|
|
18
|
-
"import": "./config.ts",
|
|
19
|
-
"types": "./config.ts"
|
|
20
|
-
},
|
|
21
|
-
"./core/*": {
|
|
22
|
-
"import": "./core/*.ts",
|
|
23
|
-
"types": "./core/*.ts"
|
|
24
|
-
},
|
|
25
|
-
"./helpers": {
|
|
26
|
-
"import": "./helpers/index.ts",
|
|
27
|
-
"types": "./helpers/index.ts"
|
|
28
|
-
},
|
|
29
|
-
"./helpers/*": {
|
|
30
|
-
"import": "./helpers/*.ts",
|
|
31
|
-
"types": "./helpers/*.ts"
|
|
32
|
-
},
|
|
33
|
-
"./middleware/*": {
|
|
34
|
-
"import": "./middleware/*.ts",
|
|
35
|
-
"types": "./middleware/*.ts"
|
|
36
|
-
},
|
|
37
|
-
"./plugins/*": {
|
|
38
|
-
"import": "./plugins/*/index.ts",
|
|
39
|
-
"types": "./plugins/*/index.ts"
|
|
40
|
-
},
|
|
41
|
-
"./plugins/*/*": {
|
|
42
|
-
"import": "./plugins/*/*.ts",
|
|
43
|
-
"types": "./plugins/*/*.ts"
|
|
44
|
-
},
|
|
45
|
-
"./utils": {
|
|
46
|
-
"import": "./utils/index.ts",
|
|
47
|
-
"types": "./utils/index.ts"
|
|
48
|
-
},
|
|
49
|
-
"./utils/*": {
|
|
50
|
-
"import": "./utils/*.ts",
|
|
51
|
-
"types": "./utils/*.ts"
|
|
52
|
-
},
|
|
53
|
-
"./types": {
|
|
54
|
-
"import": "./types/index.ts",
|
|
55
|
-
"types": "./types/index.ts"
|
|
56
|
-
},
|
|
57
|
-
"./types/*": {
|
|
58
|
-
"import": "./types/*.ts",
|
|
59
|
-
"types": "./types/*.ts"
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
"bin": {
|
|
63
|
-
"jax": "./bin/jax.js"
|
|
64
|
-
},
|
|
65
|
-
"files": [
|
|
66
|
-
"index.ts",
|
|
67
|
-
"setup.ts",
|
|
68
|
-
"config.ts",
|
|
69
|
-
"bin/",
|
|
70
|
-
"core/",
|
|
71
|
-
"middleware/",
|
|
72
|
-
"plugins/",
|
|
73
|
-
"helpers/",
|
|
74
|
-
"utils/",
|
|
75
|
-
"types/",
|
|
76
|
-
"build/",
|
|
77
|
-
"docs/",
|
|
78
|
-
"README.md"
|
|
79
|
-
],
|
|
80
|
-
"scripts": {
|
|
81
|
-
"postinstall": "echo 'jax-hono requires Bun. Visit https://bun.sh to install.'"
|
|
82
|
-
},
|
|
83
|
-
"dependencies": {
|
|
84
|
-
"@hono/session": "^0.2.1",
|
|
85
|
-
"@types/lodash-es": "^4.17.12",
|
|
86
|
-
"cac": "^7.0.0",
|
|
87
|
-
"lodash-es": "^4.18.1",
|
|
88
|
-
"p-limit": "^7.3.0"
|
|
89
|
-
},
|
|
90
|
-
"peerDependencies": {
|
|
91
|
-
"hono": "^4.12.27",
|
|
92
|
-
"dayjs": "*",
|
|
93
|
-
"deepmerge": "^4.3.1",
|
|
94
|
-
"dotenv": "^17.4.2",
|
|
95
|
-
"axios": "^1.18.1",
|
|
96
|
-
"jsonwebtoken": "*",
|
|
97
|
-
"minimist": "^1.2.8",
|
|
98
|
-
"mongoose": "*"
|
|
99
|
-
},
|
|
100
|
-
"devDependencies": {
|
|
101
|
-
"axios": "^1.18.1",
|
|
102
|
-
"@types/bun": "^1.3.14",
|
|
103
|
-
"@types/jsonwebtoken": "^9.0.10",
|
|
104
|
-
"dayjs": "^1.11.21",
|
|
105
|
-
"deepmerge": "^4.3.1",
|
|
106
|
-
"dotenv": "^17.4.2",
|
|
107
|
-
"hono": "^4.12.28",
|
|
108
|
-
"jsonwebtoken": "^9.0.3",
|
|
109
|
-
"minimist": "^1.2.8",
|
|
110
|
-
"mongoose": "^8.24.1"
|
|
111
|
-
},
|
|
112
|
-
"peerDependenciesMeta": {
|
|
113
|
-
"axios": {
|
|
114
|
-
"optional": true
|
|
115
|
-
},
|
|
116
|
-
"dayjs": {
|
|
117
|
-
"optional": true
|
|
118
|
-
},
|
|
119
|
-
"mongoose": {
|
|
120
|
-
"optional": true
|
|
121
|
-
},
|
|
122
|
-
"jsonwebtoken": {
|
|
123
|
-
"optional": true
|
|
124
|
-
}
|
|
125
|
-
},
|
|
126
|
-
"engines": {
|
|
127
|
-
"bun": ">=1.0.0"
|
|
128
|
-
},
|
|
129
|
-
"license": "MIT"
|
|
1
|
+
{
|
|
2
|
+
"name": "jax-hono",
|
|
3
|
+
"version": "1.0.26",
|
|
4
|
+
"description": "Lightweight framework layer on top of Hono, built for Bun",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./index.ts",
|
|
7
|
+
"types": "./index.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./index.ts",
|
|
11
|
+
"types": "./index.ts"
|
|
12
|
+
},
|
|
13
|
+
"./setup": {
|
|
14
|
+
"import": "./setup.ts",
|
|
15
|
+
"types": "./setup.ts"
|
|
16
|
+
},
|
|
17
|
+
"./config": {
|
|
18
|
+
"import": "./config.ts",
|
|
19
|
+
"types": "./config.ts"
|
|
20
|
+
},
|
|
21
|
+
"./core/*": {
|
|
22
|
+
"import": "./core/*.ts",
|
|
23
|
+
"types": "./core/*.ts"
|
|
24
|
+
},
|
|
25
|
+
"./helpers": {
|
|
26
|
+
"import": "./helpers/index.ts",
|
|
27
|
+
"types": "./helpers/index.ts"
|
|
28
|
+
},
|
|
29
|
+
"./helpers/*": {
|
|
30
|
+
"import": "./helpers/*.ts",
|
|
31
|
+
"types": "./helpers/*.ts"
|
|
32
|
+
},
|
|
33
|
+
"./middleware/*": {
|
|
34
|
+
"import": "./middleware/*.ts",
|
|
35
|
+
"types": "./middleware/*.ts"
|
|
36
|
+
},
|
|
37
|
+
"./plugins/*": {
|
|
38
|
+
"import": "./plugins/*/index.ts",
|
|
39
|
+
"types": "./plugins/*/index.ts"
|
|
40
|
+
},
|
|
41
|
+
"./plugins/*/*": {
|
|
42
|
+
"import": "./plugins/*/*.ts",
|
|
43
|
+
"types": "./plugins/*/*.ts"
|
|
44
|
+
},
|
|
45
|
+
"./utils": {
|
|
46
|
+
"import": "./utils/index.ts",
|
|
47
|
+
"types": "./utils/index.ts"
|
|
48
|
+
},
|
|
49
|
+
"./utils/*": {
|
|
50
|
+
"import": "./utils/*.ts",
|
|
51
|
+
"types": "./utils/*.ts"
|
|
52
|
+
},
|
|
53
|
+
"./types": {
|
|
54
|
+
"import": "./types/index.ts",
|
|
55
|
+
"types": "./types/index.ts"
|
|
56
|
+
},
|
|
57
|
+
"./types/*": {
|
|
58
|
+
"import": "./types/*.ts",
|
|
59
|
+
"types": "./types/*.ts"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"bin": {
|
|
63
|
+
"jax": "./bin/jax.js"
|
|
64
|
+
},
|
|
65
|
+
"files": [
|
|
66
|
+
"index.ts",
|
|
67
|
+
"setup.ts",
|
|
68
|
+
"config.ts",
|
|
69
|
+
"bin/",
|
|
70
|
+
"core/",
|
|
71
|
+
"middleware/",
|
|
72
|
+
"plugins/",
|
|
73
|
+
"helpers/",
|
|
74
|
+
"utils/",
|
|
75
|
+
"types/",
|
|
76
|
+
"build/",
|
|
77
|
+
"docs/",
|
|
78
|
+
"README.md"
|
|
79
|
+
],
|
|
80
|
+
"scripts": {
|
|
81
|
+
"postinstall": "echo 'jax-hono requires Bun. Visit https://bun.sh to install.'"
|
|
82
|
+
},
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"@hono/session": "^0.2.1",
|
|
85
|
+
"@types/lodash-es": "^4.17.12",
|
|
86
|
+
"cac": "^7.0.0",
|
|
87
|
+
"lodash-es": "^4.18.1",
|
|
88
|
+
"p-limit": "^7.3.0"
|
|
89
|
+
},
|
|
90
|
+
"peerDependencies": {
|
|
91
|
+
"hono": "^4.12.27",
|
|
92
|
+
"dayjs": "*",
|
|
93
|
+
"deepmerge": "^4.3.1",
|
|
94
|
+
"dotenv": "^17.4.2",
|
|
95
|
+
"axios": "^1.18.1",
|
|
96
|
+
"jsonwebtoken": "*",
|
|
97
|
+
"minimist": "^1.2.8",
|
|
98
|
+
"mongoose": "*"
|
|
99
|
+
},
|
|
100
|
+
"devDependencies": {
|
|
101
|
+
"axios": "^1.18.1",
|
|
102
|
+
"@types/bun": "^1.3.14",
|
|
103
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
104
|
+
"dayjs": "^1.11.21",
|
|
105
|
+
"deepmerge": "^4.3.1",
|
|
106
|
+
"dotenv": "^17.4.2",
|
|
107
|
+
"hono": "^4.12.28",
|
|
108
|
+
"jsonwebtoken": "^9.0.3",
|
|
109
|
+
"minimist": "^1.2.8",
|
|
110
|
+
"mongoose": "^8.24.1"
|
|
111
|
+
},
|
|
112
|
+
"peerDependenciesMeta": {
|
|
113
|
+
"axios": {
|
|
114
|
+
"optional": true
|
|
115
|
+
},
|
|
116
|
+
"dayjs": {
|
|
117
|
+
"optional": true
|
|
118
|
+
},
|
|
119
|
+
"mongoose": {
|
|
120
|
+
"optional": true
|
|
121
|
+
},
|
|
122
|
+
"jsonwebtoken": {
|
|
123
|
+
"optional": true
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"engines": {
|
|
127
|
+
"bun": ">=1.0.0"
|
|
128
|
+
},
|
|
129
|
+
"license": "MIT"
|
|
130
130
|
}
|