@t402/hono 2.5.0 → 2.6.1

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.
Files changed (1) hide show
  1. package/package.json +30 -15
package/package.json CHANGED
@@ -1,41 +1,52 @@
1
1
  {
2
2
  "name": "@t402/hono",
3
- "version": "2.5.0",
3
+ "version": "2.6.1",
4
4
  "main": "./dist/cjs/index.js",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "./dist/index.d.ts",
7
- "keywords": [],
7
+ "keywords": [
8
+ "t402",
9
+ "payment",
10
+ "protocol",
11
+ "hono",
12
+ "middleware",
13
+ "http-402",
14
+ "stablecoin"
15
+ ],
8
16
  "license": "Apache-2.0",
9
17
  "author": "T402 Team",
10
- "repository": "https://github.com/t402-io/t402",
11
- "description": "t402 Payment Protocol",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/t402-io/t402.git",
21
+ "directory": "sdks/typescript/packages/http/hono"
22
+ },
23
+ "description": "Hono middleware for T402 HTTP 402 payment protocol",
12
24
  "devDependencies": {
13
25
  "@eslint/js": "^9.39.2",
14
- "@types/node": "^25.2.2",
15
- "@typescript-eslint/eslint-plugin": "^8.55.0",
16
- "@typescript-eslint/parser": "^8.55.0",
26
+ "@types/node": "^25.2.3",
27
+ "@typescript-eslint/eslint-plugin": "^8.56.0",
28
+ "@typescript-eslint/parser": "^8.56.0",
17
29
  "eslint": "^9.24.0",
18
30
  "eslint-plugin-import": "^2.31.0",
19
- "eslint-plugin-jsdoc": "^62.5.4",
31
+ "eslint-plugin-jsdoc": "^62.6.0",
20
32
  "eslint-plugin-prettier": "^5.5.5",
21
- "glob": "^13.0.0",
22
- "hono": "^4.11.9",
33
+ "glob": "^13.0.5",
34
+ "hono": "^4.11.10",
23
35
  "prettier": "3.8.1",
24
36
  "tsup": "^8.5.1",
25
37
  "tsx": "^4.21.0",
26
38
  "typescript": "^5.9.3",
27
39
  "vite": "^7.3.1",
28
- "vite-tsconfig-paths": "^6.1.0",
40
+ "vite-tsconfig-paths": "^6.1.1",
29
41
  "vitest": "^3.2.4"
30
42
  },
31
43
  "dependencies": {
32
- "zod": "^3.24.2",
33
- "@t402/core": "2.5.0",
34
- "@t402/extensions": "2.5.0"
44
+ "@t402/extensions": "2.6.1",
45
+ "@t402/core": "2.6.1"
35
46
  },
36
47
  "peerDependencies": {
37
48
  "hono": "^4.0.0",
38
- "@t402/paywall": "2.5.0"
49
+ "@t402/paywall": "2.6.1"
39
50
  },
40
51
  "peerDependenciesMeta": {
41
52
  "@t402/paywall": {
@@ -57,6 +68,10 @@
57
68
  "files": [
58
69
  "dist"
59
70
  ],
71
+ "homepage": "https://t402.io",
72
+ "publishConfig": {
73
+ "access": "public"
74
+ },
60
75
  "scripts": {
61
76
  "start": "tsx --env-file=.env index.ts",
62
77
  "test": "vitest run",