-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.91 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.91 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
{
"name": "evalanche",
"version": "1.9.0",
"description": "Multi-EVM agent wallet SDK with unified holdings discovery, onchain identity (ERC-8004), x402 payments, cross-chain liquidity (Li.Fi + Gas.zip), prediction markets, DeFi, and perpetual futures",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"bin": {
"evalanche-mcp": "dist/mcp/cli.mjs"
},
"files": [
"dist",
"skill"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"refresh:release-docs": "node scripts/refresh-release-docs.mjs",
"sync:defillama-registry": "node scripts/sync-defillama-registry.mjs"
},
"keywords": [
"avalanche",
"ethereum",
"base",
"arbitrum",
"agent",
"wallet",
"erc-8004",
"x402",
"bridge",
"cross-chain",
"lifi",
"gas-zip",
"web3",
"ai-agent"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@avalabs/avalanchejs": "^5.0.0",
"@avalabs/core-utils-sdk": "^3.0.2",
"@avalabs/core-wallets-sdk": "^3.0.2",
"@dydxprotocol/v4-client-js": "^3.6.0",
"@nktkas/hyperliquid": "^0.32.2",
"@polymarket/clob-client": "^5.8.0",
"big.js": "^6.2.2",
"ethers": "^6.13.0",
"viem": "^2.47.6"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^4.1.0"
},
"overrides": {
"@ledgerhq/cryptoassets": "9.13.0",
"@hpke/core": "^1.9.0",
"axios": "1.13.6",
"@osmonauts/lcd": {
"axios": "^1.13.6"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/iJaack/evalanche.git"
},
"publishConfig": {
"provenance": true,
"registry": "https://registry.npmjs.org/"
}
}