-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
158 lines (158 loc) · 5.1 KB
/
package.json
File metadata and controls
158 lines (158 loc) · 5.1 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
{
"name": "dusome-rust",
"displayName": "Dusome Rust",
"description": "A VS Code extension to generate a Rust setup for Mr. Dusome's class.",
"version": "4.0.5",
"publisher": "Dusome",
"engines": {
"vscode": "^1.50.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "extension.js",
"contributes": {
"commands": [
{
"command": "extension.showRustMenu",
"title": "Rust: Show Menu",
"icon": "$(gear)"
},
{
"command": "extension.createRustProject",
"title": "Rust: Create Project"
},
{
"command": "extension.checkWebDependencies",
"title": "Rust: Check Web Dependencies"
},
{
"command": "extension.disposableButtons",
"title": "Rust: Add Text Button Module From The Web"
},
{
"command": "extension.disposableAnimatedImg",
"title": "Rust: Animated Image Module From The Web"
},
{
"command": "extension.disposableSliderCreate",
"title": "Rust: Slider Module From The Web"
},
{
"command": "extension.disposableListviewCreate",
"title": "Rust: ListView Module From The Web"
},
{
"command": "extension.disposableLabelCreate",
"title": "Rust: Add Label Module From The Web"
},
{
"command": "extension.disposableImgButton",
"title": "Rust: Add Image Button Module From The Web"
},
{
"command": "extension.disposableGrid",
"title": "Rust: Add Grid Module From The Web"
},
{
"command": "extension.disposableaddImage",
"title": "Rust: Add Image Module From The Web"
},
{
"command": "extension.disposableTextInput",
"title": "Rust: Add Text Input Module From The Web"
},
{
"command": "extension.disposableWebOut",
"title": "Rust: Build Web Output (Advanced)"
},
{
"command": "extension.disposableWebOutBasic",
"title": "Rust: Build Web Output (Basic)"
},
{
"command": "extension.disposableWebRun",
"title": "Rust: Run Web Server"
},
{
"command": "extension.disposableCargoRun",
"title": "Rust: Run Program"
},
{
"command": "extension.disposableaddCollsion",
"title": "Rust: Collision Module"
},
{
"command": "extension.disposableAdvancedHelp",
"title": "Rust: Add Advanced Help File From The Web"
},
{
"command": "extension.disposableTextFiles",
"title": "Rust: Add Text Files Module From The Web"
},
{
"command": "extension.disposableScale",
"title": "Rust: Add Scale Module From The Web"
},
{
"command": "extension.disposableDatabase",
"title": "Rust: Add Database Module From The Web"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.createRustProject",
"when": "explorerResourceIsFolder",
"group": "navigation"
}
],
"editor/title": [
{
"command": "extension.showRustMenu",
"group": "navigation",
"title": "$(list-selection) Rust Actions",
"tooltip": "Open Rust Actions Menu"
}
],
"editor/context": [
{
"command": "extension.disposableCargoRun",
"category": "Rust",
"title": "Rust: Run Program",
"group": "navigation"
},
{
"command": "extension.showRustMenu",
"when": "resourceLangId == rust",
"group": "navigation",
"title": "Rust: Menu Actions"
}
]
}
},
"files": [
"extension.js"
],
"scripts": {
"package": "npx @vscode/vsce package",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Mathew-D/vs_code_rust"
},
"keywords": [
"vscode",
"extension",
"rust",
"macroquad"
],
"author": "Mathew Dusome",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.5.4",
"@vscode/vsce": "^2.32.0",
"glob": "^10.4.5"
}
}