-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "telegram-bot-example",
"version": "1.0.0",
"description": "A template example for a telegram bot using polkadot-agent-kit, using typescript",
"author": "",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"dev": "jiti ./src/index.ts",
"build": "tsc",
"start": "node ./dist/index.js",
"clean": "rm -rf dist"
},
"dependencies": {
"dotenv": "^16.5.0",
"@polkadot-agent-kit/common": "workspace:*",
"@polkadot-agent-kit/llm": "workspace:*",
"@polkadot-agent-kit/sdk": "workspace:*",
"@polkadot-agent-kit/core": "workspace:*",
"telegraf": "^4.16.3",
"telegraf-safe-md-reply": "^1.0.0",
"@langchain/core": "^0.3.40",
"zod": "^3.22.0",
"@langchain/ollama":"^0.2.2",
"@langchain/openai":"^0.5.12"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"eslint": "^9.25.1",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"jiti": "^2.3.3"
}
}