@elizaos/config 1.3.0 → 1.3.2
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/dist/index.d.ts +5 -375
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import * as _typescript_eslint_eslint_plugin_use_at_your_own_risk_rules from '@typescript-eslint/eslint-plugin/use-at-your-own-risk/rules';
|
|
2
2
|
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
|
|
3
|
-
import
|
|
4
|
-
import _typescript_eslint_parser__default from '@typescript-eslint/parser';
|
|
5
|
-
import * as eslint from 'eslint';
|
|
3
|
+
import typescriptParser from '@typescript-eslint/parser';
|
|
6
4
|
|
|
7
5
|
var $schema$3 = "https://json.schemastore.org/tsconfig";
|
|
8
6
|
var compilerOptions$3 = {
|
|
@@ -194,215 +192,7 @@ var tsconfig_test = {
|
|
|
194
192
|
};
|
|
195
193
|
|
|
196
194
|
declare const _default$2: ({
|
|
197
|
-
readonly rules: Readonly<
|
|
198
|
-
} | {
|
|
199
|
-
files: string[];
|
|
200
|
-
languageOptions: {
|
|
201
|
-
parser: typeof _typescript_eslint_parser;
|
|
202
|
-
parserOptions: {
|
|
203
|
-
ecmaVersion: number;
|
|
204
|
-
sourceType: string;
|
|
205
|
-
ecmaFeatures: {
|
|
206
|
-
jsx: boolean;
|
|
207
|
-
};
|
|
208
|
-
};
|
|
209
|
-
globals: {
|
|
210
|
-
console: string;
|
|
211
|
-
process: string;
|
|
212
|
-
Buffer: string;
|
|
213
|
-
__dirname: string;
|
|
214
|
-
__filename: string;
|
|
215
|
-
module: string;
|
|
216
|
-
require: string;
|
|
217
|
-
global: string;
|
|
218
|
-
globalThis: string;
|
|
219
|
-
exports: string;
|
|
220
|
-
setTimeout: string;
|
|
221
|
-
clearTimeout: string;
|
|
222
|
-
setInterval: string;
|
|
223
|
-
clearInterval: string;
|
|
224
|
-
setImmediate: string;
|
|
225
|
-
clearImmediate: string;
|
|
226
|
-
FormData: string;
|
|
227
|
-
File: string;
|
|
228
|
-
Blob: string;
|
|
229
|
-
URL: string;
|
|
230
|
-
URLSearchParams: string;
|
|
231
|
-
ArrayBuffer: string;
|
|
232
|
-
Uint8Array: string;
|
|
233
|
-
Float32Array: string;
|
|
234
|
-
fetch: string;
|
|
235
|
-
performance: string;
|
|
236
|
-
AbortController: string;
|
|
237
|
-
AbortSignal: string;
|
|
238
|
-
NodeJS: string;
|
|
239
|
-
btoa: string;
|
|
240
|
-
atob: string;
|
|
241
|
-
Bun: string;
|
|
242
|
-
Response: string;
|
|
243
|
-
BufferEncoding: string;
|
|
244
|
-
};
|
|
245
|
-
};
|
|
246
|
-
plugins: {
|
|
247
|
-
'@typescript-eslint': {
|
|
248
|
-
configs: Record<string, _typescript_eslint_utils_ts_eslint.ClassicConfig.Config>;
|
|
249
|
-
meta: _typescript_eslint_utils_ts_eslint.FlatConfig.PluginMeta;
|
|
250
|
-
rules: typeof _typescript_eslint_eslint_plugin_use_at_your_own_risk_rules;
|
|
251
|
-
};
|
|
252
|
-
};
|
|
253
|
-
rules: {
|
|
254
|
-
'@typescript-eslint/no-unused-vars': (string | {
|
|
255
|
-
argsIgnorePattern: string;
|
|
256
|
-
varsIgnorePattern: string;
|
|
257
|
-
caughtErrorsIgnorePattern: string;
|
|
258
|
-
})[];
|
|
259
|
-
'@typescript-eslint/no-explicit-any': string;
|
|
260
|
-
'@typescript-eslint/explicit-function-return-type': string;
|
|
261
|
-
'@typescript-eslint/explicit-module-boundary-types': string;
|
|
262
|
-
'@typescript-eslint/no-inferrable-types': string;
|
|
263
|
-
'@typescript-eslint/no-non-null-assertion': string;
|
|
264
|
-
'@typescript-eslint/ban-ts-comment': string;
|
|
265
|
-
'no-unused-vars': string;
|
|
266
|
-
'no-console': string;
|
|
267
|
-
'no-debugger': string;
|
|
268
|
-
'no-alert': string;
|
|
269
|
-
'no-var': string;
|
|
270
|
-
'prefer-const': string;
|
|
271
|
-
'prefer-arrow-callback': string;
|
|
272
|
-
'arrow-spacing': string;
|
|
273
|
-
'object-shorthand': string;
|
|
274
|
-
'prefer-template': string;
|
|
275
|
-
'template-curly-spacing': string;
|
|
276
|
-
'no-multiple-empty-lines': (string | {
|
|
277
|
-
max: number;
|
|
278
|
-
maxEOF: number;
|
|
279
|
-
})[];
|
|
280
|
-
'eol-last': string;
|
|
281
|
-
'comma-dangle': string[];
|
|
282
|
-
semi: string[];
|
|
283
|
-
quotes: (string | {
|
|
284
|
-
avoidEscape: boolean;
|
|
285
|
-
})[];
|
|
286
|
-
indent: (string | number | {
|
|
287
|
-
SwitchCase: number;
|
|
288
|
-
})[];
|
|
289
|
-
'no-trailing-spaces': string;
|
|
290
|
-
'keyword-spacing': string;
|
|
291
|
-
'space-before-blocks': string;
|
|
292
|
-
'object-curly-spacing': string[];
|
|
293
|
-
'array-bracket-spacing': string[];
|
|
294
|
-
'computed-property-spacing': string[];
|
|
295
|
-
'space-in-parens': string[];
|
|
296
|
-
'space-before-function-paren': (string | {
|
|
297
|
-
anonymous: string;
|
|
298
|
-
named: string;
|
|
299
|
-
asyncArrow: string;
|
|
300
|
-
})[];
|
|
301
|
-
eqeqeq: string[];
|
|
302
|
-
curly: string[];
|
|
303
|
-
'no-eval': string;
|
|
304
|
-
'no-implied-eval': string;
|
|
305
|
-
'no-new-func': string;
|
|
306
|
-
'no-return-assign': string;
|
|
307
|
-
'no-self-compare': string;
|
|
308
|
-
'no-sequences': string;
|
|
309
|
-
'no-throw-literal': string;
|
|
310
|
-
'no-unmodified-loop-condition': string;
|
|
311
|
-
'no-unused-expressions': string;
|
|
312
|
-
'no-useless-call': string;
|
|
313
|
-
'no-useless-concat': string;
|
|
314
|
-
'no-useless-return': string;
|
|
315
|
-
'prefer-promise-reject-errors': string;
|
|
316
|
-
radix: string;
|
|
317
|
-
yoda: string;
|
|
318
|
-
'no-duplicate-imports': string;
|
|
319
|
-
'no-useless-catch': string;
|
|
320
|
-
'no-fallthrough': string;
|
|
321
|
-
'no-case-declarations': string;
|
|
322
|
-
'no-control-regex': string;
|
|
323
|
-
'no-useless-escape': string;
|
|
324
|
-
'no-empty': string;
|
|
325
|
-
'no-unreachable': string;
|
|
326
|
-
'no-undef': string;
|
|
327
|
-
};
|
|
328
|
-
} | {
|
|
329
|
-
files: string[];
|
|
330
|
-
languageOptions: {
|
|
331
|
-
globals: {
|
|
332
|
-
describe: string;
|
|
333
|
-
it: string;
|
|
334
|
-
test: string;
|
|
335
|
-
expect: string;
|
|
336
|
-
beforeEach: string;
|
|
337
|
-
afterEach: string;
|
|
338
|
-
beforeAll: string;
|
|
339
|
-
afterAll: string;
|
|
340
|
-
jest: string;
|
|
341
|
-
vitest: string;
|
|
342
|
-
mock: string;
|
|
343
|
-
};
|
|
344
|
-
};
|
|
345
|
-
rules: {
|
|
346
|
-
'@typescript-eslint/no-explicit-any': string;
|
|
347
|
-
'@typescript-eslint/no-unused-vars': string;
|
|
348
|
-
'@typescript-eslint/no-non-null-assertion': string;
|
|
349
|
-
'no-console': string;
|
|
350
|
-
'no-undef': string;
|
|
351
|
-
'no-duplicate-imports': string;
|
|
352
|
-
'no-useless-catch': string;
|
|
353
|
-
'no-fallthrough': string;
|
|
354
|
-
'no-case-declarations': string;
|
|
355
|
-
'no-control-regex': string;
|
|
356
|
-
'no-useless-escape': string;
|
|
357
|
-
};
|
|
358
|
-
} | {
|
|
359
|
-
files: string[];
|
|
360
|
-
languageOptions: {
|
|
361
|
-
globals: {
|
|
362
|
-
window: string;
|
|
363
|
-
document: string;
|
|
364
|
-
HTMLElement: string;
|
|
365
|
-
HTMLInputElement: string;
|
|
366
|
-
HTMLButtonElement: string;
|
|
367
|
-
HTMLDivElement: string;
|
|
368
|
-
HTMLCanvasElement: string;
|
|
369
|
-
HTMLTextAreaElement: string;
|
|
370
|
-
HTMLSelectElement: string;
|
|
371
|
-
HTMLTableElement: string;
|
|
372
|
-
HTMLTableSectionElement: string;
|
|
373
|
-
HTMLTableRowElement: string;
|
|
374
|
-
HTMLTableCellElement: string;
|
|
375
|
-
HTMLTableCaptionElement: string;
|
|
376
|
-
Element: string;
|
|
377
|
-
Document: string;
|
|
378
|
-
PointerEvent: string;
|
|
379
|
-
MouseEvent: string;
|
|
380
|
-
KeyboardEvent: string;
|
|
381
|
-
Event: string;
|
|
382
|
-
EventTarget: string;
|
|
383
|
-
CanvasRenderingContext2D: string;
|
|
384
|
-
WebGLRenderingContext: string;
|
|
385
|
-
WebGL2RenderingContext: string;
|
|
386
|
-
SVGElement: string;
|
|
387
|
-
SVGSVGElement: string;
|
|
388
|
-
ScrollBehavior: string;
|
|
389
|
-
MutationObserver: string;
|
|
390
|
-
ResizeObserver: string;
|
|
391
|
-
IntersectionObserver: string;
|
|
392
|
-
ImageData: string;
|
|
393
|
-
DOMRect: string;
|
|
394
|
-
FileReader: string;
|
|
395
|
-
navigator: string;
|
|
396
|
-
requestAnimationFrame: string;
|
|
397
|
-
cancelAnimationFrame: string;
|
|
398
|
-
React: string;
|
|
399
|
-
};
|
|
400
|
-
};
|
|
401
|
-
rules: {
|
|
402
|
-
'jsx-quotes': string[];
|
|
403
|
-
'no-undef': string;
|
|
404
|
-
};
|
|
405
|
-
ignores?: undefined;
|
|
195
|
+
readonly rules: Readonly<Linter.RulesRecord>;
|
|
406
196
|
} | {
|
|
407
197
|
ignores: string[];
|
|
408
198
|
files?: undefined;
|
|
@@ -411,167 +201,7 @@ declare const _default$2: ({
|
|
|
411
201
|
})[];
|
|
412
202
|
|
|
413
203
|
declare const _default$1: ({
|
|
414
|
-
readonly rules: Readonly<
|
|
415
|
-
} | {
|
|
416
|
-
files: string[];
|
|
417
|
-
languageOptions: {
|
|
418
|
-
parser: typeof _typescript_eslint_parser;
|
|
419
|
-
parserOptions: {
|
|
420
|
-
ecmaVersion: number;
|
|
421
|
-
sourceType: string;
|
|
422
|
-
ecmaFeatures: {
|
|
423
|
-
jsx: boolean;
|
|
424
|
-
};
|
|
425
|
-
};
|
|
426
|
-
globals: {
|
|
427
|
-
console: string;
|
|
428
|
-
process: string;
|
|
429
|
-
Buffer: string;
|
|
430
|
-
__dirname: string;
|
|
431
|
-
__filename: string;
|
|
432
|
-
module: string;
|
|
433
|
-
require: string;
|
|
434
|
-
global: string;
|
|
435
|
-
globalThis: string;
|
|
436
|
-
exports: string;
|
|
437
|
-
setTimeout: string;
|
|
438
|
-
clearTimeout: string;
|
|
439
|
-
setInterval: string;
|
|
440
|
-
clearInterval: string;
|
|
441
|
-
setImmediate: string;
|
|
442
|
-
clearImmediate: string;
|
|
443
|
-
FormData: string;
|
|
444
|
-
File: string;
|
|
445
|
-
Blob: string;
|
|
446
|
-
URL: string;
|
|
447
|
-
URLSearchParams: string;
|
|
448
|
-
ArrayBuffer: string;
|
|
449
|
-
Uint8Array: string;
|
|
450
|
-
Float32Array: string;
|
|
451
|
-
fetch: string;
|
|
452
|
-
performance: string;
|
|
453
|
-
AbortController: string;
|
|
454
|
-
AbortSignal: string;
|
|
455
|
-
NodeJS: string;
|
|
456
|
-
btoa: string;
|
|
457
|
-
atob: string;
|
|
458
|
-
Bun: string;
|
|
459
|
-
Response: string;
|
|
460
|
-
BufferEncoding: string;
|
|
461
|
-
};
|
|
462
|
-
};
|
|
463
|
-
plugins: {
|
|
464
|
-
'@typescript-eslint': {
|
|
465
|
-
configs: Record<string, _typescript_eslint_utils_ts_eslint.ClassicConfig.Config>;
|
|
466
|
-
meta: _typescript_eslint_utils_ts_eslint.FlatConfig.PluginMeta;
|
|
467
|
-
rules: typeof _typescript_eslint_eslint_plugin_use_at_your_own_risk_rules;
|
|
468
|
-
};
|
|
469
|
-
};
|
|
470
|
-
rules: {
|
|
471
|
-
'@typescript-eslint/no-unused-vars': (string | {
|
|
472
|
-
argsIgnorePattern: string;
|
|
473
|
-
varsIgnorePattern: string;
|
|
474
|
-
caughtErrorsIgnorePattern: string;
|
|
475
|
-
})[];
|
|
476
|
-
'@typescript-eslint/no-explicit-any': string;
|
|
477
|
-
'@typescript-eslint/explicit-function-return-type': string;
|
|
478
|
-
'@typescript-eslint/explicit-module-boundary-types': string;
|
|
479
|
-
'@typescript-eslint/no-inferrable-types': string;
|
|
480
|
-
'@typescript-eslint/no-non-null-assertion': string;
|
|
481
|
-
'@typescript-eslint/ban-ts-comment': string;
|
|
482
|
-
'no-unused-vars': string;
|
|
483
|
-
'no-console': string;
|
|
484
|
-
'no-debugger': string;
|
|
485
|
-
'no-alert': string;
|
|
486
|
-
'no-var': string;
|
|
487
|
-
'prefer-const': string;
|
|
488
|
-
'prefer-arrow-callback': string;
|
|
489
|
-
'arrow-spacing': string;
|
|
490
|
-
'object-shorthand': string;
|
|
491
|
-
'prefer-template': string;
|
|
492
|
-
'template-curly-spacing': string;
|
|
493
|
-
'no-multiple-empty-lines': (string | {
|
|
494
|
-
max: number;
|
|
495
|
-
maxEOF: number;
|
|
496
|
-
})[];
|
|
497
|
-
'eol-last': string;
|
|
498
|
-
'comma-dangle': string[];
|
|
499
|
-
semi: string[];
|
|
500
|
-
quotes: (string | {
|
|
501
|
-
avoidEscape: boolean;
|
|
502
|
-
})[];
|
|
503
|
-
indent: (string | number | {
|
|
504
|
-
SwitchCase: number;
|
|
505
|
-
})[];
|
|
506
|
-
'no-trailing-spaces': string;
|
|
507
|
-
'keyword-spacing': string;
|
|
508
|
-
'space-before-blocks': string;
|
|
509
|
-
'object-curly-spacing': string[];
|
|
510
|
-
'array-bracket-spacing': string[];
|
|
511
|
-
'computed-property-spacing': string[];
|
|
512
|
-
'space-in-parens': string[];
|
|
513
|
-
'space-before-function-paren': (string | {
|
|
514
|
-
anonymous: string;
|
|
515
|
-
named: string;
|
|
516
|
-
asyncArrow: string;
|
|
517
|
-
})[];
|
|
518
|
-
eqeqeq: string[];
|
|
519
|
-
curly: string[];
|
|
520
|
-
'no-eval': string;
|
|
521
|
-
'no-implied-eval': string;
|
|
522
|
-
'no-new-func': string;
|
|
523
|
-
'no-return-assign': string;
|
|
524
|
-
'no-self-compare': string;
|
|
525
|
-
'no-sequences': string;
|
|
526
|
-
'no-throw-literal': string;
|
|
527
|
-
'no-unmodified-loop-condition': string;
|
|
528
|
-
'no-unused-expressions': string;
|
|
529
|
-
'no-useless-call': string;
|
|
530
|
-
'no-useless-concat': string;
|
|
531
|
-
'no-useless-return': string;
|
|
532
|
-
'prefer-promise-reject-errors': string;
|
|
533
|
-
radix: string;
|
|
534
|
-
yoda: string;
|
|
535
|
-
'no-duplicate-imports': string;
|
|
536
|
-
'no-useless-catch': string;
|
|
537
|
-
'no-fallthrough': string;
|
|
538
|
-
'no-case-declarations': string;
|
|
539
|
-
'no-control-regex': string;
|
|
540
|
-
'no-useless-escape': string;
|
|
541
|
-
'no-empty': string;
|
|
542
|
-
'no-unreachable': string;
|
|
543
|
-
'no-undef': string;
|
|
544
|
-
};
|
|
545
|
-
} | {
|
|
546
|
-
files: string[];
|
|
547
|
-
languageOptions: {
|
|
548
|
-
globals: {
|
|
549
|
-
describe: string;
|
|
550
|
-
it: string;
|
|
551
|
-
test: string;
|
|
552
|
-
expect: string;
|
|
553
|
-
beforeEach: string;
|
|
554
|
-
afterEach: string;
|
|
555
|
-
beforeAll: string;
|
|
556
|
-
afterAll: string;
|
|
557
|
-
jest: string;
|
|
558
|
-
vitest: string;
|
|
559
|
-
mock: string;
|
|
560
|
-
};
|
|
561
|
-
};
|
|
562
|
-
rules: {
|
|
563
|
-
'@typescript-eslint/no-explicit-any': string;
|
|
564
|
-
'@typescript-eslint/no-unused-vars': string;
|
|
565
|
-
'@typescript-eslint/no-non-null-assertion': string;
|
|
566
|
-
'no-console': string;
|
|
567
|
-
'no-undef': string;
|
|
568
|
-
'no-duplicate-imports': string;
|
|
569
|
-
'no-useless-catch': string;
|
|
570
|
-
'no-fallthrough': string;
|
|
571
|
-
'no-case-declarations': string;
|
|
572
|
-
'no-control-regex': string;
|
|
573
|
-
'no-useless-escape': string;
|
|
574
|
-
};
|
|
204
|
+
readonly rules: Readonly<Linter.RulesRecord>;
|
|
575
205
|
} | {
|
|
576
206
|
files: string[];
|
|
577
207
|
languageOptions: {
|
|
@@ -632,11 +262,11 @@ declare const _default$1: ({
|
|
|
632
262
|
* Provides consistent code quality across all packages
|
|
633
263
|
*/
|
|
634
264
|
declare const baseConfig: ({
|
|
635
|
-
readonly rules: Readonly<
|
|
265
|
+
readonly rules: Readonly<Linter.RulesRecord>;
|
|
636
266
|
} | {
|
|
637
267
|
files: string[];
|
|
638
268
|
languageOptions: {
|
|
639
|
-
parser: typeof
|
|
269
|
+
parser: typeof typescriptParser;
|
|
640
270
|
parserOptions: {
|
|
641
271
|
ecmaVersion: number;
|
|
642
272
|
sourceType: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/config",
|
|
3
3
|
"description": "Shared configuration for ElizaOS projects and plugins",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "c4e30a38836ac4bed81c671239377685892ebdf5"
|
|
54
54
|
}
|