forked from TONresistor/teleton-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.18 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.18 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "teleton",
"version": "0.7.4",
"workspaces": [
"packages/*"
],
"description": "Personal AI Agent for Telegram",
"author": "ZKProof (https://t.me/zkproof)",
"license": "MIT",
"keywords": [
"telegram",
"ai",
"agent",
"ton",
"blockchain",
"userbot",
"llm"
],
"repository": {
"type": "git",
"url": "https://github.com/TONresistor/teleton-agent.git"
},
"bugs": {
"url": "https://github.com/TONresistor/teleton-agent/issues"
},
"homepage": "https://github.com/TONresistor/teleton-agent#readme",
"type": "module",
"main": "dist/index.js",
"bin": {
"teleton": "./bin/teleton.js"
},
"files": [
"dist/",
"bin/",
"scripts/",
"src/templates/"
],
"scripts": {
"build": "npm run build:sdk && npm run build:backend && npm run build:web",
"build:sdk": "npm run build -w @teleton-agent/sdk",
"build:backend": "tsup --config tsup.config.ts",
"build:web": "cd web && npm run build",
"prestart": "npm run build",
"start": "node dist/cli/index.js start",
"dev": "tsx watch src/index.ts",
"dev:cli": "tsx src/cli/index.ts",
"dev:web": "cd web && npm run dev",
"setup": "node dist/cli/index.js setup",
"doctor": "node dist/cli/index.js doctor",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"dependencies": {
"@dedust/sdk": "^0.8.7",
"@hono/node-server": "^1.19.9",
"@huggingface/transformers": "^3.8.1",
"@inquirer/prompts": "^8.2.1",
"@mariozechner/pi-ai": "^0.54.2",
"@modelcontextprotocol/sdk": "^1.26.0",
"@sinclair/typebox": "^0.34.48",
"@tavily/core": "^0.7.1",
"@ton/core": "^0.63.1",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^16.2.2",
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"crypto-js": "^4.2.0",
"grammy": "^1.40.0",
"hono": "^4.11.9",
"js-tiktoken": "^1.0.21",
"lottie-react": "^2.4.1",
"ora": "^9.3.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"sqlite-vec": "^0.1.7-alpha.2",
"telegram": "^2.26.22",
"yaml": "^2.7.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@ston-fi/api": "^0.30.0",
"@ston-fi/sdk": "^2.7.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"edge-tts": "^1.0.1"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"packages/sdk/src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}