forked from vibeforge1111/spark-telegram-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.38 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
{
"name": "spark-telegram-bot",
"version": "1.0.0",
"description": "Spark Telegram ingress gateway for Builder and Spawner",
"main": "dist/index.js",
"engines": {
"node": ">=22.5.0"
},
"scripts": {
"prestart": "npm run build",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"build": "tsc",
"sync:runtime": "node scripts/sync-runtime.cjs",
"sync:check": "node scripts/sync-runtime.cjs --check",
"build:sync": "npm run build && npm run sync:runtime",
"deploy:doctor": "node scripts/deploy-doctor.mjs",
"health:polling": "node scripts/run-health-polling.cjs",
"health:runtime": "node scripts/run-health-runtime.cjs",
"nl:live": "ts-node ops/liveNlCommandSuite.ts",
"nl:replay": "ts-node ops/naturalRouteReplay.ts",
"context:live": "ts-node ops/contextWindowLiveHarness.ts",
"context:ux": "ts-node ops/contextWindowLiveHarness.ts --ux",
"test": "node scripts/run-tests.cjs",
"test:live-token": "node scripts/run-tests.cjs --require-real-token"
},
"keywords": [
"telegram",
"bot",
"spark",
"memory",
"ai"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"axios": "^1.15.2",
"dotenv": "^17.2.3",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@types/node": "^25.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}