-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.74 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.74 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
{
"name": "pi-background-bash",
"version": "1.0.1",
"description": "Pi extension that makes long-running bash commands async with background:true and automatic 30s backgrounding.",
"type": "module",
"keywords": [
"pi-package",
"pi",
"pi-extension",
"bash",
"background",
"async",
"terminal",
"coding-agent",
"ai-agent",
"developer-tools",
"long-running-commands"
],
"license": "MIT",
"author": "Stephen Shkeda",
"repository": {
"type": "git",
"url": "git+https://github.com/sshkeda/pi-background-bash.git"
},
"exports": {
".": "./extensions/background-bash.ts"
},
"bin": {
"pbb": "./bin/pbb.js"
},
"pi": {
"extensions": [
"./index.ts"
],
"skills": [
"./skills"
]
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "npm run typecheck && node --test --test-force-exit test/*.mjs",
"test:node": "node --test --test-force-exit",
"hooks:install": "lefthook install"
},
"peerDependencies": {
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-agent-core": "0.74.0",
"@earendil-works/pi-coding-agent": "0.74.0",
"@types/node": "^22.0.0",
"lefthook": "^1.10.10",
"pi-mock": "github:sshkeda/pi-mock",
"typebox": "^1.0.55",
"typescript": "^5.0.0"
},
"files": [
"index.ts",
"extensions/background-bash.ts",
"bin/pbb.js",
"docs",
"skills",
"README.md",
"LICENSE"
],
"dependencies": {
"pi-context": "github:sshkeda/pi-context#v0.1.6",
"pi-lane": "github:sshkeda/pi-lane#929a74b",
"pi-pending": "github:sshkeda/pi-pending#v0.1.5"
}
}