-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.37 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@r3b1s/tmux-pilot",
"version": "1.0.0",
"description": "Spawn subagents as real coding agent processes in detached tmux windows — full TUI observability, guard lifecycle, settings UI, and debug log viewer.",
"repository": {
"type": "git",
"url": "https://github.com/r3b1s/tmux-pilot.git"
},
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"pi-package",
"pi-extension",
"tmux",
"subagents",
"observability",
"tmux-pilot"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"LICENSE",
"package.json"
],
"imports": {
"#src/*": {
"types": "./src/*.ts",
"default": "./dist/*.js"
},
"#test/*": "./test/*.ts"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && cp src/child/claude-code-hook.sh dist/child/claude-code-hook.sh && rm -rf dist/child/hermes-plugin dist/web && cp -r src/child/hermes-plugin dist/child/hermes-plugin && cp -r src/web dist/web",
"webui:dev": "pnpm build && node scripts/webui-dev.mjs",
"check": "tsc --noEmit",
"test": "vitest run",
"lint": "biome check src/ test/",
"format": "biome check --write src/ test/",
"prepack": "pnpm run build",
"clean": "rm -rf dist node_modules coverage"
},
"pi": {
"extensions": [
"./dist/index.js"
]
},
"packageManager": "pnpm@11.11.0",
"engines": {
"node": ">=22"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@r3b1s/pi-repair-layer": ">=0.4.1",
"@sinclair/typebox": "*"
},
"peerDependenciesMeta": {
"@r3b1s/pi-repair-layer": {
"optional": true
}
},
"dependencies": {
"@anthropic-ai/sandbox-runtime": "0.0.66",
"js-yaml": "^4.1.0",
"smol-toml": "^1.7.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@r3b1s/pi-repair-layer": "^0.4.1",
"@sinclair/typebox": "*",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.0",
"eslint": "^9.25.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.31.1",
"vitest": "^2.1.0"
}
}