vaderjs 1.3.3 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/create-vader-app/example_proj/dist/vaderjs/index.js +5 -0
- package/create-vader-app/example_proj/dist/vaderjs/vader-min.js +1115 -0
- package/create-vader-app/example_proj/dist/vaderjs/vaderRouter-min.js +1 -0
- package/create-vader-app/example_proj/dist/vaderjs/worker.js +327 -0
- package/create-vader-app/example_proj/index.html +20 -0
- package/create-vader-app/example_proj/readme.md +2 -0
- package/create-vader-app/example_proj/src/pages/Index.js +13 -0
- package/create-vader-app/example_proj/src/views/app.html +16 -0
- package/create-vader-app/index.js +20 -0
- package/create-vader-app/node_modules/.package-lock.json +350 -0
- package/create-vader-app/node_modules/chalk/license +9 -0
- package/create-vader-app/node_modules/chalk/package.json +83 -0
- package/create-vader-app/node_modules/chalk/readme.md +325 -0
- package/create-vader-app/node_modules/chalk/source/index.d.ts +320 -0
- package/create-vader-app/node_modules/chalk/source/index.js +225 -0
- package/create-vader-app/node_modules/chalk/source/utilities.js +33 -0
- package/create-vader-app/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
- package/create-vader-app/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- package/create-vader-app/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
- package/create-vader-app/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
- package/create-vader-app/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
- package/create-vader-app/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
- package/create-vader-app/node_modules/commander/LICENSE +22 -0
- package/create-vader-app/node_modules/commander/Readme.md +1146 -0
- package/create-vader-app/node_modules/commander/esm.mjs +16 -0
- package/create-vader-app/node_modules/commander/index.js +27 -0
- package/create-vader-app/node_modules/commander/lib/argument.js +147 -0
- package/create-vader-app/node_modules/commander/lib/command.js +2196 -0
- package/create-vader-app/node_modules/commander/lib/error.js +45 -0
- package/create-vader-app/node_modules/commander/lib/help.js +464 -0
- package/create-vader-app/node_modules/commander/lib/option.js +331 -0
- package/create-vader-app/node_modules/commander/lib/suggestSimilar.js +100 -0
- package/create-vader-app/node_modules/commander/package-support.json +16 -0
- package/create-vader-app/node_modules/commander/package.json +90 -0
- package/create-vader-app/node_modules/commander/typings/esm.d.mts +3 -0
- package/create-vader-app/node_modules/commander/typings/index.d.ts +889 -0
- package/create-vader-app/node_modules/fs-extra/LICENSE +15 -0
- package/create-vader-app/node_modules/fs-extra/README.md +292 -0
- package/create-vader-app/node_modules/fs-extra/lib/copy/copy-sync.js +161 -0
- package/create-vader-app/node_modules/fs-extra/lib/copy/copy.js +238 -0
- package/create-vader-app/node_modules/fs-extra/lib/copy/index.js +7 -0
- package/create-vader-app/node_modules/fs-extra/lib/empty/index.js +39 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/file.js +69 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/index.js +23 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/link.js +64 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/symlink-paths.js +99 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/symlink-type.js +31 -0
- package/create-vader-app/node_modules/fs-extra/lib/ensure/symlink.js +82 -0
- package/create-vader-app/node_modules/fs-extra/lib/esm.mjs +68 -0
- package/create-vader-app/node_modules/fs-extra/lib/fs/index.js +140 -0
- package/create-vader-app/node_modules/fs-extra/lib/index.js +16 -0
- package/create-vader-app/node_modules/fs-extra/lib/json/index.js +16 -0
- package/create-vader-app/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
- package/create-vader-app/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
- package/create-vader-app/node_modules/fs-extra/lib/json/output-json.js +12 -0
- package/create-vader-app/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
- package/create-vader-app/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
- package/create-vader-app/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
- package/create-vader-app/node_modules/fs-extra/lib/move/index.js +7 -0
- package/create-vader-app/node_modules/fs-extra/lib/move/move-sync.js +55 -0
- package/create-vader-app/node_modules/fs-extra/lib/move/move.js +76 -0
- package/create-vader-app/node_modules/fs-extra/lib/output-file/index.js +40 -0
- package/create-vader-app/node_modules/fs-extra/lib/path-exists/index.js +12 -0
- package/create-vader-app/node_modules/fs-extra/lib/remove/index.js +17 -0
- package/create-vader-app/node_modules/fs-extra/lib/util/stat.js +154 -0
- package/create-vader-app/node_modules/fs-extra/lib/util/utimes.js +26 -0
- package/create-vader-app/node_modules/fs-extra/package.json +71 -0
- package/create-vader-app/node_modules/graceful-fs/LICENSE +15 -0
- package/create-vader-app/node_modules/graceful-fs/README.md +143 -0
- package/create-vader-app/node_modules/graceful-fs/clone.js +23 -0
- package/create-vader-app/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/create-vader-app/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/create-vader-app/node_modules/graceful-fs/package.json +53 -0
- package/create-vader-app/node_modules/graceful-fs/polyfills.js +355 -0
- package/create-vader-app/node_modules/inherits/LICENSE +16 -0
- package/create-vader-app/node_modules/inherits/README.md +42 -0
- package/create-vader-app/node_modules/inherits/inherits.js +7 -0
- package/create-vader-app/node_modules/inherits/inherits_browser.js +23 -0
- package/create-vader-app/node_modules/inherits/package.json +29 -0
- package/create-vader-app/node_modules/jsonfile/CHANGELOG.md +171 -0
- package/create-vader-app/node_modules/jsonfile/LICENSE +15 -0
- package/create-vader-app/node_modules/jsonfile/README.md +230 -0
- package/create-vader-app/node_modules/jsonfile/index.js +88 -0
- package/create-vader-app/node_modules/jsonfile/package.json +40 -0
- package/create-vader-app/node_modules/jsonfile/utils.js +14 -0
- package/create-vader-app/node_modules/path/LICENSE +18 -0
- package/create-vader-app/node_modules/path/README.md +15 -0
- package/create-vader-app/node_modules/path/package.json +24 -0
- package/create-vader-app/node_modules/path/path.js +628 -0
- package/create-vader-app/node_modules/process/.eslintrc +21 -0
- package/create-vader-app/node_modules/process/LICENSE +22 -0
- package/create-vader-app/node_modules/process/README.md +26 -0
- package/create-vader-app/node_modules/process/browser.js +184 -0
- package/create-vader-app/node_modules/process/index.js +2 -0
- package/create-vader-app/node_modules/process/package.json +27 -0
- package/create-vader-app/node_modules/process/test.js +199 -0
- package/create-vader-app/node_modules/universalify/LICENSE +20 -0
- package/create-vader-app/node_modules/universalify/README.md +76 -0
- package/create-vader-app/node_modules/universalify/index.js +24 -0
- package/create-vader-app/node_modules/universalify/package.json +34 -0
- package/create-vader-app/node_modules/util/LICENSE +18 -0
- package/create-vader-app/node_modules/util/README.md +15 -0
- package/create-vader-app/node_modules/util/package.json +35 -0
- package/create-vader-app/node_modules/util/support/isBuffer.js +3 -0
- package/create-vader-app/node_modules/util/support/isBufferBrowser.js +6 -0
- package/create-vader-app/node_modules/util/util.js +586 -0
- package/create-vader-app/package-lock.json +384 -0
- package/create-vader-app/package.json +18 -0
- package/package.json +1 -1
- package/vader-min.js +1 -1
- package/vader.js +4 -4
- package/worker-min.js +1 -1
- package/worker.js +49 -24
|
@@ -0,0 +1,350 @@
|
|
|
1
|
+
{
|
|
2
|
+
|
|
3
|
+
"name": "create-vader-app",
|
|
4
|
+
|
|
5
|
+
"lockfileVersion": 3,
|
|
6
|
+
|
|
7
|
+
"requires": true,
|
|
8
|
+
|
|
9
|
+
"packages": {
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
"node_modules/chalk": {
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
"version": "5.3.0",
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
"integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
"engines": {
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
"funding": {
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
},
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
"node_modules/commander": {
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
"version": "11.0.0",
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz",
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
"integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==",
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
"engines": {
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
"node": ">=16"
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
},
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
"node_modules/fs-extra": {
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
"version": "11.1.1",
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
"integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
"dependencies": {
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
"graceful-fs": "^4.2.0",
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
"jsonfile": "^6.0.1",
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
"universalify": "^2.0.0"
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
},
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
"engines": {
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
"node": ">=14.14"
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
},
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
"node_modules/graceful-fs": {
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
"version": "4.2.11",
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
},
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
"node_modules/inherits": {
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
"version": "2.0.3",
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
"integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
},
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
"node_modules/jsonfile": {
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
"version": "6.1.0",
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
"dependencies": {
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
"universalify": "^2.0.0"
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
},
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
"optionalDependencies": {
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
"graceful-fs": "^4.1.6"
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
},
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
"node_modules/path": {
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
"version": "0.12.7",
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
"resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz",
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
"integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==",
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
"dependencies": {
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
"process": "^0.11.1",
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
"util": "^0.10.3"
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
},
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
"node_modules/process": {
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
"version": "0.11.10",
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
"engines": {
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
"node": ">= 0.6.0"
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
},
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
"node_modules/universalify": {
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
"version": "2.0.0",
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
"integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
"engines": {
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
"node": ">= 10.0.0"
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
},
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
"node_modules/util": {
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
"version": "0.10.4",
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
"resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz",
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
"integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
"dependencies": {
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
"inherits": "2.0.3"
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
}
|
|
350
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "chalk",
|
|
3
|
+
"version": "5.3.0",
|
|
4
|
+
"description": "Terminal string styling done right",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": "chalk/chalk",
|
|
7
|
+
"funding": "https://github.com/chalk/chalk?sponsor=1",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "./source/index.js",
|
|
10
|
+
"exports": "./source/index.js",
|
|
11
|
+
"imports": {
|
|
12
|
+
"#ansi-styles": "./source/vendor/ansi-styles/index.js",
|
|
13
|
+
"#supports-color": {
|
|
14
|
+
"node": "./source/vendor/supports-color/index.js",
|
|
15
|
+
"default": "./source/vendor/supports-color/browser.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"types": "./source/index.d.ts",
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"test": "xo && c8 ava && tsd",
|
|
24
|
+
"bench": "matcha benchmark.js"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"source",
|
|
28
|
+
"!source/index.test-d.ts"
|
|
29
|
+
],
|
|
30
|
+
"keywords": [
|
|
31
|
+
"color",
|
|
32
|
+
"colour",
|
|
33
|
+
"colors",
|
|
34
|
+
"terminal",
|
|
35
|
+
"console",
|
|
36
|
+
"cli",
|
|
37
|
+
"string",
|
|
38
|
+
"ansi",
|
|
39
|
+
"style",
|
|
40
|
+
"styles",
|
|
41
|
+
"tty",
|
|
42
|
+
"formatting",
|
|
43
|
+
"rgb",
|
|
44
|
+
"256",
|
|
45
|
+
"shell",
|
|
46
|
+
"xterm",
|
|
47
|
+
"log",
|
|
48
|
+
"logging",
|
|
49
|
+
"command-line",
|
|
50
|
+
"text"
|
|
51
|
+
],
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/node": "^16.11.10",
|
|
54
|
+
"ava": "^3.15.0",
|
|
55
|
+
"c8": "^7.10.0",
|
|
56
|
+
"color-convert": "^2.0.1",
|
|
57
|
+
"execa": "^6.0.0",
|
|
58
|
+
"log-update": "^5.0.0",
|
|
59
|
+
"matcha": "^0.7.0",
|
|
60
|
+
"tsd": "^0.19.0",
|
|
61
|
+
"xo": "^0.53.0",
|
|
62
|
+
"yoctodelay": "^2.0.0"
|
|
63
|
+
},
|
|
64
|
+
"sideEffects": false,
|
|
65
|
+
"xo": {
|
|
66
|
+
"rules": {
|
|
67
|
+
"unicorn/prefer-string-slice": "off",
|
|
68
|
+
"@typescript-eslint/consistent-type-imports": "off",
|
|
69
|
+
"@typescript-eslint/consistent-type-exports": "off",
|
|
70
|
+
"@typescript-eslint/consistent-type-definitions": "off",
|
|
71
|
+
"unicorn/expiring-todo-comments": "off"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"c8": {
|
|
75
|
+
"reporter": [
|
|
76
|
+
"text",
|
|
77
|
+
"lcov"
|
|
78
|
+
],
|
|
79
|
+
"exclude": [
|
|
80
|
+
"source/vendor"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
}
|