-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.23 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
{
"name": "omp-telegram",
"version": "0.12.4",
"description": "Standalone Telegram bridge, session topics, and herdr control plane for omp",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TerrifiedBug/omp-telegram.git"
},
"homepage": "https://github.com/TerrifiedBug/omp-telegram#readme",
"bugs": {
"url": "https://github.com/TerrifiedBug/omp-telegram/issues"
},
"keywords": [
"omp",
"telegram",
"herdr",
"coding-agent",
"telegram-bot"
],
"files": [
"src/index.ts",
"src/access.ts",
"src/blocked.ts",
"src/api.ts",
"src/bridge.ts",
"src/daemon.ts",
"src/control.ts",
"src/inbox.ts",
"src/markdown.ts",
"src/outbound.ts",
"src/prompts.ts",
"src/topics.ts",
"README.md",
"SECURITY.md",
"docs",
"LICENSE"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test",
"check": "bun run typecheck && bun run test"
},
"omp": {
"extensions": [
"./src/index.ts"
]
},
"devDependencies": {
"@oh-my-pi/pi-coding-agent": "^17.0.0",
"typescript": "^5.7.0",
"@types/node": "^22.0.0"
},
"overrides": {
"@opentelemetry/core": "2.8.0"
}
}