-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.58 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.58 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
{
"name": "sessioner",
"version": "0.2.1",
"description": "✨ An interactive CLI to search, fork, merge, prune, trim, and manage Claude Code sessions from the terminal.",
"type": "module",
"license": "MIT",
"main": "lib/bin/index.js",
"bin": {
"sessioner": "lib/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellwelwel/sessioner.git"
},
"bugs": {
"url": "https://github.com/wellwelwel/sessioner/issues"
},
"author": "https://github.com/wellwelwel",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wellwelwel"
},
"files": [
"lib"
],
"scripts": {
"start": "tsx src/bin/index.ts",
"build": "rm -rf lib && tsc",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"typecheck": "tsc --noEmit",
"update": "pu && npm i && npm update && (npm audit fix || true) && npm run lint:fix"
},
"dependencies": {
"@clack/core": "^1.0.1",
"@clack/prompts": "^1.0.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/node": "^25.3.2",
"packages-update": "^2.0.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"keywords": [
"claude",
"session",
"sessions",
"claude-code",
"cli",
"terminal",
"interactive",
"management",
"navigation",
"session-viewer",
"claude-stats",
"claude-session-viewer",
"claude-session-stats",
"claude-opus",
"claude-sonnet",
"claude-haiku",
"search"
]
}