-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 835 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 835 Bytes
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
{
"name": "shot-agents",
"version": "2.0.0",
"description": "Parallel AI agent runner with Jujutsu VCS, tmux sessions, and MCP support",
"main": "shot.ts",
"type": "module",
"scripts": {
"start": "bun run shot.ts",
"parallel": "bun run shot-parallel.ts",
"install-global": "bun link",
"uninstall-global": "bun unlink"
},
"bin": {
"shot": "./shot.ts",
"shot-parallel": "./shot-parallel.ts"
},
"dependencies": {
"@types/bun": "latest"
},
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"bun": ">=1.0.0"
},
"keywords": [
"ai",
"agent",
"claude",
"codex",
"ampcode",
"warp",
"mcp",
"jujutsu",
"tmux",
"parallel",
"cli"
],
"author": "",
"license": "MIT"
}