-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.16 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
{
"name": "@getnimbus/sui-agent-kit",
"version": "0.1.25",
"description": "connect any ai agents to sui protocols",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/getnimbus/sui-agent-kit.git"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && copyfiles -u 3 src/utils/move-template/move-bytecode-template.js dist/utils/move-template",
"docs": "typedoc src --out docs",
"test": "tsx test/index.ts",
"test:vercel-ai": "tsx test/agent_sdks/vercel_ai.ts",
"generate": "tsx src/utils/keypair.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "husky"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=8.0.0"
},
"keywords": [],
"author": "Nimbus",
"license": "MIT",
"dependencies": {
"@7kprotocol/sdk-ts": "^2.3.4",
"@ai-sdk/openai": "^1.0.11",
"@cetusprotocol/cetus-sui-clmm-sdk": "^5.2.0",
"@flowx-finance/sdk": "^1.10.15",
"@langchain/core": "^0.3.26",
"@langchain/deepseek": "^0.0.1",
"@langchain/groq": "^0.1.2",
"@langchain/langgraph": "^0.2.36",
"@langchain/openai": "^0.3.16",
"@mysten/sui": "^1.19.0",
"@mysten/suins": "^0.6.3",
"@suilend/frontend-sui": "0.1.84",
"@suilend/sdk": "1.1.24",
"@suilend/springsui-sdk": "1.0.12",
"ai": "^4.0.22",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.1",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"langchain": "^0.3.8",
"openai": "^4.77.0",
"pino": "^9.6.0",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/chai": "^5.0.1",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}