-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.14 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
{
"name": "agent-session-kill",
"version": "0.2.1",
"description": "NPKILL-style cleanup for Claude, Pi, OMP, and GitHub Copilot Chat agent session remnants.",
"type": "module",
"license": "MIT",
"author": "Kyle Brodeur",
"homepage": "https://github.com/kylebrodeur/agent-session-kill#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kylebrodeur/agent-session-kill.git"
},
"bugs": {
"url": "https://github.com/kylebrodeur/agent-session-kill/issues"
},
"keywords": [
"claude-code",
"github-copilot",
"copilot",
"oh-my-pi",
"pi",
"sessions",
"cleanup",
"agent",
"tui",
"npkill"
],
"bin": {
"agent-session-kill": "src/cli.js",
"agentkill": "src/cli.js"
},
"files": [
"src/*.js",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "node --test",
"scan": "node src/cli.js scan",
"interactive": "node src/cli.js",
"clean:dry-run": "node src/cli.js clean --dry-run",
"prepack": "node --test"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2"
}
}