-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "opencodebot",
"version": "0.1.0",
"type": "module",
"description": "Telegram mirror and companion bot for OpenCodez sessions.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Krablante/opencodebot.git"
},
"homepage": "https://github.com/Krablante/opencodebot#readme",
"bugs": {
"url": "https://github.com/Krablante/opencodebot/issues"
},
"keywords": [
"telegram",
"opencode",
"opencodez",
"codex",
"ai-agent",
"wireguard",
"sse"
],
"scripts": {
"start": "node src/main.mjs",
"check": "node scripts/check.mjs",
"test": "node --test test/*.test.mjs",
"smoke": "node scripts/smoke.mjs",
"smoke:live": "docker compose exec -T opencodebot npm run smoke -- /app/config.local.json",
"init-config": "node scripts/init-config.mjs",
"telegram-local": "node scripts/telegram-local.mjs",
"wireguard": "node scripts/wireguard.mjs",
"deploy:bot": "node scripts/deploy-bot.mjs",
"deploy:all": "node scripts/deploy-bot.mjs --all",
"update-runner:install": "node scripts/install-update-runner.mjs",
"update-runner:uninstall": "node scripts/install-update-runner.mjs --uninstall"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"mdast-util-from-markdown": "2.0.3",
"mdast-util-to-markdown": "2.1.2"
}
}