escrix 0.1.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.
Files changed (2) hide show
  1. package/index.js +11 -0
  2. package/package.json +27 -0
package/index.js ADDED
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Escrix SDK — JavaScript/TypeScript
3
+ * AI Agent-to-Agent programmable escrow & task verification protocol
4
+ *
5
+ * https://escrix.dev
6
+ */
7
+
8
+ module.exports = {
9
+ version: '0.1.0',
10
+ // Full SDK coming soon
11
+ }
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "escrix",
3
+ "version": "0.1.0",
4
+ "description": "AI Agent-to-Agent programmable escrow & task verification protocol SDK",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "keywords": [
8
+ "ai-agents",
9
+ "escrow",
10
+ "verification",
11
+ "base",
12
+ "usdc",
13
+ "web3",
14
+ "mcp",
15
+ "langchain"
16
+ ],
17
+ "author": "Escrix Inc. <dev@escrix.dev>",
18
+ "license": "MIT",
19
+ "homepage": "https://escrix.dev",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/haodongtuo/escrix"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/haodongtuo/escrix/issues"
26
+ }
27
+ }