-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
173 lines (173 loc) · 4.26 KB
/
package.json
File metadata and controls
173 lines (173 loc) · 4.26 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
{
"name": "depviz",
"displayName": "DepViz — Dependency Visualizer",
"description": "Visualize function calls, call stacks, and architecture diagrams in VS Code. Python/TS/JS.",
"version": "0.1.6",
"publisher": "Zentch",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Visualization"
],
"icon": "media/depviz-icon.png",
"galleryBanner": {
"color": "#0e1116",
"theme": "dark"
},
"keywords": [
"function call",
"call stack",
"dependency",
"call graph",
"import graph",
"visualization",
"architecture",
"code map",
"python",
"typescript",
"javascript",
"code diagram",
"canvas"
],
"activationEvents": [
"onCommand:depviz.open",
"onCommand:depviz.import",
"onCustomEditor:depviz.graph"
],
"extensionKind": [
"workspace"
],
"main": "./out/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "depviz.graph",
"displayName": "DepViz Graph",
"priority": "default",
"selector": [
{
"filenamePattern": "*.dv"
}
]
}
],
"configuration": {
"title": "DepViz",
"properties": {
"depviz.maxFiles": {
"type": "number",
"default": 2000,
"minimum": 1,
"description": "Maximum number of files to import per operation."
},
"depviz.maxFileSizeMB": {
"type": "number",
"default": 1.5,
"minimum": 1,
"description": "Skip files larger than this size (in megabytes)."
},
"depviz.includeGlobs": {
"type": "array",
"default": [
"**/*"
],
"items": {
"type": "string"
},
"description": "Glob patterns to include when importing from folders."
},
"depviz.excludeGlobs": {
"type": "array",
"default": [
"**/.git/**",
"**/node_modules/**",
"**/__pycache__/**"
],
"items": {
"type": "string"
},
"description": "Glob patterns to exclude when importing from folders."
}
}
},
"commands": [
{
"command": "depviz.open",
"title": "DepViz: Open",
"icon": {
"light": "./media/depviz-light.svg",
"dark": "./media/depviz-dark.svg"
}
},
{
"command": "depviz.import",
"title": "DepViz: Import into Canvas",
"icon": {
"light": "./media/depviz-light.svg",
"dark": "./media/depviz-dark.svg"
}
}
],
"keybindings": [
{
"command": "depviz.open",
"key": "ctrl+alt+d",
"mac": "cmd+alt+d",
"when": "editorTextFocus"
}
],
"menus": {
"explorer/context": [
{
"command": "depviz.import",
"group": "navigation@100"
}
],
"editor/title": [
{
"command": "depviz.open",
"group": "navigation@100"
}
]
}
},
"capabilities": {
"untrustedWorkspaces": {
"supported": false
},
"virtualWorkspaces": false
},
"repository": {
"type": "git",
"url": "https://github.com/ZENTCH-Q/DepViz-Dependency-Visualizer"
},
"homepage": "https://github.com/ZENTCH-Q/DepViz-Dependency-Visualizer",
"bugs": {
"url": "https://github.com/ZENTCH-Q/DepViz-Dependency-Visualizer/issues"
},
"scripts": {
"build": "esbuild src/extension.ts --bundle --minify --platform=node --target=node18 --external:vscode --outfile=out/extension.js",
"vscode:prepublish": "npm run build",
"watch": "esbuild src/extension.ts --bundle --platform=node --target=node18 --outfile=out/extension.js --watch"
},
"files": [
"out/**",
"media/**",
"README.md",
"package.json",
"LICENSE"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^24.7.0",
"@types/vscode": "^1.80.0",
"esbuild": "^0.24.0",
"toml": "^3.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"build": "^0.1.4",
"run": "^1.5.0"
}
}