-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.76 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
{
"name": "@edgehero/pi-dispatch-admin",
"version": "0.7.0",
"description": "Operator console (a pi extension) + skill for pi-dispatch: run the pi coding agent as a self-hosted service. A /dispatch TUI for the queue, spend caps, run history, editable GitHub, GitLab, Forgejo and Azure DevOps triggers (cron/label/comment/PR/MR/work item), and scheduled pause windows — plus AI-operable, human-confirmed controls. Runs against a live pi-dispatch deployment.",
"keywords": [
"pi-package",
"pi-extension",
"pi",
"pi-coding-agent",
"coding-agent",
"ai-agent",
"autonomous-agents",
"self-hosted",
"github",
"gitlab",
"forgejo",
"gitea",
"azure-devops",
"job-queue",
"cron",
"tui",
"dashboard"
],
"license": "MIT",
"author": "Rob Boerman",
"homepage": "https://github.com/edgehero/pi-dispatch/tree/main/admin",
"repository": {
"type": "git",
"url": "git+https://github.com/edgehero/pi-dispatch.git",
"directory": "admin"
},
"bugs": "https://github.com/edgehero/pi-dispatch/issues",
"type": "module",
"files": [
"dist",
"skills"
],
"pi": {
"extensions": [
"./dist/index.mjs"
],
"skills": [
"./skills"
],
"image": "https://raw.githubusercontent.com/edgehero/pi-dispatch/main/docs/images/banner.png?v=0.5.0"
},
"scripts": {
"build": "node build.mjs",
"prepublishOnly": "node build.mjs",
"test": "node --test \"test/*.test.mjs\""
},
"dependencies": {
"bullmq": "5.80.4",
"ioredis": "5.11.1"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "0.80.7",
"@edgehero/pi-dispatch": "*",
"esbuild": "^0.28.1",
"typebox": "1.1.38"
}
}