-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.48 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.48 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
{
"name": "wallioai-kit",
"version": "0.0.3",
"description": "A smart agent which the capability to interact with the blockchain",
"repository": {
"type": "git",
"url": "git+https://github.com/wallioai/wallioai-kit"
},
"author": "Apexloaded",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"ci": "pnpm run build && pnpm run check-format && pnpm run lint && pnpm run test",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack .",
"lint": "tsc",
"test": "jest",
"add-change": "npx changeset",
"local-release": "changeset version && changeset publish",
"link": "pnpm link --global",
"prepublishOnly": "npm run ci"
},
"bugs": {
"url": "https://github.com/wallioai/wallioai-kit/issues"
},
"homepage": "https://github.com/wallioai/wallioai-kit#readme",
"keywords": [
"wallio",
"walletai",
"wallioai",
"dexai",
"dex",
"exchange",
"ai",
"dexgpt",
"sonic",
"blockchain",
"agent",
"sonic-agent",
"smart-agent",
"smart",
"langchain"
],
"files": [
"dist"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@changesets/cli": "^2.28.0",
"@swc/core": "^1.10.18",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"prettier": "^3.5.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "5.6.2"
},
"dependencies": {
"@debridge-finance/desdk": "^1.0.2",
"@heyanon/sdk": "^2.1.6",
"@langchain/core": "^0.3.40",
"@solana/web3.js": "^1.98.0",
"ai": "^4.1.45",
"dotenv": "^16.4.7",
"lru-cache": "^11.0.2",
"reflect-metadata": "^0.2.2",
"viem": "^2.23.15",
"zod": "^3.24.2"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"import": "./dist/adapters/index.js",
"default": "./dist/adapters/index.cjs"
},
"./accounts": {
"types": "./dist/accounts/index.d.ts",
"import": "./dist/accounts/index.js",
"default": "./dist/accounts/index.cjs"
},
"./tools": {
"types": "./dist/tools/index.d.ts",
"import": "./dist/tools/index.js",
"default": "./dist/tools/index.cjs"
}
}
}