forked from amirilovic/ccpa-telegram
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.85 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.85 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
{
"name": "@marcopeg/hal",
"version": "1.7.1",
"type": "module",
"main": "dist/index.js",
"bin": {
"hal": "dist/cli.js",
"hal-dev": "bin/hal-dev.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "tsx src/cli.ts start --config examples",
"dev": "tsx watch src/cli.ts start --config examples",
"start:test": "tsx src/cli.ts start --config manual-tests",
"dev:test": "tsx watch src/cli.ts start --config manual-tests",
"wiz:test": "tsx src/cli.ts wiz --config manual-tests",
"build": "tsc && cp src/init-template.yaml dist/ && chmod +x dist/cli.js",
"typecheck": "tsc --noEmit",
"lint": "biome check src",
"lint:hard": "biome check src --error-on-warnings",
"test": "vitest run",
"test:watch": "vitest",
"lint:fix": "biome check --write src",
"prepublishOnly": "npm run build",
"sync-skills": "node .agents/scripts/sync-skills.mjs",
"prepare": "husky",
"release": "npm run lint && npm run build && release-it",
"release:patch": "npm run lint:hard && npm run build && release-it patch --ci",
"release:minor": "npm run lint:hard && npm run build && release-it minor --ci",
"release:major": "npm run lint:hard && npm run build && release-it major --ci",
"release:push": "source .env && git push && git push --tags && npm publish --access public",
"docs": "npx mdts",
"tunnel:start": "./scripts/tunnel.sh",
"tunnel:stop": "./scripts/tunnel.sh stop",
"tunnel:logs": "./scripts/tunnel.sh logs"
},
"keywords": [
"telegram",
"telegram-bot",
"claude",
"claude-code",
"github-copilot",
"copilot",
"codex",
"gemini-cli",
"cursor",
"cursors",
"opencode",
"developer-tools",
"cli-tool",
"nodejs",
"typescript",
"developer-productivity",
"automation",
"terminal",
"open-source",
"ai",
"ai-tools",
"ai-coding",
"ai-assistant",
"assistant",
"agent",
"coding-agent",
"bot"
],
"author": "",
"license": "MIT",
"description": "Telegram bot for AI coding agents. Multi-project and multi-engine: run Claude Code, Copilot, Codex, or OpenCode per project, each with its own bot.",
"repository": {
"type": "git",
"url": "git+https://github.com/marcopeg/hal.git"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"chokidar": "^5.0.0",
"croner": "^10.0.1",
"dotenv": "^17.2.3",
"grammy": "^1.39.2",
"nodejs-whisper": "^0.2.9",
"pino": "^10.2.0",
"strip-json-comments": "^5.0.3",
"yaml": "^2.8.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@release-it/conventional-changelog": "^10.0.0",
"@types/node": "^25.0.8",
"husky": "^9.1.7",
"release-it": "^19.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
}
}