forked from badlogic/pi-telegram
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.2 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
{
"name": "@llblab/pi-telegram",
"version": "0.19.2",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Telegram runtime adapter for Pi",
"keywords": [
"pi-package",
"pi",
"telegram",
"bot",
"extension"
],
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/llblab/pi-telegram.git"
},
"homepage": "https://github.com/llblab/pi-telegram",
"bugs": {
"url": "https://github.com/llblab/pi-telegram/issues"
},
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"test": "node --experimental-strip-types --test tests/*.test.ts",
"typecheck": "tsc --noEmit",
"audit": "npm audit",
"pack:check": "npm pack --dry-run",
"validate": "npm run typecheck && npm test && npm run audit && npm run pack:check"
},
"files": [
"index.ts",
"api/",
"lib/",
"README.md",
"AGENTS.md",
"BACKLOG.md",
"CHANGELOG.md",
"docs/",
"banner.png"
],
"exports": {
".": "./index.ts",
"./inbound": "./api/inbound.ts",
"./outbound": "./api/outbound.ts",
"./updates": "./api/updates.ts",
"./commands": "./api/commands.ts",
"./sections": "./api/sections.ts",
"./status": "./api/status.ts",
"./voice": "./api/voice.ts",
"./keyboard": "./api/keyboard.ts"
},
"pi": {
"extensions": [
"./index.ts"
],
"image": "https://github.com/llblab/pi-telegram/raw/main/screenshot.png"
},
"peerDependencies": {
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@sinclair/typebox": "*"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest"
},
"overrides": {
"protobufjs": "7.6.4",
"undici": "8.5.0",
"ws": "8.21.0",
"@earendil-works/pi-coding-agent": {
"protobufjs": "7.6.4",
"undici": "8.5.0",
"ws": "8.21.0",
"@google/genai": {
"protobufjs": "7.6.4",
"ws": "8.21.0"
},
"@earendil-works/pi-ai": {
"protobufjs": "7.6.4",
"ws": "8.21.0",
"@google/genai": {
"protobufjs": "7.6.4",
"ws": "8.21.0"
}
}
}
}
}