-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.15 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.15 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
{
"name": "ds-visualizer",
"displayName": "DS Visualizer",
"icon": "resources/icon.png",
"description": "Visualize arrays, stacks, queues, linked lists, maps, trees, graphs, and disjoint sets from Java, Python, C++, C, or @ds DSL.",
"version": "0.0.2",
"publisher": "AtharAkram",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xthxr/data-structure-visualizer.git"
},
"homepage": "https://github.com/xthxr/data-structure-visualizer#readme",
"bugs": {
"url": "https://github.com/xthxr/data-structure-visualizer/issues"
},
"engines": {
"vscode": "^1.85.0"
},
"keywords": [
"data-structures",
"visualization",
"algorithms",
"education",
"java",
"python",
"cpp",
"c",
"graph",
"tree"
],
"categories": [
"Visualization",
"Education"
],
"files": [
"out/**",
"webview/**",
"resources/**",
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"panel": [
{
"id": "dsVisualizerPanel",
"title": "DS Visualizer",
"icon": "resources/ds-visualizer.svg"
}
]
},
"commands": [
{
"command": "dsVisualizer.start",
"title": "DS Visualizer: Start"
},
{
"command": "dsVisualizer.refresh",
"title": "DS Visualizer: Refresh Output"
}
],
"views": {
"dsVisualizerPanel": [
{
"id": "dsVisualizer.outputView",
"name": "Output",
"type": "webview"
}
]
},
"menus": {
"view/title": [
{
"command": "dsVisualizer.refresh",
"when": "view == dsVisualizer.outputView",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"package:vsix": "npx @vscode/vsce package",
"publish:vsce": "npx @vscode/vsce publish"
},
"devDependencies": {
"@types/node": "^20.14.15",
"@types/vscode": "^1.85.0",
"typescript": "^5.5.4"
}
}