@lunora/x402 0.0.0 → 1.0.0-alpha.10

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 CHANGED
@@ -1,10 +1,78 @@
1
1
  {
2
2
  "name": "@lunora/x402",
3
- "version": "0.0.0",
4
- "description": "OIDC trusted publishing setup package for @lunora/x402",
3
+ "version": "1.0.0-alpha.10",
4
+ "description": "Agentic payments (x402) for Lunora: charge agents per request (charge rail) and let your agents pay x402-gated resources (pay rail)",
5
5
  "keywords": [
6
- "oidc",
7
- "trusted-publishing",
8
- "setup"
9
- ]
10
- }
6
+ "agents",
7
+ "cloudflare",
8
+ "lunora",
9
+ "micropayments",
10
+ "payments",
11
+ "stablecoin",
12
+ "usdc",
13
+ "workers",
14
+ "x402"
15
+ ],
16
+ "homepage": "https://lunora.sh",
17
+ "bugs": "https://github.com/anolilab/lunora/issues",
18
+ "license": "FSL-1.1-Apache-2.0",
19
+ "author": {
20
+ "name": "Daniel Bannert",
21
+ "email": "d.bannert@anolilab.de"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/anolilab/lunora.git",
26
+ "directory": "packages/x402"
27
+ },
28
+ "files": [
29
+ "./dist",
30
+ "__assets__",
31
+ "README.md",
32
+ "LICENSE.md"
33
+ ],
34
+ "type": "module",
35
+ "sideEffects": false,
36
+ "exports": {
37
+ ".": {
38
+ "types": "./dist/index.d.ts",
39
+ "import": "./dist/index.mjs"
40
+ },
41
+ "./charge": {
42
+ "types": "./dist/charge/index.d.ts",
43
+ "import": "./dist/charge/index.mjs"
44
+ },
45
+ "./pay": {
46
+ "types": "./dist/pay/index.d.ts",
47
+ "import": "./dist/pay/index.mjs"
48
+ },
49
+ "./package.json": "./package.json"
50
+ },
51
+ "publishConfig": {
52
+ "access": "public"
53
+ },
54
+ "dependencies": {
55
+ "@lunora/errors": "1.0.0-alpha.8",
56
+ "@solana/kit": "7.0.0",
57
+ "@x402/core": "2.19.0",
58
+ "@x402/evm": "2.19.0",
59
+ "@x402/fetch": "2.19.0",
60
+ "@x402/svm": "2.19.0",
61
+ "viem": "2.55.8"
62
+ },
63
+ "peerDependencies": {
64
+ "@coinbase/cdp-sdk": ">=1.0.0",
65
+ "@coinbase/x402": ">=2.0.0"
66
+ },
67
+ "peerDependenciesMeta": {
68
+ "@coinbase/cdp-sdk": {
69
+ "optional": true
70
+ },
71
+ "@coinbase/x402": {
72
+ "optional": true
73
+ }
74
+ },
75
+ "engines": {
76
+ "node": "^22.15.0 || >=24.11.0"
77
+ }
78
+ }