-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.89 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "claude-timestamps",
"displayName": "Claude Timestamps - Live Session Transcripts for Claude Code",
"description": "See timestamps on every Claude Code message. Live session transcript sidebar with full conversation history, tool calls, and search. Works across all workspaces. Free by ClawSecure.",
"version": "1.0.0",
"publisher": "ClawSecure",
"icon": "icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": ["Other"],
"keywords": [
"claude-code",
"timestamps",
"session-transcript",
"claude-code-extension",
"conversation-log",
"cursor",
"windsurf",
"ai-coding-assistant",
"developer-productivity"
],
"repository": {
"type": "git",
"url": "https://github.com/ClawSecure/claude-timestamps"
},
"homepage": "https://clawsecure.ai",
"bugs": {
"url": "https://github.com/ClawSecure/claude-timestamps/issues"
},
"license": "MIT",
"galleryBanner": {
"color": "#05060a",
"theme": "dark"
},
"activationEvents": ["onStartupFinished"],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "claude-timestamps",
"title": "Claude Timestamps",
"icon": "media/icon.svg"
}
]
},
"views": {
"claude-timestamps": [
{
"type": "webview",
"id": "claudeTimestamps.sessionView",
"name": "Session Log"
}
]
},
"commands": [
{
"command": "claudeTimestamps.refresh",
"title": "Claude Timestamps: Refresh"
},
{
"command": "claudeTimestamps.clearFilter",
"title": "Claude Timestamps: Show All Sessions"
}
],
"configuration": {
"title": "Claude Timestamps",
"properties": {
"claudeTimestamps.transcriptPath": {
"type": "string",
"default": "",
"description": "Override path to Claude transcript directory (default: ~/.claude/projects/)"
},
"claudeTimestamps.maxMessages": {
"type": "number",
"default": 500,
"description": "Max messages to show per session (0 = unlimited)"
},
"claudeTimestamps.showToolCalls": {
"type": "boolean",
"default": true,
"description": "Show tool call entries (file reads, writes, bash commands) in the transcript"
},
"claudeTimestamps.timestampFormat": {
"type": "string",
"enum": ["relative", "absolute", "both"],
"default": "both",
"description": "How to display timestamps: absolute (May 24, 3:42 PM), relative (3h ago), or both"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.0"
}
}