-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 957 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 957 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
{
"name": "claude-session-manager",
"version": "1.1.0",
"description": "Monitor and clean up Claude Code background sessions - view status, kill sleeping/old/high-memory sessions",
"main": "src/index.js",
"bin": {
"claude-session-manager": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"claude",
"claude-code",
"session",
"manager",
"process",
"cleanup",
"cli",
"plugin"
],
"author": {
"name": "yhyuk",
"url": "https://github.com/yhyuk"
},
"homepage": "https://github.com/yhyuk/claude-session-manager-plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/yhyuk/claude-session-manager-plugin.git"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"cli-table3": "^0.6.3"
}
}