@springmint/x402-payment 1.0.0 → 1.0.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.
- package/SKILL.md +4 -6
- package/dist/cli/254.index.js +1 -1
- package/dist/cli/743.index.js +1259 -185
- package/dist/cli/x402_invoke.js +7 -0
- package/package.json +5 -5
package/dist/cli/x402_invoke.js
CHANGED
|
@@ -72,6 +72,13 @@ module.exports = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("stream");
|
|
|
72
72
|
|
|
73
73
|
/***/ }),
|
|
74
74
|
|
|
75
|
+
/***/ 2018:
|
|
76
|
+
/***/ ((module) => {
|
|
77
|
+
|
|
78
|
+
module.exports = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("tty");
|
|
79
|
+
|
|
80
|
+
/***/ }),
|
|
81
|
+
|
|
75
82
|
/***/ 7016:
|
|
76
83
|
/***/ ((module) => {
|
|
77
84
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@springmint/x402-payment",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "x402 payment SDK - Add x402 pay-per-use capability to your AI agent skills and Node.js applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -22,8 +22,7 @@
|
|
|
22
22
|
"node": ">=18.0.0"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
|
-
"
|
|
26
|
-
"build": "yarn rm && tsc && ncc build src/cli.ts -o dist/cli && mv dist/cli/index.js dist/cli/x402_invoke.js",
|
|
25
|
+
"build": "tsc && ncc build src/cli.ts -o dist/cli && mv dist/cli/index.js dist/cli/x402_invoke.js",
|
|
27
26
|
"build:lib": "tsc",
|
|
28
27
|
"build:cli": "ncc build src/cli.ts -o dist/cli && mv dist/cli/index.js dist/cli/x402_invoke.js",
|
|
29
28
|
"start": "node dist/cli/x402_invoke.js"
|
|
@@ -44,7 +43,7 @@
|
|
|
44
43
|
],
|
|
45
44
|
"repository": {
|
|
46
45
|
"type": "git",
|
|
47
|
-
"url": "https://github.com/springmint/x402-
|
|
46
|
+
"url": "https://github.com/springmint/x402-payment.git"
|
|
48
47
|
},
|
|
49
48
|
"publishConfig": {
|
|
50
49
|
"access": "public"
|
|
@@ -58,5 +57,6 @@
|
|
|
58
57
|
"@springmint/x402": "^0.1.1",
|
|
59
58
|
"tronweb": "^6.0.0",
|
|
60
59
|
"viem": "^2.46.3"
|
|
61
|
-
}
|
|
60
|
+
},
|
|
61
|
+
"packageManager": "yarn@4.13.0"
|
|
62
62
|
}
|