-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.18 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
{
"name": "@bytesbrains/pi-telegram-bridge",
"version": "1.4.1",
"description": "Telegram bot bridge for pi agents — send messages, ask questions, and listen for human replies via Telegram.",
"keywords": [
"pi-package",
"pi-extension",
"telegram",
"bot",
"bridge",
"messaging"
],
"author": "BytesBrains Pte Ltd (https://bytesbrains.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/bytesbrains/pi-telegram-bridge.git"
},
"homepage": "https://github.com/bytesbrains/pi-telegram-bridge#readme",
"bugs": {
"url": "https://github.com/bytesbrains/pi-telegram-bridge/issues"
},
"license": "MIT",
"main": "./src/index.ts",
"engines": {
"node": ">=18"
},
"files": [
"src/",
"skills/",
"README.md",
"AGENTS.md",
"LICENSE"
],
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"pi": {
"extensions": [
"./src/index.ts"
],
"skills": [
"./skills"
]
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^26.1.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}