-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@asgcard/pay",
"version": "0.3.0",
"description": "ASG Agent Pay — the banking layer for autonomous AI agents. Multi-chain payments (x402 + MPP), virtual cards, policy engine, and wallet abstraction across 17 networks. The only SDK unifying Coinbase x402 and Stripe MPP protocols.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"build": "rm -rf dist && npm run build:cjs && npm run build:esm && npm run build:types",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run test && npm run build",
"demo": "npx ts-node demo.ts --simulate"
},
"keywords": [
"asg-agent-pay",
"asg-pay",
"ai-agent-payments",
"autonomous-agent-payments",
"agent-to-agent-payments",
"agentic-commerce",
"machine-to-machine-payments",
"x402",
"x402-protocol",
"mpp",
"machine-payments-protocol",
"402-payment-required",
"http-402",
"ai-agent-sdk",
"ai-agent-financial-identity",
"agent-wallet",
"agent-virtual-card",
"policy-engine",
"stripe",
"coinbase",
"circle",
"usdc",
"base",
"arbitrum",
"optimism",
"polygon",
"stellar",
"solana",
"evm",
"multi-chain",
"langchain",
"crewai",
"autogpt",
"mcp-server",
"open-wallet-standard"
],
"engines": {
"node": ">=18"
},
"author": "ASG Compute <team@asgcard.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ASGCompute/ASGCompute-ows-agent-pay"
},
"homepage": "https://pay.asgcard.dev",
"bugs": {
"url": "https://github.com/ASGCompute/ASGCompute-ows-agent-pay/issues"
},
"dependencies": {
"@open-wallet-standard/core": "^1.2.4",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"@stellar/stellar-sdk": "^13.3.0",
"axios": "^1.14.0",
"viem": "^2.47.6"
},
"peerDependencies": {
"stripe": ">=16.0.0"
},
"peerDependenciesMeta": {
"stripe": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.2.4",
"ts-node": "^10.9.0",
"typescript": "^5.7.0",
"vitest": "^3.1.0"
}
}