x402-gateway 0.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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +10 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # x402-gateway
2
+
3
+ Hosted payment gateway middleware for the x402 protocol. Drop-in USDC billing for APIs.
4
+
5
+ **Status:** In development. Package name reserved.
6
+
7
+ Coming soon from [SynthInsight Labs](https://x402gateway.dev).
package/index.js ADDED
@@ -0,0 +1,10 @@
1
+ /**
2
+ * x402-gateway
3
+ * Hosted payment gateway middleware for the x402 protocol.
4
+ * Drop-in USDC billing for APIs.
5
+ *
6
+ * Status: In development. Package name reserved.
7
+ * https://x402gateway.dev
8
+ */
9
+
10
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "x402-gateway",
3
+ "version": "0.0.1",
4
+ "description": "Hosted payment gateway middleware for the x402 protocol. Drop-in USDC billing for APIs.",
5
+ "main": "index.js",
6
+ "keywords": ["x402", "payments", "USDC", "API", "gateway", "stablecoin", "agents", "middleware"],
7
+ "author": "SynthInsight Labs <admin@synthinsightlabs.com>",
8
+ "license": "MIT",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/eriksjaastad/x402-gateway"
12
+ },
13
+ "homepage": "https://x402gateway.dev"
14
+ }