-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
228 lines (228 loc) Β· 7.16 KB
/
package.json
File metadata and controls
228 lines (228 loc) Β· 7.16 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
{
"name": "github-copilot-chat-history-analyzer",
"displayName": "π Ultimate VS Code History Explorer",
"description": "Explore your complete VS Code journey with interactive visualizations, AI-powered insights, and time-travel through your coding history",
"version": "1.0.0",
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "github-copilot-chat-history-analyzer.refresh",
"title": "Refresh Chat History",
"icon": "$(refresh)"
},
{
"command": "github-copilot-chat-history-analyzer.openSession",
"title": "Open Chat Session"
},
{
"command": "github-copilot-chat-history-analyzer.showAnalytics",
"title": "Show Chat Analytics",
"icon": "$(graph)"
},
{
"command": "github-copilot-chat-history-analyzer.search",
"title": "Search Chat History",
"icon": "$(search)"
},
{
"command": "github-copilot-chat-history-analyzer.setStoragePath",
"title": "Set Chat Storage Path",
"icon": "$(folder)"
},
{
"command": "github-copilot-chat-history-analyzer.clearStoragePath",
"title": "Clear Custom Storage Path",
"icon": "$(clear-all)"
},
{
"command": "github-copilot-chat-history-analyzer.openTimelineVisualization",
"title": "π Open Interactive Timeline",
"icon": "$(timeline-view)"
},
{
"command": "github-copilot-chat-history-analyzer.openProjectMap",
"title": "πΊοΈ Project Relationship Map",
"icon": "$(graph-scatter)"
},
{
"command": "github-copilot-chat-history-analyzer.aiInsights",
"title": "π€ AI Coding Insights",
"icon": "$(brain)"
},
{
"command": "github-copilot-chat-history-analyzer.naturalLanguageSearch",
"title": "π Natural Language Search",
"icon": "$(search-fuzzy)"
},
{
"command": "github-copilot-chat-history-analyzer.liveDashboard",
"title": "π Live Analytics Dashboard",
"icon": "$(dashboard)"
},
{
"command": "github-copilot-chat-history-analyzer.codeEvolution",
"title": "𧬠Code Evolution Timeline",
"icon": "$(git-branch)"
},
{
"command": "github-copilot-chat-history-analyzer.exportData",
"title": "π€ Export Analysis Data",
"icon": "$(export)"
},
{
"command": "github-copilot-chat-history-analyzer.test",
"title": "π§ͺ Test Extension",
"icon": "$(beaker)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "copilot-chat-history",
"title": "π VS Code Explorer",
"icon": "$(rocket)"
}
]
},
"views": {
"copilot-chat-history": [
{
"id": "chatHistory",
"name": "π¬ Chat Timeline",
"icon": "$(comment-discussion)",
"contextualTitle": "Chat History Explorer"
},
{
"id": "workspaceAnalytics",
"name": "ποΈ Workspace Analytics",
"icon": "$(folder-library)",
"contextualTitle": "Workspace Analytics"
},
{
"id": "aiInsightsView",
"name": "π€ AI Insights",
"icon": "$(brain)",
"contextualTitle": "Coding Patterns & Insights"
},
{
"id": "projectConnections",
"name": "π Project Network",
"icon": "$(graph)",
"contextualTitle": "Project Relationships"
}
]
},
"menus": {
"view/title": [
{
"command": "github-copilot-chat-history-analyzer.refresh",
"when": "view == chatHistory",
"group": "navigation@1"
},
{
"command": "github-copilot-chat-history-analyzer.showAnalytics",
"when": "view == chatHistory",
"group": "navigation@2"
},
{
"command": "github-copilot-chat-history-analyzer.search",
"when": "view == chatHistory",
"group": "navigation"
},
{
"command": "github-copilot-chat-history-analyzer.setStoragePath",
"when": "view == chatHistory",
"group": "navigation"
},
{
"command": "github-copilot-chat-history-analyzer.clearStoragePath",
"when": "view == chatHistory",
"group": "navigation"
},
{
"command": "github-copilot-chat-history-analyzer.openTimelineVisualization",
"when": "view == chatHistory",
"group": "navigation@1"
},
{
"command": "github-copilot-chat-history-analyzer.liveDashboard",
"when": "view == workspaceExplorer",
"group": "navigation@1"
},
{
"command": "github-copilot-chat-history-analyzer.openProjectMap",
"when": "view == projectConnections",
"group": "navigation@1"
},
{
"command": "github-copilot-chat-history-analyzer.aiInsights",
"when": "view == aiInsightsView",
"group": "navigation@1"
}
]
},
"configuration": {
"title": "π VS Code History Explorer",
"properties": {
"vscodeHistoryExplorer.enableAdvancedAnalytics": {
"type": "boolean",
"default": true,
"description": "Enable AI-powered pattern recognition and advanced analytics"
},
"vscodeHistoryExplorer.timelineAnimation": {
"type": "boolean",
"default": true,
"description": "Enable smooth animations in timeline visualization"
},
"vscodeHistoryExplorer.dataRetentionDays": {
"type": "number",
"default": 365,
"description": "Number of days to retain analytics data"
},
"vscodeHistoryExplorer.includeGlobalStorage": {
"type": "boolean",
"default": true,
"description": "Include global storage data in analysis"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.100.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.8.3"
}
}