-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
261 lines (261 loc) · 6.35 KB
/
Copy pathpackage.json
File metadata and controls
261 lines (261 loc) · 6.35 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
{
"name": "codegraphy",
"version": "1.0.0",
"packageManager": "pnpm@10.32.0",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"build:devhost": "node scripts/build-devhost.mjs",
"watch": "pnpm --filter @codegraphy-dev/extension run watch",
"dev": "pnpm --filter @codegraphy-dev/extension run dev",
"test": "pnpm run test:unit && pnpm run test:playwright",
"test:unit": "turbo run test",
"test:release": "node --test tests/release/*.test.mjs",
"test:playwright": "node scripts/run-playwright-turbo.mjs",
"test:vscode": "pnpm -r --if-present run test:vscode",
"check:acceptance-specs": "node scripts/guard-acceptance-spec-edits.mjs",
"lint": "turbo run lint",
"crap": "quality-tools crap",
"boundaries": "quality-tools boundaries",
"reachability": "quality-tools reachability",
"mutate": "tsx scripts/mutate.ts",
"scrap": "quality-tools scrap",
"organize": "node scripts/run-organize.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"package:vsix": "node scripts/release-core.mjs package",
"check:vsix-native-artifacts": "node scripts/validate-vsix-native-artifacts.mjs",
"check:vsix-activation": "node scripts/smoke-installed-vsix.mjs",
"publish:vsce": "node scripts/release-core.mjs publish",
"release:publish": "node scripts/release.mjs publish",
"typecheck": "turbo run typecheck",
"prepare": "husky"
},
"displayName": "CodeGraphy",
"description": "Visualize your codebase as an interactive dependency graph inside VS Code",
"publisher": "codegraphy",
"license": "MIT",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#023859",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/joesobo/CodeGraphyV4.git"
},
"homepage": "https://github.com/joesobo/CodeGraphyV4#readme",
"bugs": {
"url": "https://github.com/joesobo/CodeGraphyV4/issues"
},
"engines": {
"node": ">=20",
"vscode": "^1.85.0"
},
"files": [
"dist/**",
"assets/**",
"docs/**",
"README.md",
"CONTRIBUTING.md",
"LICENSE"
],
"categories": [
"Visualization",
"Other"
],
"keywords": [
"codegraphy",
"graph",
"visualization",
"dependencies",
"imports",
"codebase"
],
"activationEvents": [
"onUri"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "codegraphy.open",
"title": "CodeGraphy: Open"
},
{
"command": "codegraphy.openInEditor",
"title": "CodeGraphy: Open in Editor"
},
{
"command": "codegraphy.fitView",
"title": "CodeGraphy: Fit All Nodes in View"
},
{
"command": "codegraphy.zoomIn",
"title": "CodeGraphy: Zoom In"
},
{
"command": "codegraphy.zoomOut",
"title": "CodeGraphy: Zoom Out"
},
{
"command": "codegraphy.undo",
"title": "CodeGraphy: Undo"
},
{
"command": "codegraphy.redo",
"title": "CodeGraphy: Redo"
},
{
"command": "codegraphy.exportPng",
"title": "CodeGraphy: Export as PNG"
},
{
"command": "codegraphy.exportSvg",
"title": "CodeGraphy: Export as SVG"
},
{
"command": "codegraphy.exportJpeg",
"title": "CodeGraphy: Export as JPEG"
},
{
"command": "codegraphy.exportJson",
"title": "CodeGraphy: Export Graph as JSON"
},
{
"command": "codegraphy.exportMarkdown",
"title": "CodeGraphy: Export Graph as Markdown"
},
{
"command": "codegraphy.clearCache",
"title": "CodeGraphy: Clear Cache and Refresh"
},
{
"command": "codegraphy.toggleDepthMode",
"title": "CodeGraphy: Toggle Depth Mode"
},
{
"command": "codegraphy.cycleLayout",
"title": "CodeGraphy: Cycle Layout"
},
{
"command": "codegraphy.toggleDimension",
"title": "CodeGraphy: Toggle 2D/3D"
}
],
"keybindings": [
{
"command": "codegraphy.fitView",
"key": "0",
"when": "codegraphy.graphFocused"
},
{
"command": "codegraphy.zoomIn",
"key": "=",
"when": "codegraphy.graphFocused"
},
{
"command": "codegraphy.zoomIn",
"key": "shift+=",
"when": "codegraphy.graphFocused"
},
{
"command": "codegraphy.zoomOut",
"key": "-",
"when": "codegraphy.graphFocused"
},
{
"command": "codegraphy.undo",
"key": "ctrl+z",
"mac": "cmd+z",
"when": "codegraphy.viewVisible && activeViewlet == 'workbench.view.extension.codegraphy' && !editorTextFocus && !inputFocus"
},
{
"command": "codegraphy.redo",
"key": "ctrl+shift+z",
"mac": "cmd+shift+z",
"when": "codegraphy.viewVisible && activeViewlet == 'workbench.view.extension.codegraphy' && !editorTextFocus && !inputFocus"
},
{
"command": "codegraphy.redo",
"key": "ctrl+y",
"when": "codegraphy.viewVisible && activeViewlet == 'workbench.view.extension.codegraphy' && !editorTextFocus && !inputFocus"
},
{
"command": "codegraphy.toggleDepthMode",
"key": "v",
"when": "codegraphy.graphFocused"
},
{
"command": "codegraphy.cycleLayout",
"key": "l",
"when": "codegraphy.graphFocused"
},
{
"command": "codegraphy.toggleDimension",
"key": "t",
"when": "codegraphy.graphFocused"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "codegraphy",
"title": "CodeGraphy",
"icon": "assets/icon-dark.svg"
}
]
},
"views": {
"codegraphy": [
{
"type": "webview",
"id": "codegraphy.graphView",
"name": "Graph",
"icon": "assets/icon.svg"
},
{
"type": "webview",
"id": "codegraphy.timelineView",
"name": "Timeline",
"icon": "assets/icon.svg",
"visibility": "collapsed"
}
]
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.0.0",
"@poleski/quality-tools": "^0.2.0",
"@types/node": "^20.11.0",
"@types/vscode": "^1.85.0",
"@vitest/coverage-istanbul": "^3.2.4",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.25.0",
"eslint": "^9.0.0",
"eslint-plugin-mocha": "^11.2.0",
"eslint-plugin-playwright": "^2.9.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"glob": "^13.0.6",
"globals": "^15.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"tsx": "^4.21.0",
"turbo": "^2.5.8",
"typescript": "^5.3.3",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
},
"overrides": {
"mocha": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.4"
}
}
}