-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.67 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
{
"name": "pi-background-run",
"version": "0.7.0",
"description": "Run long shell commands detached in the background for pi and oh-my-pi (omp); get woken on completion. Output lands in a file; context stays clean.",
"type": "module",
"engines": {
"node": ">=20"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"exports": {
".": "./extension/index.ts"
},
"pi": {
"extensions": [
"./extension/index.ts"
],
"skills": [
"./skills/run-bg",
"./skills/digest-config"
]
},
"omp": {
"extensions": [
"./extension/index.ts"
]
},
"scripts": {
"test": "bun test extension/index.test.ts",
"lint": "tsc --noEmit",
"lint:pr-title": "bun scripts/check-conventional-commit.ts"
},
"files": [
"extension/",
"!extension/index.test.ts",
"skills/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stablekernel/pi-background-run.git"
},
"homepage": "https://github.com/stablekernel/pi-background-run#readme",
"bugs": {
"url": "https://github.com/stablekernel/pi-background-run/issues"
},
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"omp",
"oh-my-pi",
"background",
"bgrun",
"ai",
"agent",
"extension"
],
"author": "stablekernel",
"dependencies": {},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@types/node": "^24.0.0",
"typebox": "^1.3.0",
"typescript": "^5.7.0"
}
}