-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "@bytesbrains/pi-docker-logs",
"version": "1.0.1",
"description": "Docker log gateway for pi agents — tail logs from Docker containers in the wrok.in AI Factory via the docker CLI.",
"keywords": [
"pi-package",
"pi-extension",
"docker",
"logs",
"logging",
"ai-factory"
],
"author": "BytesBrains Pte Ltd (https://bytesbrains.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/bytesbrains/pi-docker-logs.git"
},
"homepage": "https://github.com/bytesbrains/pi-docker-logs#readme",
"bugs": {
"url": "https://github.com/bytesbrains/pi-docker-logs/issues"
},
"license": "MIT",
"main": "./src/index.ts",
"engines": {
"node": ">=18"
},
"files": [
"src/",
"README.md",
"AGENTS.md",
"LICENSE"
],
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"pi": {
"extensions": [
"./src/index.ts"
]
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}