-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
{
"name": "claude-session-tracker",
"displayName": "Claude Session Tracker",
"description": "Real-time Claude Code session tracking — token usage, context window %, cache status, and 5-hour session countdown in your status bar",
"icon": "icon.png",
"version": "1.0.0",
"publisher": "REPOZY",
"repository": {
"type": "git",
"url": "https://github.com/REPOZY/Claude-Session-Tracker.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Claude Session Tracker",
"properties": {
"claudeCounter.contextWindow": {
"type": "number",
"default": 200000,
"description": "Context window size in tokens (adjust for your model/plan)"
},
"claudeCounter.refreshIntervalSeconds": {
"type": "number",
"default": 3,
"minimum": 1,
"description": "Status-bar refresh interval in seconds"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"chokidar": "^3.6.0"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "^20",
"typescript": "^5.3.0"
}
}