@sap-cloud-sdk/generator-common 4.1.3-20251119150134.0 → 4.1.3-20251122014251.0
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/file-writer/package-json.d.ts +8 -0
- package/dist/file-writer/package-json.js +5 -1
- package/dist/file-writer/package-json.js.map +1 -1
- package/dist/internal.d.ts +2 -1
- package/dist/internal.js +1 -1
- package/dist/internal.js.map +1 -1
- package/dist/options.d.ts +9 -0
- package/dist/options.js +5 -0
- package/dist/options.js.map +1 -1
- package/dist/ts-config.d.ts +12 -18
- package/dist/ts-config.js +24 -6
- package/dist/ts-config.js.map +1 -1
- package/package.json +3 -3
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @internal
|
|
3
|
+
*/
|
|
4
|
+
export type ModuleType = 'commonjs' | 'esm';
|
|
1
5
|
/**
|
|
2
6
|
* @internal
|
|
3
7
|
*/
|
|
@@ -14,6 +18,10 @@ export interface PackageJsonOptions {
|
|
|
14
18
|
* @internal
|
|
15
19
|
*/
|
|
16
20
|
description: string;
|
|
21
|
+
/**
|
|
22
|
+
* @internal
|
|
23
|
+
*/
|
|
24
|
+
moduleType?: ModuleType;
|
|
17
25
|
}
|
|
18
26
|
/**
|
|
19
27
|
* @internal
|
|
@@ -6,7 +6,7 @@ exports.packageJsonBase = packageJsonBase;
|
|
|
6
6
|
* @internal
|
|
7
7
|
*/
|
|
8
8
|
function packageJsonBase(options) {
|
|
9
|
-
|
|
9
|
+
const basePackageJson = {
|
|
10
10
|
name: options.npmPackageName,
|
|
11
11
|
version: '1.0.0',
|
|
12
12
|
description: options.description,
|
|
@@ -22,5 +22,9 @@ function packageJsonBase(options) {
|
|
|
22
22
|
url: ''
|
|
23
23
|
}
|
|
24
24
|
};
|
|
25
|
+
if (options.moduleType === 'esm') {
|
|
26
|
+
basePackageJson.type = 'module';
|
|
27
|
+
}
|
|
28
|
+
return basePackageJson;
|
|
25
29
|
}
|
|
26
30
|
//# sourceMappingURL=package-json.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"package-json.js","sourceRoot":"","sources":["../../src/file-writer/package-json.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"package-json.js","sourceRoot":"","sources":["../../src/file-writer/package-json.ts"],"names":[],"mappings":";;AA+BA,0CAyBC;AA7BD,gCAAgC;AAChC;;GAEG;AACH,SAAgB,eAAe,CAC7B,OAA2B;IAE3B,MAAM,eAAe,GAAwB;QAC3C,IAAI,EAAE,OAAO,CAAC,cAAc;QAC5B,OAAO,EAAE,OAAO;QAChB,WAAW,EAAE,OAAO,CAAC,WAAW;QAChC,QAAQ,EAAE,yDAAyD;QACnE,IAAI,EAAE,YAAY;QAClB,KAAK,EAAE,cAAc;QACrB,OAAO,EAAE,YAAY;QACrB,aAAa,EAAE;YACb,MAAM,EAAE,QAAQ;SACjB;QACD,UAAU,EAAE;YACV,IAAI,EAAE,KAAK;YACX,GAAG,EAAE,EAAE;SACR;KACF,CAAC;IAEF,IAAI,OAAO,CAAC,UAAU,KAAK,KAAK,EAAE,CAAC;QACjC,eAAe,CAAC,IAAI,GAAG,QAAQ,CAAC;IAClC,CAAC;IAED,OAAO,eAAe,CAAC;AACzB,CAAC"}
|
package/dist/internal.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * from './options';
|
|
2
|
+
export type { Options, ParsedOptions } from './options-parser';
|
|
1
3
|
export * from './sdk-metadata';
|
|
2
4
|
export * from './compiler';
|
|
3
5
|
export * from './readme';
|
|
@@ -8,5 +10,4 @@ export * from './package-description';
|
|
|
8
10
|
export * from './ts-config';
|
|
9
11
|
export * from './options-parser';
|
|
10
12
|
export * from './cli-parser';
|
|
11
|
-
export * from './options';
|
|
12
13
|
export * from './options-per-service';
|
package/dist/internal.js
CHANGED
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./options"), exports);
|
|
17
18
|
__exportStar(require("./sdk-metadata"), exports);
|
|
18
19
|
__exportStar(require("./compiler"), exports);
|
|
19
20
|
__exportStar(require("./readme"), exports);
|
|
@@ -24,6 +25,5 @@ __exportStar(require("./package-description"), exports);
|
|
|
24
25
|
__exportStar(require("./ts-config"), exports);
|
|
25
26
|
__exportStar(require("./options-parser"), exports);
|
|
26
27
|
__exportStar(require("./cli-parser"), exports);
|
|
27
|
-
__exportStar(require("./options"), exports);
|
|
28
28
|
__exportStar(require("./options-per-service"), exports);
|
|
29
29
|
//# sourceMappingURL=internal.js.map
|
package/dist/internal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"internal.js","sourceRoot":"","sources":["../src/internal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA+B;AAC/B,6CAA2B;AAC3B,2CAAyB;AACzB,mDAAiC;AACjC,yCAAuB;AACvB,gDAA8B;AAC9B,wDAAsC;AACtC,8CAA4B;AAC5B,mDAAiC;AACjC,+CAA6B;AAC7B,
|
|
1
|
+
{"version":3,"file":"internal.js","sourceRoot":"","sources":["../src/internal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAG1B,iDAA+B;AAC/B,6CAA2B;AAC3B,2CAAyB;AACzB,mDAAiC;AACjC,yCAAuB;AACvB,gDAA8B;AAC9B,wDAAsC;AACtC,8CAA4B;AAC5B,mDAAiC;AACjC,+CAA6B;AAC7B,wDAAsC"}
|
package/dist/options.d.ts
CHANGED
|
@@ -89,6 +89,11 @@ export declare function getCommonCliOptions(serviceType: ServiceType): {
|
|
|
89
89
|
readonly default: false;
|
|
90
90
|
readonly hidden: true;
|
|
91
91
|
};
|
|
92
|
+
readonly generateESM: {
|
|
93
|
+
readonly describe: "When enabled, all generated files follow the ECMAScript module syntax.";
|
|
94
|
+
readonly type: "boolean";
|
|
95
|
+
readonly default: false;
|
|
96
|
+
};
|
|
92
97
|
};
|
|
93
98
|
/**
|
|
94
99
|
* Generator options shared by the OData and OpenApi generator.
|
|
@@ -161,4 +166,8 @@ export interface CommonGeneratorOptions {
|
|
|
161
166
|
* Generate default `README.md` files in the client directories.
|
|
162
167
|
*/
|
|
163
168
|
readme?: boolean;
|
|
169
|
+
/**
|
|
170
|
+
* Generate ECMAScript modules instead of CommonJS modules.
|
|
171
|
+
*/
|
|
172
|
+
generateESM?: boolean;
|
|
164
173
|
}
|
package/dist/options.js
CHANGED
|
@@ -100,6 +100,11 @@ function getCommonCliOptions(serviceType) {
|
|
|
100
100
|
describe: getReadmeText(serviceType),
|
|
101
101
|
default: false,
|
|
102
102
|
hidden: true
|
|
103
|
+
},
|
|
104
|
+
generateESM: {
|
|
105
|
+
describe: 'When enabled, all generated files follow the ECMAScript module syntax.',
|
|
106
|
+
type: 'boolean',
|
|
107
|
+
default: false
|
|
103
108
|
}
|
|
104
109
|
};
|
|
105
110
|
}
|
package/dist/options.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"options.js","sourceRoot":"","sources":["../src/options.ts"],"names":[],"mappings":";;AAwBA,
|
|
1
|
+
{"version":3,"file":"options.js","sourceRoot":"","sources":["../src/options.ts"],"names":[],"mappings":";;AAwBA,kDAuGC;AA/HD,qDAM0B;AAG1B,SAAS,aAAa,CAAC,WAAwB;IAC7C,OAAO,WAAW,KAAK,OAAO;QAC5B,CAAC,CAAC,0RAA0R;QAC5R,CAAC,CAAC,+DAA+D,CAAC;AACtE,CAAC;AAED,SAAS,YAAY,CAAC,WAAwB;IAC5C,OAAO,WAAW,KAAK,OAAO;QAC5B,CAAC,CAAC,uNAAuN;QACzN,CAAC,CAAC,6NAA6N,CAAC;AACpO,CAAC;AACD;;GAEG;AACH,6EAA6E;AAC7E,SAAgB,mBAAmB,CAAC,WAAwB;IAC1D,OAAO;QACL,KAAK,EAAE;YACL,KAAK,EAAE,GAAG;YACV,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC;YACnC,MAAM,EAAE,IAAA,sCAAqB,EAAC,WAAW,CAAC;YAC1C,IAAI,EAAE,QAAQ;YACd,YAAY,EAAE,IAAI;YAClB,WAAW,EAAE,IAAI;SAClB;QACD,iBAAiB,EAAE;YACjB,KAAK,EAAE,GAAG;YACV,QAAQ,EACN,iaAAia;YACna,IAAI,EAAE,QAAQ;YACd,MAAM,EAAE,yCAAwB;SACjC;QACD,cAAc,EAAE;YACd,IAAI,EAAE,SAAS;YACf,QAAQ,EACN,0JAA0J;YAC5J,OAAO,EAAE,KAAK;SACf;QACD,OAAO,EAAE;YACP,IAAI,EAAE,QAAQ;YACd,MAAM,EAAE,4BAAW;YACnB,QAAQ,EACN,yFAAyF;YAC3F,WAAW,EAAE,IAAI;SAClB;QACD,QAAQ,EAAE;YACR,QAAQ,EAAE,8DAA8D;YACxE,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;YACd,MAAM,EAAE,IAAI;SACb;QACD,SAAS,EAAE;YACT,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,GAAG;YACV,QAAQ,EACN,0PAA0P;YAC5P,MAAM,EAAE,oCAAmB;YAC3B,YAAY,EAAE,IAAI;YAClB,WAAW,EAAE,IAAI;SAClB;QACD,SAAS,EAAE;YACT,QAAQ,EACN,oOAAoO;YACtO,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;SACf;QACD,WAAW,EAAE;YACX,QAAQ,EACN,wGAAwG;YAC1G,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;SACf;QACD,cAAc,EAAE;YACd,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,GAAG;YACV,QAAQ,EACN,gHAAgH;YAClH,MAAM,EAAE,4BAAW;YACnB,WAAW,EAAE,IAAI;SAClB;QACD,cAAc,EAAE;YACd,IAAI,EAAE,SAAS;YACf,QAAQ,EACN,oPAAoP;YACtP,OAAO,EAAE,KAAK;SACf;QACD,SAAS,EAAE;YACT,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,GAAG;YACV,QAAQ,EACN,wMAAwM;YAC1M,OAAO,EAAE,KAAK;SACf;QACD,QAAQ,EAAE;YACR,QAAQ,EACN,yPAAyP;YAC3P,IAAI,EAAE,QAAQ;YACd,MAAM,EAAE,4BAAW;SACpB;QACD,OAAO,EAAE;YACP,QAAQ,EACN,0HAA0H;YAC5H,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;SACf;QACD,MAAM,EAAE;YACN,IAAI,EAAE,SAAS;YACf,QAAQ,EAAE,aAAa,CAAC,WAAW,CAAC;YACpC,OAAO,EAAE,KAAK;YACd,MAAM,EAAE,IAAI;SACb;QACD,WAAW,EAAE;YACX,QAAQ,EACN,wEAAwE;YAC1E,IAAI,EAAE,SAAS;YACf,OAAO,EAAE,KAAK;SACf;KACO,CAAC;AACb,CAAC"}
|
package/dist/ts-config.d.ts
CHANGED
|
@@ -1,28 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @internal
|
|
3
3
|
*/
|
|
4
|
-
export declare const defaultTsConfig:
|
|
5
|
-
compilerOptions: {
|
|
6
|
-
target: string;
|
|
7
|
-
module: string;
|
|
8
|
-
lib: string[];
|
|
9
|
-
declaration: boolean;
|
|
10
|
-
declarationMap: boolean;
|
|
11
|
-
sourceMap: boolean;
|
|
12
|
-
diagnostics: boolean;
|
|
13
|
-
moduleResolution: string;
|
|
14
|
-
esModuleInterop: boolean;
|
|
15
|
-
inlineSources: boolean;
|
|
16
|
-
strict: boolean;
|
|
17
|
-
};
|
|
18
|
-
include: string[];
|
|
19
|
-
exclude: string[];
|
|
20
|
-
};
|
|
4
|
+
export declare const defaultTsConfig: (generateESM?: boolean) => Record<string, any>;
|
|
21
5
|
/**
|
|
22
6
|
* @internal
|
|
23
7
|
*/
|
|
24
|
-
export declare function formatTsConfig(): string;
|
|
8
|
+
export declare function formatTsConfig(generateESM?: boolean): string;
|
|
25
9
|
/**
|
|
26
10
|
* @internal
|
|
27
11
|
*/
|
|
28
12
|
export declare function readCustomTsConfig(configPath: string): Promise<string>;
|
|
13
|
+
/**
|
|
14
|
+
* Build a tsconfig.json file as string.
|
|
15
|
+
* If transpile is true or tsconfig is provided, return the appropriate config.
|
|
16
|
+
* @param transpile - Whether to transpile.
|
|
17
|
+
* @param tsconfig - Path to custom tsconfig file.
|
|
18
|
+
* @param generateESM - Whether to generate ES modules instead of CommonJS.
|
|
19
|
+
* @returns The serialized tsconfig.json contents.
|
|
20
|
+
* @internal
|
|
21
|
+
*/
|
|
22
|
+
export declare function tsconfigJson(transpile?: boolean, tsconfig?: string, generateESM?: boolean): Promise<string | undefined>;
|
package/dist/ts-config.js
CHANGED
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.defaultTsConfig = void 0;
|
|
4
4
|
exports.formatTsConfig = formatTsConfig;
|
|
5
5
|
exports.readCustomTsConfig = readCustomTsConfig;
|
|
6
|
+
exports.tsconfigJson = tsconfigJson;
|
|
6
7
|
const fs_1 = require("fs");
|
|
7
8
|
const path_1 = require("path");
|
|
8
9
|
const util_1 = require("@sap-cloud-sdk/util");
|
|
@@ -10,28 +11,29 @@ const { readFile, lstat } = fs_1.promises;
|
|
|
10
11
|
/**
|
|
11
12
|
* @internal
|
|
12
13
|
*/
|
|
13
|
-
|
|
14
|
+
const defaultTsConfig = (generateESM) => ({
|
|
14
15
|
compilerOptions: {
|
|
15
16
|
target: 'es2021',
|
|
16
|
-
module: 'commonjs',
|
|
17
|
+
module: generateESM ? 'nodenext' : 'commonjs',
|
|
17
18
|
lib: ['esnext'],
|
|
18
19
|
declaration: true,
|
|
19
20
|
declarationMap: false,
|
|
20
21
|
sourceMap: true,
|
|
21
22
|
diagnostics: true,
|
|
22
|
-
moduleResolution: 'node',
|
|
23
|
+
moduleResolution: generateESM ? 'nodenext' : 'node',
|
|
23
24
|
esModuleInterop: true,
|
|
24
25
|
inlineSources: false,
|
|
25
26
|
strict: true
|
|
26
27
|
},
|
|
27
28
|
include: ['**/*.ts'],
|
|
28
29
|
exclude: ['dist/**/*', 'test/**/*', '**/*.spec.ts', 'node_modules/**/*']
|
|
29
|
-
};
|
|
30
|
+
});
|
|
31
|
+
exports.defaultTsConfig = defaultTsConfig;
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
32
34
|
*/
|
|
33
|
-
function formatTsConfig() {
|
|
34
|
-
return JSON.stringify(exports.defaultTsConfig, null, 2) + util_1.unixEOL;
|
|
35
|
+
function formatTsConfig(generateESM) {
|
|
36
|
+
return JSON.stringify((0, exports.defaultTsConfig)(generateESM), null, 2) + util_1.unixEOL;
|
|
35
37
|
}
|
|
36
38
|
/**
|
|
37
39
|
* @internal
|
|
@@ -47,4 +49,20 @@ async function readCustomTsConfig(configPath) {
|
|
|
47
49
|
throw new util_1.ErrorWithCause(`Could not read tsconfig.json at ${configPath}.`, err);
|
|
48
50
|
}
|
|
49
51
|
}
|
|
52
|
+
/**
|
|
53
|
+
* Build a tsconfig.json file as string.
|
|
54
|
+
* If transpile is true or tsconfig is provided, return the appropriate config.
|
|
55
|
+
* @param transpile - Whether to transpile.
|
|
56
|
+
* @param tsconfig - Path to custom tsconfig file.
|
|
57
|
+
* @param generateESM - Whether to generate ES modules instead of CommonJS.
|
|
58
|
+
* @returns The serialized tsconfig.json contents.
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
async function tsconfigJson(transpile, tsconfig, generateESM) {
|
|
62
|
+
if (transpile || tsconfig) {
|
|
63
|
+
return tsconfig
|
|
64
|
+
? readCustomTsConfig(tsconfig)
|
|
65
|
+
: formatTsConfig(generateESM);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
50
68
|
//# sourceMappingURL=ts-config.js.map
|
package/dist/ts-config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ts-config.js","sourceRoot":"","sources":["../src/ts-config.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"ts-config.js","sourceRoot":"","sources":["../src/ts-config.ts"],"names":[],"mappings":";;;AA6BA,wCAEC;AAKD,gDAYC;AAWD,oCAUC;AArED,2BAA8B;AAC9B,+BAA+B;AAC/B,8CAA8D;AAC9D,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,aAAQ,CAAC;AACrC;;GAEG;AACI,MAAM,eAAe,GAAG,CAC7B,WAAqB,EACA,EAAE,CAAC,CAAC;IACzB,eAAe,EAAE;QACf,MAAM,EAAE,QAAQ;QAChB,MAAM,EAAE,WAAW,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,UAAU;QAC7C,GAAG,EAAE,CAAC,QAAQ,CAAC;QACf,WAAW,EAAE,IAAI;QACjB,cAAc,EAAE,KAAK;QACrB,SAAS,EAAE,IAAI;QACf,WAAW,EAAE,IAAI;QACjB,gBAAgB,EAAE,WAAW,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,MAAM;QACnD,eAAe,EAAE,IAAI;QACrB,aAAa,EAAE,KAAK;QACpB,MAAM,EAAE,IAAI;KACb;IACD,OAAO,EAAE,CAAC,SAAS,CAAC;IACpB,OAAO,EAAE,CAAC,WAAW,EAAE,WAAW,EAAE,cAAc,EAAE,mBAAmB,CAAC;CACzE,CAAC,CAAC;AAlBU,QAAA,eAAe,mBAkBzB;AACH;;GAEG;AACH,SAAgB,cAAc,CAAC,WAAqB;IAClD,OAAO,IAAI,CAAC,SAAS,CAAC,IAAA,uBAAe,EAAC,WAAW,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,GAAG,cAAO,CAAC;AACzE,CAAC;AAED;;GAEG;AACI,KAAK,UAAU,kBAAkB,CAAC,UAAkB;IACzD,IAAI,CAAC;QACH,IAAI,CAAC,MAAM,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,WAAW,EAAE,EAAE,CAAC;YAC5C,UAAU,GAAG,IAAA,cAAO,EAAC,UAAU,EAAE,eAAe,CAAC,CAAC;QACpD,CAAC;QACD,OAAO,MAAM,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC;IAC5C,CAAC;IAAC,OAAO,GAAG,EAAE,CAAC;QACb,MAAM,IAAI,qBAAc,CACtB,mCAAmC,UAAU,GAAG,EAChD,GAAG,CACJ,CAAC;IACJ,CAAC;AACH,CAAC;AAED;;;;;;;;GAQG;AACI,KAAK,UAAU,YAAY,CAChC,SAAmB,EACnB,QAAiB,EACjB,WAAqB;IAErB,IAAI,SAAS,IAAI,QAAQ,EAAE,CAAC;QAC1B,OAAO,QAAQ;YACb,CAAC,CAAC,kBAAkB,CAAC,QAAQ,CAAC;YAC9B,CAAC,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC;IAClC,CAAC;AACH,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-cloud-sdk/generator-common",
|
|
3
|
-
"version": "4.1.3-
|
|
3
|
+
"version": "4.1.3-20251122014251.0",
|
|
4
4
|
"description": "SAP Cloud SDK for JavaScript common functions of OData client generator and OpenAPI clint generator.",
|
|
5
5
|
"homepage": "https://sap.github.io/cloud-sdk/docs/js/overview",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"readme": "ts-node ../../scripts/replace-common-readme.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@sap-cloud-sdk/util": "^4.1.3-
|
|
43
|
+
"@sap-cloud-sdk/util": "^4.1.3-20251122014251.0",
|
|
44
44
|
"fast-levenshtein": "~3.0.0",
|
|
45
45
|
"fs-extra": "^11.3.2",
|
|
46
|
-
"glob": "^
|
|
46
|
+
"glob": "^13.0.0",
|
|
47
47
|
"typescript": "~5.9.3",
|
|
48
48
|
"prettier": "^3.6.2",
|
|
49
49
|
"yargs": "^17.7.2",
|