deno.land / x / denon@2.5.0 / schema.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "denosaurs/denon.json", "definitions": { "script": { "description": "A script representation.", "type": ["string", "object", "array"], "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/script_object" }, { "$ref": "#/definitions/script_array" } ] }, "script_array": { "description": "A script array representation.", "type": "array", "items": { "type": ["string", "object"], "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/script_object" } ] } }, "script_object": { "type": "object", "description": "A complex script representation.", "allOf": [ { "$ref": "#/definitions/script_options" }, { "properties": { "cmd": { "description": "The command that has to be executed (can be in compact form).", "type": "string" }, "desc": { "description": "Shown when listing all available scripts.", "type": "string" } } } ], "required": ["cmd"] }, "script_options": { "type": "object", "properties": { "env": { "description": "Environment variables passed to the script.", "$ref": "#/definitions/env" }, "allow": { "description": "Permissions that are granted to the script.", "$ref": "#/definitions/flags" }, "importMap": { "description": "Load import map file.", "type": "string", "default": "importmap.json" }, "tsconfig": { "description": "Load tsconfig.json configuration file.", "type": "string", "default": "tsconfig.json" }, "unstable": { "description": "Script is using unstable features of deno stdlib.", "type": "boolean", "default": false }, "watch": { "description": "Enable file watching.", "type": "boolean", "default": true }, "inspect": { "description": "Activate inspector on host:port", "type": "string", "default": "localhost:9229" }, "inspectBrk": { "description": "Activate inspector on host:port, and break on first line of script.", "type": "string", "default": "localhost:9229" }, "lock": { "description": "Check specified lockfile.", "type": "string", "default": "lock.json" }, "cert": { "description": "Load certificate authority from PEM encoded file.", "type": "string", "default": "cert.pem" }, "log": { "description": "Set log level.", "type": "string", "enum": ["debug", "info"], "default": "info" }, "stdin": { "description": "Set stdin file type.", "$ref": "#/definitions/stdfile", "default": "inherit" }, "stdout": { "description": "Set stdout file type.", "$ref": "#/definitions/stdfile", "default": "inherit" }, "stderr": { "description": "Set stderr file type.", "$ref": "#/definitions/stdfile", "default": "inherit" }, "additionalProperties": false } }, "stdfile": { "type": ["string", "number"], "anyOf": [ { "type": "string", "enum": ["inherit", "piped", "null"] }, { "type": "number" } ] }, "env": { "type": "object", "additionalProperties": { "description": "Environment variable.", "type": "string" } }, "flags": { "type": ["array", "string", "object"], "anyOf": [ { "type": "array", "description": "Flag array.", "items": { "type": "string" } }, { "type": "string", "description": "Single flag." }, { "type": "object", "description": "Key value flag.", "additionalProperties": { "type": ["string", "boolean"] } } ] }, "watcher": { "type": "object", "properties": { "paths": { "type": "array", "items": { "type": "string" } }, "interval": { "description": "Number of milliseconds after the last change.", "type": "number", "default": 350 }, "exts": { "description": "The file extensions that watcher will scan for.", "type": "array", "items": { "type": "string" }, "default": ["js", "jsx", "ts", "tsx", "json"] }, "match": { "description": "The globs that the watcher will scan for.", "type": "array", "items": { "type": "string" }, "default": ["**/*.*"] }, "skip": { "description": "The globs that the watcher will skip.", "type": "array", "items": { "type": "string" }, "default": ["*/.git/*"] }, "legacy": { "description": "Use the legacy file monitoring algorithm. (walking)", "type": "boolean", "default": false } }, "additionalProperties": false }, "logger": { "type": "object", "properties": { "quiet": { "description": "Output only errors", "type": "boolean", "default": false }, "debug": { "description": "Output debug messages", "type": "boolean", "default": false }, "fullscreen": { "description": "Clear screen after every restart.", "type": "boolean", "default": false } }, "additionalProperties": false } }, "type": "object", "allOf": [ { "$ref": "#/definitions/script_options" }, { "properties": { "scripts": { "description": "Contains the definition of all the scripts that can be run.", "type": "object", "additionalProperties": { "$ref": "#/definitions/script" } }, "watcher": { "$ref": "#/definitions/watcher" }, "logger": { "$ref": "#/definitions/logger" } } } ], "required": ["scripts"]}
denon

Version Info

Tagged at
2 years ago