-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.86 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
{
"name": "@artickc/opencode-telegram-bot",
"version": "2.0.0",
"description": "Control OpenCode from Telegram over ACP (JSON-RPC/stdio). Switch projects, resume and attach to live coding sessions, stream responses with diffs, queue follow-ups, and run 24/7 as a cross-platform background service.",
"type": "module",
"main": "src/index.ts",
"bin": {
"opencode-tg": "bin/opencode-tg.mjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"bin",
"scripts",
"tsconfig.json",
".env.example",
"CHANGELOG.md",
"docs"
],
"engines": {
"node": ">=20"
},
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck",
"setup": "node scripts/setup.mjs",
"service": "tsx src/cli.ts",
"install:service": "tsx src/cli.ts install",
"uninstall:service": "tsx src/cli.ts uninstall",
"service:status": "tsx src/cli.ts status",
"service:logs": "tsx src/cli.ts logs"
},
"keywords": [
"opencode",
"opencode-ai",
"telegram",
"telegram-bot",
"ai-agent",
"ai-coding-assistant",
"mobile-coding",
"chatops",
"devtools",
"daemon",
"cross-platform",
"grammy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/artickc/opencode-telegram-bot.git"
},
"homepage": "https://github.com/artickc/opencode-telegram-bot#readme",
"bugs": {
"url": "https://github.com/artickc/opencode-telegram-bot/issues"
},
"license": "MIT",
"dependencies": {
"diff": "^7.0.0",
"dotenv": "^16.4.7",
"grammy": "^1.30.0",
"tsx": "^4.19.2"
},
"optionalDependencies": {
"@homebridge/node-pty-prebuilt-multiarch": "0.13.1"
},
"devDependencies": {
"@types/diff": "^7.0.0",
"@types/node": "^22.10.0",
"typescript": "^5.7.2"
}
}