-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
168 lines (167 loc) · 4.58 KB
/
package.json
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
{
"name": "wramp-assembly-intellisense",
"displayName": "WRAMP Assembly Intellisense",
"icon": "img/icon.png",
"version": "3.3.0",
"publisher": "JLitolff-WaikatoUni",
"private": false,
"license": "",
"repository": {
"type": "git",
"url": "https://github.com/JayBigGuy10/WRAMP-Assembly-Intellisense"
},
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:wramp",
"onStartupFinished"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^4.9.4"
},
"extensionPack": [
"wanduow.wramp-syntax"
],
"contributes": {
"commands": [
{
"command": "wramp.build",
"title": "Assemble & Link",
"icon": "$(combine)"
},{
"command": "wramp.buildAndRun",
"title": "Assemble, Link & Run",
"icon": "$(play)"
}
],
"keybindings": [
{
"command": "wramp.build",
"key": "ctrl+alt+n"
},{
"command": "wramp.buildAndRun",
"key": "ctrl+alt+r"
}
],
"menus": {
"editor/context": [
{
"when": "!inOutput && config.wramp-runner.showRunCommandInEditorContextMenu && resourceLangId == wramp",
"command": "wramp.build",
"group": "navigation"
},
{
"when": "!inOutput && config.wramp-runner.showRunCommandInEditorContextMenu && resourceLangId == wramp",
"command": "wramp.buildAndRun",
"group": "navigation"
}
],
"editor/title/run": [
{
"when": "!inOutput && config.wramp-runner.showRunCommandInEditorContextMenu && resourceLangId == wramp",
"command": "wramp.buildAndRun",
"group": "navigation"
},
{
"when": "config.wramp-runner.showRunIconInEditorTitleMenu && resourceLangId == wramp",
"command": "wramp.build",
"group": "navigation"
}
],
"explorer/context": [
{
"when": "!explorerResourceIsFolder && config.wramp-runner.showRunCommandInExplorerContextMenu && resourceLangId == wramp",
"command": "wramp.build",
"group": "navigation"
},
{
"when": "!inOutput && config.wramp-runner.showRunCommandInEditorContextMenu && resourceLangId == wramp",
"command": "wramp.buildAndRun",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "WRAMP Intellisense configuration",
"properties": {
"wramp-runner.showRunIconInEditorTitleMenu": {
"type": "boolean",
"default": true,
"description": "Whether to show 'Run Code' icon in editor title menu.",
"scope": "resource"
},
"wramp-runner.showRunCommandInEditorContextMenu": {
"type": "boolean",
"default": true,
"description": "Whether to show 'Run Code' command in editor context menu.",
"scope": "resource"
},
"wramp-runner.showRunCommandInExplorerContextMenu": {
"type": "boolean",
"default": true,
"description": "Whether to show 'Run Code' command in explorer context menu.",
"scope": "resource"
},
"wramp-runner.fileDirectoryAsCwd": {
"type": "boolean",
"default": false,
"description": "Whether to use the directory of the file to be executed as the working directory.",
"scope": "resource"
},
"wramp-runner.saveAllFilesBeforeRun": {
"type": "boolean",
"default": false,
"description": "Whether to save all files before running.",
"scope": "resource"
},
"wramp-runner.saveFileBeforeRun": {
"type": "boolean",
"default": true,
"description": "Whether to save the current file before running.",
"scope": "resource"
},
"wramp-runner.preserveFocus": {
"type": "boolean",
"default": true,
"description": "Whether to preserve focus on code editor after code run is triggered.",
"scope": "resource"
},
"wramp-runner.clearPreviousOutput": {
"type": "boolean",
"default": false,
"description": "Whether to clear previous output before each run.",
"scope": "resource"
},
"wramp-runner.useIntegratedToolchain": {
"type": "boolean",
"default": true,
"description": "Whether to use the built in toolchain (May need window reload or system reboot upon change)",
"scope": "resource"
},
"wramp-runner.cwd": {
"type": "string",
"default": "",
"description": "Set the working directory.",
"scope": "resource"
}
}
}
}
}