@t402/next 2.3.1 → 2.5.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 +15 -15
package/README.md
CHANGED
|
@@ -276,3 +276,12 @@ export const middleware = paymentProxy(
|
|
|
276
276
|
|
|
277
277
|
Note: The `payTo` address is now specified within each route configuration rather than as a separate parameter.
|
|
278
278
|
|
|
279
|
+
## Related Packages
|
|
280
|
+
|
|
281
|
+
- `@t402/core` - Core protocol types and client
|
|
282
|
+
- `@t402/evm` - EVM mechanism implementation
|
|
283
|
+
- `@t402/paywall` - Universal paywall UI component
|
|
284
|
+
- `@t402/express` - Express.js middleware
|
|
285
|
+
- `@t402/hono` - Hono middleware
|
|
286
|
+
- `@t402/fastify` - Fastify middleware
|
|
287
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t402/next",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"main": "./dist/cjs/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -10,31 +10,31 @@
|
|
|
10
10
|
"repository": "https://github.com/t402-io/t402",
|
|
11
11
|
"description": "t402 Payment Protocol",
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@eslint/js": "^9.
|
|
14
|
-
"@types/node": "^
|
|
15
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
16
|
-
"@typescript-eslint/parser": "^8.
|
|
13
|
+
"@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",
|
|
17
17
|
"eslint": "^9.24.0",
|
|
18
18
|
"eslint-plugin-import": "^2.31.0",
|
|
19
|
-
"eslint-plugin-jsdoc": "^
|
|
20
|
-
"eslint-plugin-prettier": "^5.
|
|
19
|
+
"eslint-plugin-jsdoc": "^62.5.4",
|
|
20
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
21
21
|
"glob": "^13.0.0",
|
|
22
|
-
"prettier": "3.
|
|
23
|
-
"tsup": "^8.
|
|
22
|
+
"prettier": "3.8.1",
|
|
23
|
+
"tsup": "^8.5.1",
|
|
24
24
|
"tsx": "^4.21.0",
|
|
25
|
-
"typescript": "^5.
|
|
25
|
+
"typescript": "^5.9.3",
|
|
26
26
|
"vite": "^7.3.1",
|
|
27
|
-
"vite-tsconfig-paths": "^
|
|
27
|
+
"vite-tsconfig-paths": "^6.1.0",
|
|
28
28
|
"vitest": "^3.2.4"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"zod": "^3.24.2",
|
|
32
|
-
"@t402/
|
|
33
|
-
"@t402/
|
|
32
|
+
"@t402/core": "2.5.0",
|
|
33
|
+
"@t402/extensions": "2.5.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"next": "^15.0.0 || ^16.
|
|
37
|
-
"@t402/paywall": "2.
|
|
36
|
+
"next": "^15.0.0 || ^16.1.5",
|
|
37
|
+
"@t402/paywall": "2.5.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependenciesMeta": {
|
|
40
40
|
"@t402/paywall": {
|