-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "claude-session-tracker",
"version": "2.9.6",
"description": "Claude Code 세션을 GitHub Projects에 자동으로 트래킹하는 hook 설치 도구",
"type": "module",
"bin": {
"claude-session-tracker": "./bin/index.mjs"
},
"scripts": {
"test": "node test/compat.mjs && node test/cli.mjs && python3 -m py_compile hooks/cst_github_utils.py hooks/cst_hash_chain.py hooks/cst_session_start.py hooks/cst_prompt_to_github_projects.py hooks/cst_session_stop.py hooks/cst_post_tool_use.py hooks/cst_mark_done.py hooks/cst_session_end.py"
},
"files": [
"bin/",
"hooks/cst_*.py"
],
"dependencies": {
"@clack/prompts": "^0.9.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"claude",
"claude-code",
"github-projects",
"hook",
"session-tracker"
],
"author": "ej31",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ej31/claude-session-tracker.git"
},
"homepage": "https://github.com/ej31/claude-session-tracker#readme",
"bugs": {
"url": "https://github.com/ej31/claude-session-tracker/issues"
}
}