@t402/hono 2.3.1 → 2.4.0
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/README.md +9 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -253,3 +253,12 @@ const resourceServer = new t402ResourceServer(customFacilitator)
|
|
|
253
253
|
|
|
254
254
|
app.use(paymentMiddleware(routes, resourceServer, paywallConfig));
|
|
255
255
|
```
|
|
256
|
+
|
|
257
|
+
## Related Packages
|
|
258
|
+
|
|
259
|
+
- `@t402/core` - Core protocol types and client
|
|
260
|
+
- `@t402/evm` - EVM mechanism implementation
|
|
261
|
+
- `@t402/paywall` - Universal paywall UI component
|
|
262
|
+
- `@t402/express` - Express.js middleware
|
|
263
|
+
- `@t402/fastify` - Fastify middleware
|
|
264
|
+
- `@t402/next` - Next.js integration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t402/hono",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"main": "./dist/cjs/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
"description": "t402 Payment Protocol",
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@eslint/js": "^9.24.0",
|
|
14
|
-
"@types/node": "^
|
|
14
|
+
"@types/node": "^25.2.0",
|
|
15
15
|
"@typescript-eslint/eslint-plugin": "^8.29.1",
|
|
16
16
|
"@typescript-eslint/parser": "^8.29.1",
|
|
17
17
|
"eslint": "^9.24.0",
|
|
18
18
|
"eslint-plugin-import": "^2.31.0",
|
|
19
|
-
"eslint-plugin-jsdoc": "^
|
|
19
|
+
"eslint-plugin-jsdoc": "^62.5.0",
|
|
20
20
|
"eslint-plugin-prettier": "^5.2.6",
|
|
21
21
|
"glob": "^13.0.0",
|
|
22
22
|
"hono": "^4.11.4",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"zod": "^3.24.2",
|
|
33
|
-
"@t402/core": "2.
|
|
34
|
-
"@t402/extensions": "2.
|
|
33
|
+
"@t402/core": "2.4.0",
|
|
34
|
+
"@t402/extensions": "2.4.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"hono": "^4.0.0",
|
|
38
|
-
"@t402/paywall": "2.
|
|
38
|
+
"@t402/paywall": "2.4.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependenciesMeta": {
|
|
41
41
|
"@t402/paywall": {
|