@unito/integration-cli 0.62.12 → 0.62.14
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/boilerplate/.prettierrc +1 -1
- package/dist/boilerplate/eslint.config.mjs +95 -0
- package/dist/boilerplate/package-lock.json +190 -235
- package/dist/boilerplate/package.json +5 -8
- package/dist/src/commands/publish.js +1 -1
- package/dist/src/commands/test.js +1 -1
- package/dist/test/commands/test.test.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
- package/dist/boilerplate/eslint.config.js +0 -6
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import tseslint from '@typescript-eslint/eslint-plugin';
|
|
2
|
+
import tsParser from '@typescript-eslint/parser';
|
|
3
|
+
|
|
4
|
+
export default [
|
|
5
|
+
{
|
|
6
|
+
ignores: ['node_modules/**', 'dist/**', 'eslint.config.mjs'],
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
files: ['**/*.{js,ts}'],
|
|
10
|
+
languageOptions: {
|
|
11
|
+
parser: tsParser,
|
|
12
|
+
parserOptions: {
|
|
13
|
+
project: './**/tsconfig.json',
|
|
14
|
+
},
|
|
15
|
+
ecmaVersion: 'latest',
|
|
16
|
+
sourceType: 'module',
|
|
17
|
+
globals: {
|
|
18
|
+
// Equivalent to env: { browser: true, node: true, es6: true }
|
|
19
|
+
window: 'readonly',
|
|
20
|
+
document: 'readonly',
|
|
21
|
+
navigator: 'readonly',
|
|
22
|
+
process: 'readonly',
|
|
23
|
+
require: 'readonly',
|
|
24
|
+
module: 'readonly',
|
|
25
|
+
__dirname: 'readonly',
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
plugins: {
|
|
29
|
+
'@typescript-eslint': tseslint,
|
|
30
|
+
},
|
|
31
|
+
rules: {
|
|
32
|
+
// TypeScript rules
|
|
33
|
+
'@typescript-eslint/no-loss-of-precision': 'off',
|
|
34
|
+
'@typescript-eslint/no-explicit-any': 'off',
|
|
35
|
+
'@typescript-eslint/ban-ts-comment': 'off',
|
|
36
|
+
'@typescript-eslint/ban-ts-ignore': 'off',
|
|
37
|
+
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
38
|
+
'@typescript-eslint/no-var-requires': 'off',
|
|
39
|
+
'@typescript-eslint/no-floating-promises': 'error',
|
|
40
|
+
'@typescript-eslint/no-unused-vars': 'off',
|
|
41
|
+
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
42
|
+
'@typescript-eslint/prefer-namespace-keyword': 'off',
|
|
43
|
+
'@typescript-eslint/no-namespace': 'off',
|
|
44
|
+
'@typescript-eslint/no-inferrable-types': 'off',
|
|
45
|
+
'@typescript-eslint/naming-convention': [
|
|
46
|
+
'warn',
|
|
47
|
+
{
|
|
48
|
+
selector: [
|
|
49
|
+
'classProperty',
|
|
50
|
+
'objectLiteralProperty',
|
|
51
|
+
'typeProperty',
|
|
52
|
+
'classMethod',
|
|
53
|
+
'objectLiteralMethod',
|
|
54
|
+
'typeMethod',
|
|
55
|
+
'accessor',
|
|
56
|
+
'enumMember',
|
|
57
|
+
],
|
|
58
|
+
format: null,
|
|
59
|
+
modifiers: ['requiresQuotes'],
|
|
60
|
+
},
|
|
61
|
+
],
|
|
62
|
+
|
|
63
|
+
// JavaScript rules
|
|
64
|
+
'no-whitespace-before-property': 'error',
|
|
65
|
+
'no-trailing-spaces': 'error',
|
|
66
|
+
'no-extra-boolean-cast': 'off',
|
|
67
|
+
'no-inner-declarations': 'off',
|
|
68
|
+
'no-useless-escape': 'off',
|
|
69
|
+
'no-case-declarations': 'off',
|
|
70
|
+
'space-unary-ops': [
|
|
71
|
+
'error',
|
|
72
|
+
{
|
|
73
|
+
words: true,
|
|
74
|
+
nonwords: false,
|
|
75
|
+
},
|
|
76
|
+
],
|
|
77
|
+
'space-before-function-paren': [
|
|
78
|
+
'error',
|
|
79
|
+
{
|
|
80
|
+
anonymous: 'always',
|
|
81
|
+
named: 'never',
|
|
82
|
+
asyncArrow: 'always',
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
'object-curly-spacing': ['error', 'always'],
|
|
86
|
+
'no-console': ['error', { allow: ['info', 'error'] }],
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
files: ['test/**/*.test.ts'],
|
|
91
|
+
rules: {
|
|
92
|
+
'@typescript-eslint/no-floating-promises': 'off',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
];
|
|
@@ -12,17 +12,16 @@
|
|
|
12
12
|
"@unito/integration-sdk": "^2.x"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@
|
|
16
|
-
"@
|
|
17
|
-
"@
|
|
15
|
+
"@types/node": "22.x",
|
|
16
|
+
"@typescript-eslint/eslint-plugin": "^8.29.0",
|
|
17
|
+
"@typescript-eslint/parser": "^8.29.0",
|
|
18
18
|
"eslint": "9.x",
|
|
19
19
|
"prettier": "3.x",
|
|
20
20
|
"tsx": "4.x",
|
|
21
|
-
"typescript": "5.x"
|
|
22
|
-
"typescript-eslint": "8.x"
|
|
21
|
+
"typescript": "5.x"
|
|
23
22
|
},
|
|
24
23
|
"engines": {
|
|
25
|
-
"node": ">=
|
|
24
|
+
"node": ">=22"
|
|
26
25
|
}
|
|
27
26
|
},
|
|
28
27
|
"node_modules/@aashutoshrathi/word-wrap": {
|
|
@@ -475,21 +474,21 @@
|
|
|
475
474
|
}
|
|
476
475
|
},
|
|
477
476
|
"node_modules/@eslint-community/regexpp": {
|
|
478
|
-
"version": "4.
|
|
479
|
-
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.
|
|
480
|
-
"integrity": "sha512-
|
|
477
|
+
"version": "4.12.1",
|
|
478
|
+
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
|
|
479
|
+
"integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
|
|
481
480
|
"dev": true,
|
|
482
481
|
"engines": {
|
|
483
482
|
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
|
|
484
483
|
}
|
|
485
484
|
},
|
|
486
485
|
"node_modules/@eslint/config-array": {
|
|
487
|
-
"version": "0.
|
|
488
|
-
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.
|
|
489
|
-
"integrity": "sha512-
|
|
486
|
+
"version": "0.19.2",
|
|
487
|
+
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz",
|
|
488
|
+
"integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==",
|
|
490
489
|
"dev": true,
|
|
491
490
|
"dependencies": {
|
|
492
|
-
"@eslint/object-schema": "^2.1.
|
|
491
|
+
"@eslint/object-schema": "^2.1.6",
|
|
493
492
|
"debug": "^4.3.1",
|
|
494
493
|
"minimatch": "^3.1.2"
|
|
495
494
|
},
|
|
@@ -497,19 +496,31 @@
|
|
|
497
496
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
498
497
|
}
|
|
499
498
|
},
|
|
499
|
+
"node_modules/@eslint/config-helpers": {
|
|
500
|
+
"version": "0.2.1",
|
|
501
|
+
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz",
|
|
502
|
+
"integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==",
|
|
503
|
+
"dev": true,
|
|
504
|
+
"engines": {
|
|
505
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
506
|
+
}
|
|
507
|
+
},
|
|
500
508
|
"node_modules/@eslint/core": {
|
|
501
|
-
"version": "0.
|
|
502
|
-
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.
|
|
503
|
-
"integrity": "sha512-
|
|
509
|
+
"version": "0.12.0",
|
|
510
|
+
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz",
|
|
511
|
+
"integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==",
|
|
504
512
|
"dev": true,
|
|
513
|
+
"dependencies": {
|
|
514
|
+
"@types/json-schema": "^7.0.15"
|
|
515
|
+
},
|
|
505
516
|
"engines": {
|
|
506
517
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
507
518
|
}
|
|
508
519
|
},
|
|
509
520
|
"node_modules/@eslint/eslintrc": {
|
|
510
|
-
"version": "3.1
|
|
511
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.
|
|
512
|
-
"integrity": "sha512-
|
|
521
|
+
"version": "3.3.1",
|
|
522
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz",
|
|
523
|
+
"integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==",
|
|
513
524
|
"dev": true,
|
|
514
525
|
"dependencies": {
|
|
515
526
|
"ajv": "^6.12.4",
|
|
@@ -530,31 +541,30 @@
|
|
|
530
541
|
}
|
|
531
542
|
},
|
|
532
543
|
"node_modules/@eslint/js": {
|
|
533
|
-
"version": "9.
|
|
534
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.
|
|
535
|
-
"integrity": "sha512-
|
|
544
|
+
"version": "9.23.0",
|
|
545
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.23.0.tgz",
|
|
546
|
+
"integrity": "sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==",
|
|
536
547
|
"dev": true,
|
|
537
548
|
"engines": {
|
|
538
549
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
539
550
|
}
|
|
540
551
|
},
|
|
541
552
|
"node_modules/@eslint/object-schema": {
|
|
542
|
-
"version": "2.1.
|
|
543
|
-
"resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.
|
|
544
|
-
"integrity": "sha512-
|
|
553
|
+
"version": "2.1.6",
|
|
554
|
+
"resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz",
|
|
555
|
+
"integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==",
|
|
545
556
|
"dev": true,
|
|
546
557
|
"engines": {
|
|
547
558
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
548
559
|
}
|
|
549
560
|
},
|
|
550
561
|
"node_modules/@eslint/plugin-kit": {
|
|
551
|
-
"version": "0.2.
|
|
552
|
-
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.
|
|
553
|
-
"integrity": "sha512-
|
|
562
|
+
"version": "0.2.8",
|
|
563
|
+
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz",
|
|
564
|
+
"integrity": "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==",
|
|
554
565
|
"dev": true,
|
|
555
|
-
"license": "Apache-2.0",
|
|
556
566
|
"dependencies": {
|
|
557
|
-
"@eslint/core": "^0.
|
|
567
|
+
"@eslint/core": "^0.13.0",
|
|
558
568
|
"levn": "^0.4.1"
|
|
559
569
|
},
|
|
560
570
|
"engines": {
|
|
@@ -562,11 +572,10 @@
|
|
|
562
572
|
}
|
|
563
573
|
},
|
|
564
574
|
"node_modules/@eslint/plugin-kit/node_modules/@eslint/core": {
|
|
565
|
-
"version": "0.
|
|
566
|
-
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.
|
|
567
|
-
"integrity": "sha512-
|
|
575
|
+
"version": "0.13.0",
|
|
576
|
+
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz",
|
|
577
|
+
"integrity": "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==",
|
|
568
578
|
"dev": true,
|
|
569
|
-
"license": "Apache-2.0",
|
|
570
579
|
"dependencies": {
|
|
571
580
|
"@types/json-schema": "^7.0.15"
|
|
572
581
|
},
|
|
@@ -575,27 +584,40 @@
|
|
|
575
584
|
}
|
|
576
585
|
},
|
|
577
586
|
"node_modules/@humanfs/core": {
|
|
578
|
-
"version": "0.19.
|
|
579
|
-
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.
|
|
580
|
-
"integrity": "sha512-
|
|
587
|
+
"version": "0.19.1",
|
|
588
|
+
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
|
|
589
|
+
"integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
|
|
581
590
|
"dev": true,
|
|
582
591
|
"engines": {
|
|
583
592
|
"node": ">=18.18.0"
|
|
584
593
|
}
|
|
585
594
|
},
|
|
586
595
|
"node_modules/@humanfs/node": {
|
|
587
|
-
"version": "0.16.
|
|
588
|
-
"resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.
|
|
589
|
-
"integrity": "sha512-
|
|
596
|
+
"version": "0.16.6",
|
|
597
|
+
"resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz",
|
|
598
|
+
"integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==",
|
|
590
599
|
"dev": true,
|
|
591
600
|
"dependencies": {
|
|
592
|
-
"@humanfs/core": "^0.19.
|
|
601
|
+
"@humanfs/core": "^0.19.1",
|
|
593
602
|
"@humanwhocodes/retry": "^0.3.0"
|
|
594
603
|
},
|
|
595
604
|
"engines": {
|
|
596
605
|
"node": ">=18.18.0"
|
|
597
606
|
}
|
|
598
607
|
},
|
|
608
|
+
"node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": {
|
|
609
|
+
"version": "0.3.1",
|
|
610
|
+
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz",
|
|
611
|
+
"integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==",
|
|
612
|
+
"dev": true,
|
|
613
|
+
"engines": {
|
|
614
|
+
"node": ">=18.18"
|
|
615
|
+
},
|
|
616
|
+
"funding": {
|
|
617
|
+
"type": "github",
|
|
618
|
+
"url": "https://github.com/sponsors/nzakas"
|
|
619
|
+
}
|
|
620
|
+
},
|
|
599
621
|
"node_modules/@humanwhocodes/module-importer": {
|
|
600
622
|
"version": "1.0.1",
|
|
601
623
|
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
|
|
@@ -610,9 +632,9 @@
|
|
|
610
632
|
}
|
|
611
633
|
},
|
|
612
634
|
"node_modules/@humanwhocodes/retry": {
|
|
613
|
-
"version": "0.
|
|
614
|
-
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.
|
|
615
|
-
"integrity": "sha512-
|
|
635
|
+
"version": "0.4.2",
|
|
636
|
+
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz",
|
|
637
|
+
"integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==",
|
|
616
638
|
"dev": true,
|
|
617
639
|
"engines": {
|
|
618
640
|
"node": ">=18.18"
|
|
@@ -662,25 +684,6 @@
|
|
|
662
684
|
"node": ">= 8"
|
|
663
685
|
}
|
|
664
686
|
},
|
|
665
|
-
"node_modules/@types/eslint": {
|
|
666
|
-
"version": "9.6.1",
|
|
667
|
-
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz",
|
|
668
|
-
"integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==",
|
|
669
|
-
"dev": true,
|
|
670
|
-
"dependencies": {
|
|
671
|
-
"@types/estree": "*",
|
|
672
|
-
"@types/json-schema": "*"
|
|
673
|
-
}
|
|
674
|
-
},
|
|
675
|
-
"node_modules/@types/eslint__js": {
|
|
676
|
-
"version": "8.42.3",
|
|
677
|
-
"resolved": "https://registry.npmjs.org/@types/eslint__js/-/eslint__js-8.42.3.tgz",
|
|
678
|
-
"integrity": "sha512-alfG737uhmPdnvkrLdZLcEKJ/B8s9Y4hrZ+YAdzUeoArBlSUERA2E87ROfOaS4jd/C45fzOoZzidLc1IPwLqOw==",
|
|
679
|
-
"dev": true,
|
|
680
|
-
"dependencies": {
|
|
681
|
-
"@types/eslint": "*"
|
|
682
|
-
}
|
|
683
|
-
},
|
|
684
687
|
"node_modules/@types/estree": {
|
|
685
688
|
"version": "1.0.6",
|
|
686
689
|
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
|
|
@@ -704,20 +707,20 @@
|
|
|
704
707
|
}
|
|
705
708
|
},
|
|
706
709
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
707
|
-
"version": "8.
|
|
708
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.
|
|
709
|
-
"integrity": "sha512-
|
|
710
|
+
"version": "8.29.0",
|
|
711
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.29.0.tgz",
|
|
712
|
+
"integrity": "sha512-PAIpk/U7NIS6H7TEtN45SPGLQaHNgB7wSjsQV/8+KYokAb2T/gloOA/Bee2yd4/yKVhPKe5LlaUGhAZk5zmSaQ==",
|
|
710
713
|
"dev": true,
|
|
711
714
|
"dependencies": {
|
|
712
715
|
"@eslint-community/regexpp": "^4.10.0",
|
|
713
|
-
"@typescript-eslint/scope-manager": "8.
|
|
714
|
-
"@typescript-eslint/type-utils": "8.
|
|
715
|
-
"@typescript-eslint/utils": "8.
|
|
716
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
716
|
+
"@typescript-eslint/scope-manager": "8.29.0",
|
|
717
|
+
"@typescript-eslint/type-utils": "8.29.0",
|
|
718
|
+
"@typescript-eslint/utils": "8.29.0",
|
|
719
|
+
"@typescript-eslint/visitor-keys": "8.29.0",
|
|
717
720
|
"graphemer": "^1.4.0",
|
|
718
721
|
"ignore": "^5.3.1",
|
|
719
722
|
"natural-compare": "^1.4.0",
|
|
720
|
-
"ts-api-utils": "^
|
|
723
|
+
"ts-api-utils": "^2.0.1"
|
|
721
724
|
},
|
|
722
725
|
"engines": {
|
|
723
726
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -728,24 +731,20 @@
|
|
|
728
731
|
},
|
|
729
732
|
"peerDependencies": {
|
|
730
733
|
"@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0",
|
|
731
|
-
"eslint": "^8.57.0 || ^9.0.0"
|
|
732
|
-
|
|
733
|
-
"peerDependenciesMeta": {
|
|
734
|
-
"typescript": {
|
|
735
|
-
"optional": true
|
|
736
|
-
}
|
|
734
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
735
|
+
"typescript": ">=4.8.4 <5.9.0"
|
|
737
736
|
}
|
|
738
737
|
},
|
|
739
738
|
"node_modules/@typescript-eslint/parser": {
|
|
740
|
-
"version": "8.
|
|
741
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.
|
|
742
|
-
"integrity": "sha512-
|
|
739
|
+
"version": "8.29.0",
|
|
740
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.29.0.tgz",
|
|
741
|
+
"integrity": "sha512-8C0+jlNJOwQso2GapCVWWfW/rzaq7Lbme+vGUFKE31djwNncIpgXD7Cd4weEsDdkoZDjH0lwwr3QDQFuyrMg9g==",
|
|
743
742
|
"dev": true,
|
|
744
743
|
"dependencies": {
|
|
745
|
-
"@typescript-eslint/scope-manager": "8.
|
|
746
|
-
"@typescript-eslint/types": "8.
|
|
747
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
748
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
744
|
+
"@typescript-eslint/scope-manager": "8.29.0",
|
|
745
|
+
"@typescript-eslint/types": "8.29.0",
|
|
746
|
+
"@typescript-eslint/typescript-estree": "8.29.0",
|
|
747
|
+
"@typescript-eslint/visitor-keys": "8.29.0",
|
|
749
748
|
"debug": "^4.3.4"
|
|
750
749
|
},
|
|
751
750
|
"engines": {
|
|
@@ -756,22 +755,18 @@
|
|
|
756
755
|
"url": "https://opencollective.com/typescript-eslint"
|
|
757
756
|
},
|
|
758
757
|
"peerDependencies": {
|
|
759
|
-
"eslint": "^8.57.0 || ^9.0.0"
|
|
760
|
-
|
|
761
|
-
"peerDependenciesMeta": {
|
|
762
|
-
"typescript": {
|
|
763
|
-
"optional": true
|
|
764
|
-
}
|
|
758
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
759
|
+
"typescript": ">=4.8.4 <5.9.0"
|
|
765
760
|
}
|
|
766
761
|
},
|
|
767
762
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
768
|
-
"version": "8.
|
|
769
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
770
|
-
"integrity": "sha512-
|
|
763
|
+
"version": "8.29.0",
|
|
764
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.29.0.tgz",
|
|
765
|
+
"integrity": "sha512-aO1PVsq7Gm+tcghabUpzEnVSFMCU4/nYIgC2GOatJcllvWfnhrgW0ZEbnTxm36QsikmCN1K/6ZgM7fok2I7xNw==",
|
|
771
766
|
"dev": true,
|
|
772
767
|
"dependencies": {
|
|
773
|
-
"@typescript-eslint/types": "8.
|
|
774
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
768
|
+
"@typescript-eslint/types": "8.29.0",
|
|
769
|
+
"@typescript-eslint/visitor-keys": "8.29.0"
|
|
775
770
|
},
|
|
776
771
|
"engines": {
|
|
777
772
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -782,15 +777,15 @@
|
|
|
782
777
|
}
|
|
783
778
|
},
|
|
784
779
|
"node_modules/@typescript-eslint/type-utils": {
|
|
785
|
-
"version": "8.
|
|
786
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.
|
|
787
|
-
"integrity": "sha512-
|
|
780
|
+
"version": "8.29.0",
|
|
781
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.29.0.tgz",
|
|
782
|
+
"integrity": "sha512-ahaWQ42JAOx+NKEf5++WC/ua17q5l+j1GFrbbpVKzFL/tKVc0aYY8rVSYUpUvt2hUP1YBr7mwXzx+E/DfUWI9Q==",
|
|
788
783
|
"dev": true,
|
|
789
784
|
"dependencies": {
|
|
790
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
791
|
-
"@typescript-eslint/utils": "8.
|
|
785
|
+
"@typescript-eslint/typescript-estree": "8.29.0",
|
|
786
|
+
"@typescript-eslint/utils": "8.29.0",
|
|
792
787
|
"debug": "^4.3.4",
|
|
793
|
-
"ts-api-utils": "^
|
|
788
|
+
"ts-api-utils": "^2.0.1"
|
|
794
789
|
},
|
|
795
790
|
"engines": {
|
|
796
791
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -799,16 +794,15 @@
|
|
|
799
794
|
"type": "opencollective",
|
|
800
795
|
"url": "https://opencollective.com/typescript-eslint"
|
|
801
796
|
},
|
|
802
|
-
"
|
|
803
|
-
"
|
|
804
|
-
|
|
805
|
-
}
|
|
797
|
+
"peerDependencies": {
|
|
798
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
799
|
+
"typescript": ">=4.8.4 <5.9.0"
|
|
806
800
|
}
|
|
807
801
|
},
|
|
808
802
|
"node_modules/@typescript-eslint/types": {
|
|
809
|
-
"version": "8.
|
|
810
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.
|
|
811
|
-
"integrity": "sha512-
|
|
803
|
+
"version": "8.29.0",
|
|
804
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.29.0.tgz",
|
|
805
|
+
"integrity": "sha512-wcJL/+cOXV+RE3gjCyl/V2G877+2faqvlgtso/ZRbTCnZazh0gXhe+7gbAnfubzN2bNsBtZjDvlh7ero8uIbzg==",
|
|
812
806
|
"dev": true,
|
|
813
807
|
"engines": {
|
|
814
808
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -819,19 +813,19 @@
|
|
|
819
813
|
}
|
|
820
814
|
},
|
|
821
815
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
822
|
-
"version": "8.
|
|
823
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
824
|
-
"integrity": "sha512-
|
|
816
|
+
"version": "8.29.0",
|
|
817
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.29.0.tgz",
|
|
818
|
+
"integrity": "sha512-yOfen3jE9ISZR/hHpU/bmNvTtBW1NjRbkSFdZOksL1N+ybPEE7UVGMwqvS6CP022Rp00Sb0tdiIkhSCe6NI8ow==",
|
|
825
819
|
"dev": true,
|
|
826
820
|
"dependencies": {
|
|
827
|
-
"@typescript-eslint/types": "8.
|
|
828
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
821
|
+
"@typescript-eslint/types": "8.29.0",
|
|
822
|
+
"@typescript-eslint/visitor-keys": "8.29.0",
|
|
829
823
|
"debug": "^4.3.4",
|
|
830
824
|
"fast-glob": "^3.3.2",
|
|
831
825
|
"is-glob": "^4.0.3",
|
|
832
826
|
"minimatch": "^9.0.4",
|
|
833
827
|
"semver": "^7.6.0",
|
|
834
|
-
"ts-api-utils": "^
|
|
828
|
+
"ts-api-utils": "^2.0.1"
|
|
835
829
|
},
|
|
836
830
|
"engines": {
|
|
837
831
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -840,10 +834,8 @@
|
|
|
840
834
|
"type": "opencollective",
|
|
841
835
|
"url": "https://opencollective.com/typescript-eslint"
|
|
842
836
|
},
|
|
843
|
-
"
|
|
844
|
-
"typescript":
|
|
845
|
-
"optional": true
|
|
846
|
-
}
|
|
837
|
+
"peerDependencies": {
|
|
838
|
+
"typescript": ">=4.8.4 <5.9.0"
|
|
847
839
|
}
|
|
848
840
|
},
|
|
849
841
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
@@ -871,15 +863,15 @@
|
|
|
871
863
|
}
|
|
872
864
|
},
|
|
873
865
|
"node_modules/@typescript-eslint/utils": {
|
|
874
|
-
"version": "8.
|
|
875
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.
|
|
876
|
-
"integrity": "sha512-
|
|
866
|
+
"version": "8.29.0",
|
|
867
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.29.0.tgz",
|
|
868
|
+
"integrity": "sha512-gX/A0Mz9Bskm8avSWFcK0gP7cZpbY4AIo6B0hWYFCaIsz750oaiWR4Jr2CI+PQhfW1CpcQr9OlfPS+kMFegjXA==",
|
|
877
869
|
"dev": true,
|
|
878
870
|
"dependencies": {
|
|
879
871
|
"@eslint-community/eslint-utils": "^4.4.0",
|
|
880
|
-
"@typescript-eslint/scope-manager": "8.
|
|
881
|
-
"@typescript-eslint/types": "8.
|
|
882
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
872
|
+
"@typescript-eslint/scope-manager": "8.29.0",
|
|
873
|
+
"@typescript-eslint/types": "8.29.0",
|
|
874
|
+
"@typescript-eslint/typescript-estree": "8.29.0"
|
|
883
875
|
},
|
|
884
876
|
"engines": {
|
|
885
877
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -889,17 +881,18 @@
|
|
|
889
881
|
"url": "https://opencollective.com/typescript-eslint"
|
|
890
882
|
},
|
|
891
883
|
"peerDependencies": {
|
|
892
|
-
"eslint": "^8.57.0 || ^9.0.0"
|
|
884
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
885
|
+
"typescript": ">=4.8.4 <5.9.0"
|
|
893
886
|
}
|
|
894
887
|
},
|
|
895
888
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
896
|
-
"version": "8.
|
|
897
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
898
|
-
"integrity": "sha512-
|
|
889
|
+
"version": "8.29.0",
|
|
890
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.29.0.tgz",
|
|
891
|
+
"integrity": "sha512-Sne/pVz8ryR03NFK21VpN88dZ2FdQXOlq3VIklbrTYEt8yXtRFr9tvUhqvCeKjqYk5FSim37sHbooT6vzBTZcg==",
|
|
899
892
|
"dev": true,
|
|
900
893
|
"dependencies": {
|
|
901
|
-
"@typescript-eslint/types": "8.
|
|
902
|
-
"eslint-visitor-keys": "^
|
|
894
|
+
"@typescript-eslint/types": "8.29.0",
|
|
895
|
+
"eslint-visitor-keys": "^4.2.0"
|
|
903
896
|
},
|
|
904
897
|
"engines": {
|
|
905
898
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -909,6 +902,18 @@
|
|
|
909
902
|
"url": "https://opencollective.com/typescript-eslint"
|
|
910
903
|
}
|
|
911
904
|
},
|
|
905
|
+
"node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
|
|
906
|
+
"version": "4.2.0",
|
|
907
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
|
|
908
|
+
"integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
|
|
909
|
+
"dev": true,
|
|
910
|
+
"engines": {
|
|
911
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
912
|
+
},
|
|
913
|
+
"funding": {
|
|
914
|
+
"url": "https://opencollective.com/eslint"
|
|
915
|
+
}
|
|
916
|
+
},
|
|
912
917
|
"node_modules/@unito/integration-api": {
|
|
913
918
|
"version": "3.0.0",
|
|
914
919
|
"resolved": "https://registry.npmjs.org/@unito/integration-api/-/integration-api-3.0.0.tgz",
|
|
@@ -949,9 +954,9 @@
|
|
|
949
954
|
}
|
|
950
955
|
},
|
|
951
956
|
"node_modules/acorn": {
|
|
952
|
-
"version": "8.
|
|
953
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.
|
|
954
|
-
"integrity": "sha512-
|
|
957
|
+
"version": "8.14.1",
|
|
958
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
|
|
959
|
+
"integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
|
|
955
960
|
"dev": true,
|
|
956
961
|
"bin": {
|
|
957
962
|
"acorn": "bin/acorn"
|
|
@@ -1458,31 +1463,32 @@
|
|
|
1458
1463
|
}
|
|
1459
1464
|
},
|
|
1460
1465
|
"node_modules/eslint": {
|
|
1461
|
-
"version": "9.
|
|
1462
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.
|
|
1463
|
-
"integrity": "sha512-
|
|
1466
|
+
"version": "9.23.0",
|
|
1467
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.23.0.tgz",
|
|
1468
|
+
"integrity": "sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==",
|
|
1464
1469
|
"dev": true,
|
|
1465
1470
|
"dependencies": {
|
|
1466
1471
|
"@eslint-community/eslint-utils": "^4.2.0",
|
|
1467
|
-
"@eslint-community/regexpp": "^4.
|
|
1468
|
-
"@eslint/config-array": "^0.
|
|
1469
|
-
"@eslint/
|
|
1470
|
-
"@eslint/
|
|
1471
|
-
"@eslint/
|
|
1472
|
-
"@eslint/
|
|
1473
|
-
"@
|
|
1472
|
+
"@eslint-community/regexpp": "^4.12.1",
|
|
1473
|
+
"@eslint/config-array": "^0.19.2",
|
|
1474
|
+
"@eslint/config-helpers": "^0.2.0",
|
|
1475
|
+
"@eslint/core": "^0.12.0",
|
|
1476
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
1477
|
+
"@eslint/js": "9.23.0",
|
|
1478
|
+
"@eslint/plugin-kit": "^0.2.7",
|
|
1479
|
+
"@humanfs/node": "^0.16.6",
|
|
1474
1480
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
1475
|
-
"@humanwhocodes/retry": "^0.
|
|
1481
|
+
"@humanwhocodes/retry": "^0.4.2",
|
|
1476
1482
|
"@types/estree": "^1.0.6",
|
|
1477
1483
|
"@types/json-schema": "^7.0.15",
|
|
1478
1484
|
"ajv": "^6.12.4",
|
|
1479
1485
|
"chalk": "^4.0.0",
|
|
1480
|
-
"cross-spawn": "^7.0.
|
|
1486
|
+
"cross-spawn": "^7.0.6",
|
|
1481
1487
|
"debug": "^4.3.2",
|
|
1482
1488
|
"escape-string-regexp": "^4.0.0",
|
|
1483
|
-
"eslint-scope": "^8.
|
|
1484
|
-
"eslint-visitor-keys": "^4.
|
|
1485
|
-
"espree": "^10.
|
|
1489
|
+
"eslint-scope": "^8.3.0",
|
|
1490
|
+
"eslint-visitor-keys": "^4.2.0",
|
|
1491
|
+
"espree": "^10.3.0",
|
|
1486
1492
|
"esquery": "^1.5.0",
|
|
1487
1493
|
"esutils": "^2.0.2",
|
|
1488
1494
|
"fast-deep-equal": "^3.1.3",
|
|
@@ -1496,8 +1502,7 @@
|
|
|
1496
1502
|
"lodash.merge": "^4.6.2",
|
|
1497
1503
|
"minimatch": "^3.1.2",
|
|
1498
1504
|
"natural-compare": "^1.4.0",
|
|
1499
|
-
"optionator": "^0.9.3"
|
|
1500
|
-
"text-table": "^0.2.0"
|
|
1505
|
+
"optionator": "^0.9.3"
|
|
1501
1506
|
},
|
|
1502
1507
|
"bin": {
|
|
1503
1508
|
"eslint": "bin/eslint.js"
|
|
@@ -1518,9 +1523,9 @@
|
|
|
1518
1523
|
}
|
|
1519
1524
|
},
|
|
1520
1525
|
"node_modules/eslint-scope": {
|
|
1521
|
-
"version": "8.
|
|
1522
|
-
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.
|
|
1523
|
-
"integrity": "sha512-
|
|
1526
|
+
"version": "8.3.0",
|
|
1527
|
+
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz",
|
|
1528
|
+
"integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==",
|
|
1524
1529
|
"dev": true,
|
|
1525
1530
|
"dependencies": {
|
|
1526
1531
|
"esrecurse": "^4.3.0",
|
|
@@ -1546,9 +1551,9 @@
|
|
|
1546
1551
|
}
|
|
1547
1552
|
},
|
|
1548
1553
|
"node_modules/eslint/node_modules/eslint-visitor-keys": {
|
|
1549
|
-
"version": "4.
|
|
1550
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.
|
|
1551
|
-
"integrity": "sha512-
|
|
1554
|
+
"version": "4.2.0",
|
|
1555
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
|
|
1556
|
+
"integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
|
|
1552
1557
|
"dev": true,
|
|
1553
1558
|
"engines": {
|
|
1554
1559
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -1558,14 +1563,14 @@
|
|
|
1558
1563
|
}
|
|
1559
1564
|
},
|
|
1560
1565
|
"node_modules/espree": {
|
|
1561
|
-
"version": "10.
|
|
1562
|
-
"resolved": "https://registry.npmjs.org/espree/-/espree-10.
|
|
1563
|
-
"integrity": "sha512-
|
|
1566
|
+
"version": "10.3.0",
|
|
1567
|
+
"resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz",
|
|
1568
|
+
"integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==",
|
|
1564
1569
|
"dev": true,
|
|
1565
1570
|
"dependencies": {
|
|
1566
|
-
"acorn": "^8.
|
|
1571
|
+
"acorn": "^8.14.0",
|
|
1567
1572
|
"acorn-jsx": "^5.3.2",
|
|
1568
|
-
"eslint-visitor-keys": "^4.
|
|
1573
|
+
"eslint-visitor-keys": "^4.2.0"
|
|
1569
1574
|
},
|
|
1570
1575
|
"engines": {
|
|
1571
1576
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -1575,9 +1580,9 @@
|
|
|
1575
1580
|
}
|
|
1576
1581
|
},
|
|
1577
1582
|
"node_modules/espree/node_modules/eslint-visitor-keys": {
|
|
1578
|
-
"version": "4.
|
|
1579
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.
|
|
1580
|
-
"integrity": "sha512-
|
|
1583
|
+
"version": "4.2.0",
|
|
1584
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
|
|
1585
|
+
"integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
|
|
1581
1586
|
"dev": true,
|
|
1582
1587
|
"engines": {
|
|
1583
1588
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -1701,16 +1706,16 @@
|
|
|
1701
1706
|
"dev": true
|
|
1702
1707
|
},
|
|
1703
1708
|
"node_modules/fast-glob": {
|
|
1704
|
-
"version": "3.3.
|
|
1705
|
-
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.
|
|
1706
|
-
"integrity": "sha512-
|
|
1709
|
+
"version": "3.3.3",
|
|
1710
|
+
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
|
|
1711
|
+
"integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
|
|
1707
1712
|
"dev": true,
|
|
1708
1713
|
"dependencies": {
|
|
1709
1714
|
"@nodelib/fs.stat": "^2.0.2",
|
|
1710
1715
|
"@nodelib/fs.walk": "^1.2.3",
|
|
1711
1716
|
"glob-parent": "^5.1.2",
|
|
1712
1717
|
"merge2": "^1.3.0",
|
|
1713
|
-
"micromatch": "^4.0.
|
|
1718
|
+
"micromatch": "^4.0.8"
|
|
1714
1719
|
},
|
|
1715
1720
|
"engines": {
|
|
1716
1721
|
"node": ">=8.6.0"
|
|
@@ -1741,9 +1746,9 @@
|
|
|
1741
1746
|
"dev": true
|
|
1742
1747
|
},
|
|
1743
1748
|
"node_modules/fastq": {
|
|
1744
|
-
"version": "1.
|
|
1745
|
-
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.
|
|
1746
|
-
"integrity": "sha512-
|
|
1749
|
+
"version": "1.19.1",
|
|
1750
|
+
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
|
|
1751
|
+
"integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
|
|
1747
1752
|
"dev": true,
|
|
1748
1753
|
"dependencies": {
|
|
1749
1754
|
"reusify": "^1.0.4"
|
|
@@ -2077,9 +2082,9 @@
|
|
|
2077
2082
|
}
|
|
2078
2083
|
},
|
|
2079
2084
|
"node_modules/import-fresh": {
|
|
2080
|
-
"version": "3.3.
|
|
2081
|
-
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.
|
|
2082
|
-
"integrity": "sha512-
|
|
2085
|
+
"version": "3.3.1",
|
|
2086
|
+
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
|
|
2087
|
+
"integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
|
|
2083
2088
|
"dev": true,
|
|
2084
2089
|
"dependencies": {
|
|
2085
2090
|
"parent-module": "^1.0.0",
|
|
@@ -2662,9 +2667,9 @@
|
|
|
2662
2667
|
}
|
|
2663
2668
|
},
|
|
2664
2669
|
"node_modules/reusify": {
|
|
2665
|
-
"version": "1.0
|
|
2666
|
-
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.
|
|
2667
|
-
"integrity": "sha512-
|
|
2670
|
+
"version": "1.1.0",
|
|
2671
|
+
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
|
|
2672
|
+
"integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
|
|
2668
2673
|
"dev": true,
|
|
2669
2674
|
"engines": {
|
|
2670
2675
|
"iojs": ">=1.0.0",
|
|
@@ -2736,13 +2741,10 @@
|
|
|
2736
2741
|
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
|
2737
2742
|
},
|
|
2738
2743
|
"node_modules/semver": {
|
|
2739
|
-
"version": "7.
|
|
2740
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.
|
|
2741
|
-
"integrity": "sha512-
|
|
2744
|
+
"version": "7.7.1",
|
|
2745
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
|
2746
|
+
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
|
2742
2747
|
"dev": true,
|
|
2743
|
-
"dependencies": {
|
|
2744
|
-
"lru-cache": "^6.0.0"
|
|
2745
|
-
},
|
|
2746
2748
|
"bin": {
|
|
2747
2749
|
"semver": "bin/semver.js"
|
|
2748
2750
|
},
|
|
@@ -2750,18 +2752,6 @@
|
|
|
2750
2752
|
"node": ">=10"
|
|
2751
2753
|
}
|
|
2752
2754
|
},
|
|
2753
|
-
"node_modules/semver/node_modules/lru-cache": {
|
|
2754
|
-
"version": "6.0.0",
|
|
2755
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
2756
|
-
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
2757
|
-
"dev": true,
|
|
2758
|
-
"dependencies": {
|
|
2759
|
-
"yallist": "^4.0.0"
|
|
2760
|
-
},
|
|
2761
|
-
"engines": {
|
|
2762
|
-
"node": ">=10"
|
|
2763
|
-
}
|
|
2764
|
-
},
|
|
2765
2755
|
"node_modules/send": {
|
|
2766
2756
|
"version": "1.1.0",
|
|
2767
2757
|
"resolved": "https://registry.npmjs.org/send/-/send-1.1.0.tgz",
|
|
@@ -2934,12 +2924,6 @@
|
|
|
2934
2924
|
"node": ">=8"
|
|
2935
2925
|
}
|
|
2936
2926
|
},
|
|
2937
|
-
"node_modules/text-table": {
|
|
2938
|
-
"version": "0.2.0",
|
|
2939
|
-
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
|
|
2940
|
-
"integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
|
|
2941
|
-
"dev": true
|
|
2942
|
-
},
|
|
2943
2927
|
"node_modules/to-regex-range": {
|
|
2944
2928
|
"version": "5.0.1",
|
|
2945
2929
|
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
@@ -2961,15 +2945,15 @@
|
|
|
2961
2945
|
}
|
|
2962
2946
|
},
|
|
2963
2947
|
"node_modules/ts-api-utils": {
|
|
2964
|
-
"version": "1.
|
|
2965
|
-
"resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.
|
|
2966
|
-
"integrity": "sha512-
|
|
2948
|
+
"version": "2.1.0",
|
|
2949
|
+
"resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz",
|
|
2950
|
+
"integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==",
|
|
2967
2951
|
"dev": true,
|
|
2968
2952
|
"engines": {
|
|
2969
|
-
"node": ">=
|
|
2953
|
+
"node": ">=18.12"
|
|
2970
2954
|
},
|
|
2971
2955
|
"peerDependencies": {
|
|
2972
|
-
"typescript": ">=4.
|
|
2956
|
+
"typescript": ">=4.8.4"
|
|
2973
2957
|
}
|
|
2974
2958
|
},
|
|
2975
2959
|
"node_modules/tsx": {
|
|
@@ -3030,29 +3014,6 @@
|
|
|
3030
3014
|
"node": ">=14.17"
|
|
3031
3015
|
}
|
|
3032
3016
|
},
|
|
3033
|
-
"node_modules/typescript-eslint": {
|
|
3034
|
-
"version": "8.9.0",
|
|
3035
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.9.0.tgz",
|
|
3036
|
-
"integrity": "sha512-AuD/FXGYRQyqyOBCpNLldMlsCGvmDNxptQ3Dp58/NXeB+FqyvTfXmMyba3PYa0Vi9ybnj7G8S/yd/4Cw8y47eA==",
|
|
3037
|
-
"dev": true,
|
|
3038
|
-
"dependencies": {
|
|
3039
|
-
"@typescript-eslint/eslint-plugin": "8.9.0",
|
|
3040
|
-
"@typescript-eslint/parser": "8.9.0",
|
|
3041
|
-
"@typescript-eslint/utils": "8.9.0"
|
|
3042
|
-
},
|
|
3043
|
-
"engines": {
|
|
3044
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
3045
|
-
},
|
|
3046
|
-
"funding": {
|
|
3047
|
-
"type": "opencollective",
|
|
3048
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
3049
|
-
},
|
|
3050
|
-
"peerDependenciesMeta": {
|
|
3051
|
-
"typescript": {
|
|
3052
|
-
"optional": true
|
|
3053
|
-
}
|
|
3054
|
-
}
|
|
3055
|
-
},
|
|
3056
3017
|
"node_modules/undici-types": {
|
|
3057
3018
|
"version": "6.20.0",
|
|
3058
3019
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
|
|
@@ -3113,12 +3074,6 @@
|
|
|
3113
3074
|
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
3114
3075
|
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
|
|
3115
3076
|
},
|
|
3116
|
-
"node_modules/yallist": {
|
|
3117
|
-
"version": "4.0.0",
|
|
3118
|
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
|
3119
|
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
|
3120
|
-
"dev": true
|
|
3121
|
-
},
|
|
3122
3077
|
"node_modules/yocto-queue": {
|
|
3123
3078
|
"version": "0.1.0",
|
|
3124
3079
|
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
|
|
@@ -6,12 +6,10 @@
|
|
|
6
6
|
"license": "LicenseRef-LICENSE",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"compile": "tsc --project tsconfig.build.json",
|
|
9
|
+
"compile:watch": "tsc -w",
|
|
9
10
|
"dev": "tsx watch src/index.ts",
|
|
10
11
|
"test": "NODE_ENV=test tsx --test --test-name-pattern=${ONLY:-.*} $(find test -type f -name '*.test.ts')",
|
|
11
|
-
"lint": "eslint --fix src && prettier --write src",
|
|
12
|
-
"ci:eslint": "eslint src",
|
|
13
|
-
"ci:lint": "npm run ci:prettier && npm run ci:eslint || (echo \"Please run eslint and/or prettier and commit the changes\" && exit 1)",
|
|
14
|
-
"ci:prettier": "prettier --cache --ignore-unknown --check src",
|
|
12
|
+
"lint": "eslint --config eslint.config.mjs --fix src test && prettier --write src test",
|
|
15
13
|
"ci:test": "npm run test"
|
|
16
14
|
},
|
|
17
15
|
"author": {
|
|
@@ -25,13 +23,12 @@
|
|
|
25
23
|
"@unito/integration-sdk": "^2.x"
|
|
26
24
|
},
|
|
27
25
|
"devDependencies": {
|
|
28
|
-
"@eslint/js": "9.x",
|
|
29
|
-
"@types/eslint__js": "8.x",
|
|
30
26
|
"@types/node": "22.x",
|
|
27
|
+
"@typescript-eslint/eslint-plugin": "^8.29.0",
|
|
28
|
+
"@typescript-eslint/parser": "^8.29.0",
|
|
31
29
|
"eslint": "9.x",
|
|
32
30
|
"prettier": "3.x",
|
|
33
31
|
"tsx": "4.x",
|
|
34
|
-
"typescript": "5.x"
|
|
35
|
-
"typescript-eslint": "8.x"
|
|
32
|
+
"typescript": "5.x"
|
|
36
33
|
}
|
|
37
34
|
}
|
|
@@ -271,7 +271,7 @@ class Publish extends baseCommand_1.BaseCommand {
|
|
|
271
271
|
}
|
|
272
272
|
archiveIntegration() {
|
|
273
273
|
const archivePath = tmp_1.default.tmpNameSync({ postfix: `.zip` });
|
|
274
|
-
child_process_1.default.execSync(`git ls-files --cached --others --exclude-standard | zip -@ ${archivePath}`, {
|
|
274
|
+
child_process_1.default.execSync(`git ls-files ':!:docs/' --cached --others --exclude-standard | zip -@ ${archivePath}`, {
|
|
275
275
|
cwd: process.cwd(),
|
|
276
276
|
env: { ...process.env },
|
|
277
277
|
});
|
|
@@ -190,7 +190,7 @@ class Test extends baseCommand_1.BaseCommand {
|
|
|
190
190
|
commandArguments.push(`--output-path=${flags['output-path']}`);
|
|
191
191
|
}
|
|
192
192
|
if (flags['crawlMode'] === configuration_1.CrawlMode.SAMPLE) {
|
|
193
|
-
commandArguments.push('--operation-collection-items-per-page=
|
|
193
|
+
commandArguments.push('--operation-collection-items-per-page=5');
|
|
194
194
|
commandArguments.push('--operation-collection-follow-next-pages=false');
|
|
195
195
|
}
|
|
196
196
|
if (flags['crawlMode'] === configuration_1.CrawlMode.SINGLE) {
|
|
@@ -126,7 +126,7 @@ describe('Test', () => {
|
|
|
126
126
|
.stub(IntegrationResource, 'validateIsIntegrationDirectory', stub => stub.returns(true))
|
|
127
127
|
.command(['test', '--crawlMode=sample'])
|
|
128
128
|
.it('sampling crawlMode', () => {
|
|
129
|
-
(0, test_1.expect)(spawnStub.getCall(0).args.at(1)).to.include('--operation-collection-items-per-page=
|
|
129
|
+
(0, test_1.expect)(spawnStub.getCall(0).args.at(1)).to.include('--operation-collection-items-per-page=5');
|
|
130
130
|
(0, test_1.expect)(spawnStub.getCall(0).args.at(1)).to.include('--operation-collection-follow-next-pages=false');
|
|
131
131
|
});
|
|
132
132
|
test_1.test
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED