-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.67 KB
/
package.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-interactive-shell",
"version": "0.13.0",
"description": "Run AI coding agents in pi TUI overlays with interactive, hands-free, and dispatch supervision",
"type": "module",
"files": [
"index.ts",
"config.ts",
"key-encoding.ts",
"overlay-component.ts",
"pty-session.ts",
"reattach-overlay.ts",
"session-manager.ts",
"tool-schema.ts",
"headless-monitor.ts",
"types.ts",
"background-widget.ts",
"handoff-utils.ts",
"notification-utils.ts",
"pty-log.ts",
"pty-protocol.ts",
"runtime-coordinator.ts",
"session-query.ts",
"spawn.ts",
"skills/**/*",
"examples/",
"banner.png",
"README.md",
"CHANGELOG.md"
],
"pi": {
"extensions": [
"./index.ts"
],
"skills": [
"./skills"
],
"video": "https://github.com/nicobailon/pi-interactive-shell/raw/refs/heads/main/pi-interactive-shell-extension.mp4"
},
"dependencies": {
"@xterm/addon-serialize": "^0.13.0",
"@xterm/headless": "^5.5.0",
"typebox": "^1.1.24",
"zigpty": "^0.1.6"
},
"scripts": {
"test": "vitest run"
},
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"extension",
"interactive",
"shell",
"terminal",
"tui",
"subagent",
"claude",
"gemini",
"codex"
],
"author": "Nico Bailon",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nicobailon/pi-interactive-shell.git"
},
"bugs": {
"url": "https://github.com/nicobailon/pi-interactive-shell/issues"
},
"homepage": "https://github.com/nicobailon/pi-interactive-shell#readme",
"devDependencies": {
"vitest": "^3.2.4"
}
}