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
96 lines (96 loc) · 2.36 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.36 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
{
"name": "teleton",
"version": "0.1.18",
"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": "tsup",
"start": "node dist/cli/index.js start",
"dev": "tsx watch src/index.ts",
"dev:cli": "tsx src/cli/index.ts",
"setup": "node dist/cli/index.js setup",
"doctor": "node dist/cli/index.js doctor",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@dedust/sdk": "^0.8.7",
"@mariozechner/pi-ai": "^0.50.9",
"@orbs-network/ton-access": "^2.3.3",
"@sinclair/typebox": "^0.34.48",
"@ton/core": "^0.63.0",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^16.1.0",
"better-sqlite3": "^11.7.0",
"commander": "^12.0.0",
"grammy": "^1.39.3",
"js-tiktoken": "^1.0.21",
"playwright": "^1.58.1",
"sqlite-vec": "^0.1.7-alpha.2",
"telegram": "^2.26.22",
"yaml": "^2.7.0",
"zod": "^3.24.0"
},
"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.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"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"
},
"optionalDependencies": {
"edge-tts": "^1.0.1"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}