-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 3.99 KB
/
Copy pathpackage.json
File metadata and controls
145 lines (145 loc) · 3.99 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "teleclaw",
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"description": "AI Agent for Telegram & TON Blockchain",
"author": "teleclaw",
"license": "MIT",
"keywords": [
"telegram",
"ai",
"agent",
"ton",
"blockchain",
"bot",
"llm",
"telegram-bot",
"defi",
"fragment",
"gifts",
"otc",
"self-hosted"
],
"repository": {
"type": "git",
"url": "https://github.com/teleclawagent/teleclaw-agent.git"
},
"bugs": {
"url": "https://github.com/teleclawagent/teleclaw-agent/issues"
},
"homepage": "https://github.com/teleclawagent/teleclaw-agent",
"type": "module",
"main": "dist/index.js",
"bin": {
"teleclaw": "./bin/teleclaw.js"
},
"files": [
"dist/",
"bin/",
"scripts/",
"src/templates/",
"config.example.yaml",
"GETTING_STARTED.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:sdk && npm run build:backend && npm run build:web",
"build:sdk": "npm run build -w @teleclaw-agent/sdk",
"build:backend": "tsup --config tsup.config.ts",
"build:web": "cd web && npm install --no-audit --no-fund && npm run build",
"postinstall": "node --input-type=module -e \"import{execSync as e}from'child_process';try{e('npm install --no-audit --no-fund',{cwd:'web',stdio:'inherit'})}catch(x){}\"",
"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\"",
"pretest": "npm run build:sdk",
"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.57.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"@sinclair/typebox": "^0.34.48",
"@ton/core": "^0.63.1",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^16.2.2",
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"cheerio": "^1.2.0",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"crypto-js": "^4.2.0",
"grammy": "^1.40.0",
"hono": "^4.11.9",
"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": "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.0",
"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.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"
]
},
"publishConfig": {
"access": "public"
}
}