-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "ton-agent-kit",
"version": "1.0.0",
"description": "Connect any AI agent to TON protocols — the Solana Agent Kit for TON",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:core": "npm run build -w packages/core",
"build:plugins": "npm run build -w packages/plugin-token -w packages/plugin-defi -w packages/plugin-nft -w packages/plugin-dns -w packages/plugin-payments",
"build:mcp": "npm run build -w packages/mcp-server",
"dev:bot": "npm run dev -w examples/telegram-bot",
"test": "npm test --workspaces --if-present",
"clean": "rm -rf packages/*/dist examples/*/dist node_modules"
},
"keywords": [
"ton",
"blockchain",
"ai",
"agent",
"mcp",
"langchain",
"telegram",
"defi",
"sdk"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"dotenv": "^17.3.1"
},
"dependencies": {
"@grammyjs/runner": "^2.0.3",
"@modelcontextprotocol/sdk": "^1.27.1",
"@ston-fi/omniston-sdk": "^0.7.8",
"@tact-lang/compiler": "^1.6.13",
"@ton/core": "^0.63.1",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^16.2.2",
"@types/express": "^5.0.6",
"express": "^5.2.1",
"grammy": "^1.41.1",
"openai": "^6.28.0",
"zod": "^4.3.6"
},
"overrides": {
"zod": "4.3.6"
}
}