forked from TONresistor/teleton-agent
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.51 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.51 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
124
125
126
127
128
{
"name": "teleton",
"version": "0.8.5",
"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 packages/sdk/src --max-warnings 0",
"lint:fix": "eslint src packages/sdk/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",
"knip": "knip",
"circular": "madge --circular --no-spinner --no-color --extensions ts --ts-config tsconfig.json src/",
"dupcheck": "jscpd --config .jscpd.json src/",
"audit:ci": "audit-ci --config ./audit-ci.jsonc",
"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.58.4",
"@modelcontextprotocol/sdk": "^1.27.1",
"@sinclair/typebox": "^0.34.48",
"@tavily/core": "^0.7.2",
"@ton/core": "^0.63.1",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^16.2.2",
"better-sqlite3": "^12.8.0",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"grammy": "^1.40.0",
"hono": "^4.12.8",
"hono-rate-limiter": "^0.5.3",
"lottie-react": "^2.4.1",
"ora": "^9.3.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"selfsigned": "^5.5.0",
"sqlite-vec": "^0.1.7",
"telegram": "github:TONresistor/gramjs#34b6b63",
"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",
"audit-ci": "^7.1.0",
"eslint": "^10.0.3",
"husky": "^9.1.7",
"jscpd": "^4.0.8",
"knip": "^5.85.0",
"lint-staged": "^16.2.7",
"madge": "^8.0.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"packages/sdk/src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}