-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.79 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.79 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
{
"name": "agentwallet-sdk",
"version": "6.2.1",
"description": "Non-custodial AI agent wallet SDK. ERC-8004 identity & reputation registries, mutual stake escrow, x402 payments, x402 upto billing policy accounting, 17-chain CCTP bridging, ERC-6551 TBA, SpendingPolicy guardrails, Uniswap V3 swap. The agent holds the keys.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "vitest run",
"deploy": "wrangler deploy",
"preview": "wrangler dev",
"lint": "eslint src/"
},
"keywords": [
"agent-wallet",
"ai-agent",
"crypto",
"web3",
"erc-6551",
"x402",
"agentic-wallet",
"base",
"non-custodial",
"spend-limits",
"machine-payments",
"agent-payments",
"autonomous-agent",
"token-bound-account",
"erc-8004",
"reputation",
"validation",
"mutual-stake-escrow",
"cctp-bridge"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/up2itnow0822/agent-wallet-sdk.git"
},
"author": "AgentNexus",
"dependencies": {
"viem": "2.46.0"
},
"peerDependencies": {
"@solana/web3.js": ">=1.87.0"
},
"peerDependenciesMeta": {
"@solana/web3.js": {
"optional": true
}
},
"devDependencies": {
"@elizaos/core": "^1.5.4",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.1.0",
"globals": "^16.5.0",
"typescript": "5.3.3",
"vitest": "4.0.18",
"wrangler": "^4.72.0"
},
"homepage": "https://github.com/up2itnow0822/agent-wallet-sdk#readme",
"bugs": {
"url": "https://github.com/up2itnow0822/agent-wallet-sdk/issues"
}
}