-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "@bytesbrains/pi-agent-supervisor",
"version": "1.3.1",
"description": "Runtime safety net for AI agents — blocks dangerous commands, protects files, enforces rate limits, and records sessions.",
"keywords": [
"pi-package",
"pi-extension",
"governance",
"safety",
"supervisor",
"rate-limiting",
"audit-log"
],
"author": "BytesBrains Pte Ltd (https://bytesbrains.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/bytesbrains/pi-agent-supervisor.git"
},
"homepage": "https://github.com/bytesbrains/pi-agent-supervisor#readme",
"bugs": {
"url": "https://github.com/bytesbrains/pi-agent-supervisor/issues"
},
"license": "MIT",
"main": "./src/index.ts",
"engines": {
"node": ">=18"
},
"files": [
"src/",
"patterns/",
"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": {
"vitest": "^4.1.10"
}
}