-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
183 lines (183 loc) · 6.88 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "autoit3-debug",
"icon": "images/logo.svg.png",
"displayName": "AutoIt3 Debug",
"description": "Autoit3 Debugger",
"version": "1.2.1",
"publisher": "genius257",
"repository": {
"type": "git",
"url": "https://github.com/genius257/vscode-autoit3-debug.git"
},
"bugs": {
"url": "https://github.com/genius257/vscode-autoit3-debug/issues"
},
"engines": {
"vscode": "^1.66.0"
},
"activationEvents": [
"onDebug:au3",
"onDebugResolve:au3"
],
"main": "./dist/extension.js",
"keywords": [
"autoit3"
],
"categories": [
"Debuggers"
],
"contributes": {
"configuration": {
"title": "AutoIt",
"properties": {
"autoit3.installDir": {
"scope": "window",
"type": "string",
"default": null,
"description": "The path to a AutoIt3 installation directory."
},
"autoit3.output.colors": {
"scope": "window",
"type": "object",
"patternProperties": {
"^.$": {
"type": "string",
"enum": [
"black",
"red",
"green",
"yellow",
"blue",
"magenta",
"cyan",
"white",
"bright black",
"bright red",
"bright green",
"bright yellow",
"bright blue",
"bright magenta",
"bright cyan",
"bright white",
"orange"
]
}
},
"default": {
"!": "red",
">": "blue",
"-": "orange",
"+": "green"
},
"additionalProperties": false,
"description": "debug output color rules based on leading character of a line"
}
}
},
"debuggers": [
{
"type": "au3",
"label": "AutoIt3 debug",
"program": "./out/debugAdapter.js",
"runtime": "node",
"languages": [
"au3"
],
"configurationAttributes": {
"launch": {
"required": [
"script",
"cwd",
"executable"
],
"properties": {
"script": {
"type": "string",
"description": "Absolute path to the AutoIt3 script"
},
"cwd": {
"type": "string",
"description": "Absolute path to the working directory of the script being debugged."
},
"executable": {
"type": "string",
"description": "Absolute path to the AutoIt3 executable",
"default": "${config:autoit3.installDir}/AutoIt3.exe"
},
"arguments": {
"type": "array",
"description": "Command line arguments passed to the script.",
"items": {
"type": "string"
},
"default": []
}
}
}
},
"initialConfigurations": [
{
"type": "au3",
"request": "launch",
"name": "Run AutoIt3 script",
"script": "${file}",
"cwd": "${fileDirname}",
"executable": "${config:autoit3.installDir}/AutoIt3.exe",
"arguments": []
}
],
"configurationSnippets": [
{
"label": "AutoIt3 Debug: Launch",
"description": "A new configuration for 'debugging' a user selected AutoIt3 script.",
"body": {
"type": "au3",
"request": "launch",
"name": "Run AutoIt3 script",
"script": "^\"\\${file}\"",
"cwd": "\"\\${fileDirname}\"",
"executable": "^\"\\${config:autoit3.installDir}/AutoIt3.exe\"",
"arguments": []
}
}
]
}
]
},
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"esbuild-base": "esbuild ./src/extension.ts --bundle --tsconfig=./tsconfig.json --external:vscode --format=cjs --platform=node --outfile=dist/extension.js",
"watch": "npm run -S esbuild-base -- --sourcemap --sources-content=false --watch",
"build": "npm run -S esbuild-base -- --sourcemap --sources-content=false",
"package": "vsce package",
"publish": "vsce publish",
"publish-pre-release": "vsce publish --pre-release",
"vscode:prepublish": "rimraf dist && npm run -S esbuild-base -- --minify",
"test": "npm run typecheck"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.36",
"@types/vscode": "^1.66.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vscode/debugadapter": "^1.56.0",
"@vscode/debugadapter-testsupport": "^1.56.0",
"@vscode/vsce": "^2.22.0",
"await-notify": "^1.0.1",
"base64-js": "^1.5.1",
"esbuild": "^0.14.29",
"eslint": "^8.12.0",
"events": "^3.3.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"ovsx": "^0.9.5",
"path-browserify": "^1.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.3",
"url": "^0.11.0"
}
}