@soda-gql/babel 0.11.5 → 0.11.6
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/plugin.cjs +7 -0
- package/dist/plugin.cjs.map +1 -1
- package/dist/plugin.d.cts +1 -1
- package/dist/plugin.d.mts +1 -1
- package/dist/plugin.mjs +6 -1
- package/dist/plugin.mjs.map +1 -1
- package/package.json +6 -6
package/dist/plugin.cjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
1
2
|
const require_transformer = require('./transformer-C9UM_hw8.cjs');
|
|
2
3
|
let __soda_gql_builder_plugin_support = require("@soda-gql/builder/plugin-support");
|
|
3
4
|
let __babel_core = require("@babel/core");
|
|
@@ -50,9 +51,15 @@ const createPluginWithArtifact = ({ artifact, config }) => ({
|
|
|
50
51
|
});
|
|
51
52
|
} }
|
|
52
53
|
});
|
|
54
|
+
var plugin_default = createSodaGqlPlugin;
|
|
55
|
+
|
|
56
|
+
//#endregion
|
|
57
|
+
//#region packages/babel/@x-plugin.ts
|
|
58
|
+
var __x_plugin_default = plugin_default;
|
|
53
59
|
|
|
54
60
|
//#endregion
|
|
55
61
|
exports.createPlugin = createPlugin;
|
|
56
62
|
exports.createPluginWithArtifact = createPluginWithArtifact;
|
|
57
63
|
exports.createSodaGqlPlugin = createSodaGqlPlugin;
|
|
64
|
+
exports.default = __x_plugin_default;
|
|
58
65
|
//# sourceMappingURL=plugin.cjs.map
|
package/dist/plugin.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.cjs","names":["createTransformer","t"],"sources":["../src/plugin.ts"],"sourcesContent":["/**\n * Babel plugin entrypoint for soda-gql.\n *\n * This module provides Babel transformer integration for soda-gql\n * zero-runtime transformations.\n */\n\nimport type { PluginObj, PluginPass } from \"@babel/core\";\nimport { types as t } from \"@babel/core\";\nimport type { NodePath } from \"@babel/traverse\";\nimport type { BuilderArtifact } from \"@soda-gql/builder\";\nimport { createPluginSession, type PluginOptions, type PluginSession } from \"@soda-gql/builder/plugin-support\";\nimport type { CanonicalId } from \"@soda-gql/common\";\nimport type { ResolvedSodaGqlConfig } from \"@soda-gql/config\";\nimport { createTransformer } from \"./transformer\";\n\ntype PluginPassState = PluginPass & {\n _artifact?: BuilderArtifact | null;\n};\n\nconst fallbackPlugin = (): PluginObj => ({\n name: \"@soda-gql/babel\",\n visitor: {\n Program() {\n // No-op fallback\n },\n },\n});\n\nexport const createPlugin = ({ pluginSession }: { pluginSession: PluginSession }): PluginObj<PluginPassState> => ({\n name: \"@soda-gql/babel\",\n\n async pre() {\n this._artifact = await pluginSession.getArtifactAsync();\n },\n\n visitor: {\n Program(programPath: NodePath<t.Program>, state) {\n const filename = state.file?.opts?.filename;\n if (!filename) {\n return;\n }\n\n const artifact = state._artifact;\n if (!artifact) {\n return;\n }\n\n // Create Babel transformer instance\n const transformer = createTransformer({\n programPath,\n types: t,\n config: pluginSession.config,\n });\n\n // Transform using single method call (matches TypeScript plugin pattern)\n transformer.transform({\n filename,\n artifactLookup: (canonicalId: CanonicalId) => artifact.elements[canonicalId],\n });\n },\n },\n});\n\nexport const createSodaGqlPlugin = (_babel: unknown, options: PluginOptions = {}): PluginObj => {\n // Create plugin session synchronously (no async pre())\n const pluginSession = createPluginSession(options, \"@soda-gql/babel\");\n\n return pluginSession ? createPlugin({ pluginSession }) : fallbackPlugin();\n};\n\n/**\n * Create a Babel plugin with an already-built artifact.\n * Use this when the artifact is pre-built (e.g., by a bundler plugin).\n */\nexport const createPluginWithArtifact = ({\n artifact,\n config,\n}: {\n artifact: BuilderArtifact;\n config: ResolvedSodaGqlConfig;\n}): PluginObj => ({\n name: \"@soda-gql/babel\",\n\n visitor: {\n Program(programPath: NodePath<t.Program>, state) {\n const filename = state.file?.opts?.filename;\n if (!filename) {\n return;\n }\n\n // Create Babel transformer instance\n const transformer = createTransformer({\n programPath,\n types: t,\n config,\n });\n\n // Transform using single method call (matches TypeScript plugin pattern)\n transformer.transform({\n filename,\n artifactLookup: (canonicalId: CanonicalId) => artifact.elements[canonicalId],\n });\n },\n },\n});\n\nexport default createSodaGqlPlugin;\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin.cjs","names":["createTransformer","t","createSodaGqlPlugin"],"sources":["../src/plugin.ts","../@x-plugin.ts"],"sourcesContent":["/**\n * Babel plugin entrypoint for soda-gql.\n *\n * This module provides Babel transformer integration for soda-gql\n * zero-runtime transformations.\n */\n\nimport type { PluginObj, PluginPass } from \"@babel/core\";\nimport { types as t } from \"@babel/core\";\nimport type { NodePath } from \"@babel/traverse\";\nimport type { BuilderArtifact } from \"@soda-gql/builder\";\nimport { createPluginSession, type PluginOptions, type PluginSession } from \"@soda-gql/builder/plugin-support\";\nimport type { CanonicalId } from \"@soda-gql/common\";\nimport type { ResolvedSodaGqlConfig } from \"@soda-gql/config\";\nimport { createTransformer } from \"./transformer\";\n\ntype PluginPassState = PluginPass & {\n _artifact?: BuilderArtifact | null;\n};\n\nconst fallbackPlugin = (): PluginObj => ({\n name: \"@soda-gql/babel\",\n visitor: {\n Program() {\n // No-op fallback\n },\n },\n});\n\nexport const createPlugin = ({ pluginSession }: { pluginSession: PluginSession }): PluginObj<PluginPassState> => ({\n name: \"@soda-gql/babel\",\n\n async pre() {\n this._artifact = await pluginSession.getArtifactAsync();\n },\n\n visitor: {\n Program(programPath: NodePath<t.Program>, state) {\n const filename = state.file?.opts?.filename;\n if (!filename) {\n return;\n }\n\n const artifact = state._artifact;\n if (!artifact) {\n return;\n }\n\n // Create Babel transformer instance\n const transformer = createTransformer({\n programPath,\n types: t,\n config: pluginSession.config,\n });\n\n // Transform using single method call (matches TypeScript plugin pattern)\n transformer.transform({\n filename,\n artifactLookup: (canonicalId: CanonicalId) => artifact.elements[canonicalId],\n });\n },\n },\n});\n\nexport const createSodaGqlPlugin = (_babel: unknown, options: PluginOptions = {}): PluginObj => {\n // Create plugin session synchronously (no async pre())\n const pluginSession = createPluginSession(options, \"@soda-gql/babel\");\n\n return pluginSession ? createPlugin({ pluginSession }) : fallbackPlugin();\n};\n\n/**\n * Create a Babel plugin with an already-built artifact.\n * Use this when the artifact is pre-built (e.g., by a bundler plugin).\n */\nexport const createPluginWithArtifact = ({\n artifact,\n config,\n}: {\n artifact: BuilderArtifact;\n config: ResolvedSodaGqlConfig;\n}): PluginObj => ({\n name: \"@soda-gql/babel\",\n\n visitor: {\n Program(programPath: NodePath<t.Program>, state) {\n const filename = state.file?.opts?.filename;\n if (!filename) {\n return;\n }\n\n // Create Babel transformer instance\n const transformer = createTransformer({\n programPath,\n types: t,\n config,\n });\n\n // Transform using single method call (matches TypeScript plugin pattern)\n transformer.transform({\n filename,\n artifactLookup: (canonicalId: CanonicalId) => artifact.elements[canonicalId],\n });\n },\n },\n});\n\nexport default createSodaGqlPlugin;\n","export * from \"./src/plugin\";\n\nimport createSodaGqlPlugin from \"./src/plugin\";\nexport default createSodaGqlPlugin;\n"],"mappings":";;;;;;AAoBA,MAAM,wBAAmC;CACvC,MAAM;CACN,SAAS,EACP,UAAU,IAGX;CACF;AAED,MAAa,gBAAgB,EAAE,qBAAmF;CAChH,MAAM;CAEN,MAAM,MAAM;AACV,OAAK,YAAY,MAAM,cAAc,kBAAkB;;CAGzD,SAAS,EACP,QAAQ,aAAkC,OAAO;EAC/C,MAAM,WAAW,MAAM,MAAM,MAAM;AACnC,MAAI,CAAC,SACH;EAGF,MAAM,WAAW,MAAM;AACvB,MAAI,CAAC,SACH;AAWF,EAPoBA,sCAAkB;GACpC;GACA,OAAOC;GACP,QAAQ,cAAc;GACvB,CAAC,CAGU,UAAU;GACpB;GACA,iBAAiB,gBAA6B,SAAS,SAAS;GACjE,CAAC;IAEL;CACF;AAED,MAAa,uBAAuB,QAAiB,UAAyB,EAAE,KAAgB;CAE9F,MAAM,2EAAoC,SAAS,kBAAkB;AAErE,QAAO,gBAAgB,aAAa,EAAE,eAAe,CAAC,GAAG,gBAAgB;;;;;;AAO3E,MAAa,4BAA4B,EACvC,UACA,cAIgB;CAChB,MAAM;CAEN,SAAS,EACP,QAAQ,aAAkC,OAAO;EAC/C,MAAM,WAAW,MAAM,MAAM,MAAM;AACnC,MAAI,CAAC,SACH;AAWF,EAPoBD,sCAAkB;GACpC;GACA,OAAOC;GACP;GACD,CAAC,CAGU,UAAU;GACpB;GACA,iBAAiB,gBAA6B,SAAS,SAAS;GACjE,CAAC;IAEL;CACF;AAED,qBAAe;;;;ACxGf,yBAAeC"}
|
package/dist/plugin.d.cts
CHANGED
|
@@ -26,5 +26,5 @@ declare const createPluginWithArtifact: ({
|
|
|
26
26
|
config: ResolvedSodaGqlConfig;
|
|
27
27
|
}) => PluginObj;
|
|
28
28
|
//#endregion
|
|
29
|
-
export { createPlugin, createPluginWithArtifact, createSodaGqlPlugin };
|
|
29
|
+
export { createPlugin, createPluginWithArtifact, createSodaGqlPlugin, createSodaGqlPlugin as default };
|
|
30
30
|
//# sourceMappingURL=plugin.d.cts.map
|
package/dist/plugin.d.mts
CHANGED
|
@@ -26,5 +26,5 @@ declare const createPluginWithArtifact: ({
|
|
|
26
26
|
config: ResolvedSodaGqlConfig;
|
|
27
27
|
}) => PluginObj;
|
|
28
28
|
//#endregion
|
|
29
|
-
export { createPlugin, createPluginWithArtifact, createSodaGqlPlugin };
|
|
29
|
+
export { createPlugin, createPluginWithArtifact, createSodaGqlPlugin, createSodaGqlPlugin as default };
|
|
30
30
|
//# sourceMappingURL=plugin.d.mts.map
|
package/dist/plugin.mjs
CHANGED
|
@@ -50,7 +50,12 @@ const createPluginWithArtifact = ({ artifact, config }) => ({
|
|
|
50
50
|
});
|
|
51
51
|
} }
|
|
52
52
|
});
|
|
53
|
+
var plugin_default = createSodaGqlPlugin;
|
|
53
54
|
|
|
54
55
|
//#endregion
|
|
55
|
-
|
|
56
|
+
//#region packages/babel/@x-plugin.ts
|
|
57
|
+
var __x_plugin_default = plugin_default;
|
|
58
|
+
|
|
59
|
+
//#endregion
|
|
60
|
+
export { createPlugin, createPluginWithArtifact, createSodaGqlPlugin, __x_plugin_default as default };
|
|
56
61
|
//# sourceMappingURL=plugin.mjs.map
|
package/dist/plugin.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.mjs","names":["t"],"sources":["../src/plugin.ts"],"sourcesContent":["/**\n * Babel plugin entrypoint for soda-gql.\n *\n * This module provides Babel transformer integration for soda-gql\n * zero-runtime transformations.\n */\n\nimport type { PluginObj, PluginPass } from \"@babel/core\";\nimport { types as t } from \"@babel/core\";\nimport type { NodePath } from \"@babel/traverse\";\nimport type { BuilderArtifact } from \"@soda-gql/builder\";\nimport { createPluginSession, type PluginOptions, type PluginSession } from \"@soda-gql/builder/plugin-support\";\nimport type { CanonicalId } from \"@soda-gql/common\";\nimport type { ResolvedSodaGqlConfig } from \"@soda-gql/config\";\nimport { createTransformer } from \"./transformer\";\n\ntype PluginPassState = PluginPass & {\n _artifact?: BuilderArtifact | null;\n};\n\nconst fallbackPlugin = (): PluginObj => ({\n name: \"@soda-gql/babel\",\n visitor: {\n Program() {\n // No-op fallback\n },\n },\n});\n\nexport const createPlugin = ({ pluginSession }: { pluginSession: PluginSession }): PluginObj<PluginPassState> => ({\n name: \"@soda-gql/babel\",\n\n async pre() {\n this._artifact = await pluginSession.getArtifactAsync();\n },\n\n visitor: {\n Program(programPath: NodePath<t.Program>, state) {\n const filename = state.file?.opts?.filename;\n if (!filename) {\n return;\n }\n\n const artifact = state._artifact;\n if (!artifact) {\n return;\n }\n\n // Create Babel transformer instance\n const transformer = createTransformer({\n programPath,\n types: t,\n config: pluginSession.config,\n });\n\n // Transform using single method call (matches TypeScript plugin pattern)\n transformer.transform({\n filename,\n artifactLookup: (canonicalId: CanonicalId) => artifact.elements[canonicalId],\n });\n },\n },\n});\n\nexport const createSodaGqlPlugin = (_babel: unknown, options: PluginOptions = {}): PluginObj => {\n // Create plugin session synchronously (no async pre())\n const pluginSession = createPluginSession(options, \"@soda-gql/babel\");\n\n return pluginSession ? createPlugin({ pluginSession }) : fallbackPlugin();\n};\n\n/**\n * Create a Babel plugin with an already-built artifact.\n * Use this when the artifact is pre-built (e.g., by a bundler plugin).\n */\nexport const createPluginWithArtifact = ({\n artifact,\n config,\n}: {\n artifact: BuilderArtifact;\n config: ResolvedSodaGqlConfig;\n}): PluginObj => ({\n name: \"@soda-gql/babel\",\n\n visitor: {\n Program(programPath: NodePath<t.Program>, state) {\n const filename = state.file?.opts?.filename;\n if (!filename) {\n return;\n }\n\n // Create Babel transformer instance\n const transformer = createTransformer({\n programPath,\n types: t,\n config,\n });\n\n // Transform using single method call (matches TypeScript plugin pattern)\n transformer.transform({\n filename,\n artifactLookup: (canonicalId: CanonicalId) => artifact.elements[canonicalId],\n });\n },\n },\n});\n\nexport default createSodaGqlPlugin;\n"],"mappings":";;;;;AAoBA,MAAM,wBAAmC;CACvC,MAAM;CACN,SAAS,EACP,UAAU,IAGX;CACF;AAED,MAAa,gBAAgB,EAAE,qBAAmF;CAChH,MAAM;CAEN,MAAM,MAAM;AACV,OAAK,YAAY,MAAM,cAAc,kBAAkB;;CAGzD,SAAS,EACP,QAAQ,aAAkC,OAAO;EAC/C,MAAM,WAAW,MAAM,MAAM,MAAM;AACnC,MAAI,CAAC,SACH;EAGF,MAAM,WAAW,MAAM;AACvB,MAAI,CAAC,SACH;AAWF,EAPoB,kBAAkB;GACpC;GACOA;GACP,QAAQ,cAAc;GACvB,CAAC,CAGU,UAAU;GACpB;GACA,iBAAiB,gBAA6B,SAAS,SAAS;GACjE,CAAC;IAEL;CACF;AAED,MAAa,uBAAuB,QAAiB,UAAyB,EAAE,KAAgB;CAE9F,MAAM,gBAAgB,oBAAoB,SAAS,kBAAkB;AAErE,QAAO,gBAAgB,aAAa,EAAE,eAAe,CAAC,GAAG,gBAAgB;;;;;;AAO3E,MAAa,4BAA4B,EACvC,UACA,cAIgB;CAChB,MAAM;CAEN,SAAS,EACP,QAAQ,aAAkC,OAAO;EAC/C,MAAM,WAAW,MAAM,MAAM,MAAM;AACnC,MAAI,CAAC,SACH;AAWF,EAPoB,kBAAkB;GACpC;GACOA;GACP;GACD,CAAC,CAGU,UAAU;GACpB;GACA,iBAAiB,gBAA6B,SAAS,SAAS;GACjE,CAAC;IAEL;CACF"}
|
|
1
|
+
{"version":3,"file":"plugin.mjs","names":["t","createSodaGqlPlugin"],"sources":["../src/plugin.ts","../@x-plugin.ts"],"sourcesContent":["/**\n * Babel plugin entrypoint for soda-gql.\n *\n * This module provides Babel transformer integration for soda-gql\n * zero-runtime transformations.\n */\n\nimport type { PluginObj, PluginPass } from \"@babel/core\";\nimport { types as t } from \"@babel/core\";\nimport type { NodePath } from \"@babel/traverse\";\nimport type { BuilderArtifact } from \"@soda-gql/builder\";\nimport { createPluginSession, type PluginOptions, type PluginSession } from \"@soda-gql/builder/plugin-support\";\nimport type { CanonicalId } from \"@soda-gql/common\";\nimport type { ResolvedSodaGqlConfig } from \"@soda-gql/config\";\nimport { createTransformer } from \"./transformer\";\n\ntype PluginPassState = PluginPass & {\n _artifact?: BuilderArtifact | null;\n};\n\nconst fallbackPlugin = (): PluginObj => ({\n name: \"@soda-gql/babel\",\n visitor: {\n Program() {\n // No-op fallback\n },\n },\n});\n\nexport const createPlugin = ({ pluginSession }: { pluginSession: PluginSession }): PluginObj<PluginPassState> => ({\n name: \"@soda-gql/babel\",\n\n async pre() {\n this._artifact = await pluginSession.getArtifactAsync();\n },\n\n visitor: {\n Program(programPath: NodePath<t.Program>, state) {\n const filename = state.file?.opts?.filename;\n if (!filename) {\n return;\n }\n\n const artifact = state._artifact;\n if (!artifact) {\n return;\n }\n\n // Create Babel transformer instance\n const transformer = createTransformer({\n programPath,\n types: t,\n config: pluginSession.config,\n });\n\n // Transform using single method call (matches TypeScript plugin pattern)\n transformer.transform({\n filename,\n artifactLookup: (canonicalId: CanonicalId) => artifact.elements[canonicalId],\n });\n },\n },\n});\n\nexport const createSodaGqlPlugin = (_babel: unknown, options: PluginOptions = {}): PluginObj => {\n // Create plugin session synchronously (no async pre())\n const pluginSession = createPluginSession(options, \"@soda-gql/babel\");\n\n return pluginSession ? createPlugin({ pluginSession }) : fallbackPlugin();\n};\n\n/**\n * Create a Babel plugin with an already-built artifact.\n * Use this when the artifact is pre-built (e.g., by a bundler plugin).\n */\nexport const createPluginWithArtifact = ({\n artifact,\n config,\n}: {\n artifact: BuilderArtifact;\n config: ResolvedSodaGqlConfig;\n}): PluginObj => ({\n name: \"@soda-gql/babel\",\n\n visitor: {\n Program(programPath: NodePath<t.Program>, state) {\n const filename = state.file?.opts?.filename;\n if (!filename) {\n return;\n }\n\n // Create Babel transformer instance\n const transformer = createTransformer({\n programPath,\n types: t,\n config,\n });\n\n // Transform using single method call (matches TypeScript plugin pattern)\n transformer.transform({\n filename,\n artifactLookup: (canonicalId: CanonicalId) => artifact.elements[canonicalId],\n });\n },\n },\n});\n\nexport default createSodaGqlPlugin;\n","export * from \"./src/plugin\";\n\nimport createSodaGqlPlugin from \"./src/plugin\";\nexport default createSodaGqlPlugin;\n"],"mappings":";;;;;AAoBA,MAAM,wBAAmC;CACvC,MAAM;CACN,SAAS,EACP,UAAU,IAGX;CACF;AAED,MAAa,gBAAgB,EAAE,qBAAmF;CAChH,MAAM;CAEN,MAAM,MAAM;AACV,OAAK,YAAY,MAAM,cAAc,kBAAkB;;CAGzD,SAAS,EACP,QAAQ,aAAkC,OAAO;EAC/C,MAAM,WAAW,MAAM,MAAM,MAAM;AACnC,MAAI,CAAC,SACH;EAGF,MAAM,WAAW,MAAM;AACvB,MAAI,CAAC,SACH;AAWF,EAPoB,kBAAkB;GACpC;GACOA;GACP,QAAQ,cAAc;GACvB,CAAC,CAGU,UAAU;GACpB;GACA,iBAAiB,gBAA6B,SAAS,SAAS;GACjE,CAAC;IAEL;CACF;AAED,MAAa,uBAAuB,QAAiB,UAAyB,EAAE,KAAgB;CAE9F,MAAM,gBAAgB,oBAAoB,SAAS,kBAAkB;AAErE,QAAO,gBAAgB,aAAa,EAAE,eAAe,CAAC,GAAG,gBAAgB;;;;;;AAO3E,MAAa,4BAA4B,EACvC,UACA,cAIgB;CAChB,MAAM;CAEN,SAAS,EACP,QAAQ,aAAkC,OAAO;EAC/C,MAAM,WAAW,MAAM,MAAM,MAAM;AACnC,MAAI,CAAC,SACH;AAWF,EAPoB,kBAAkB;GACpC;GACOA;GACP;GACD,CAAC,CAGU,UAAU;GACpB;GACA,iBAAiB,gBAA6B,SAAS,SAAS;GACjE,CAAC;IAEL;CACF;AAED,qBAAe;;;;ACxGf,yBAAeC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soda-gql/babel",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.6",
|
|
4
4
|
"description": "Babel transformer and plugin for soda-gql",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@ampproject/remapping": "^2.3.0",
|
|
59
|
-
"@soda-gql/builder": "0.11.
|
|
60
|
-
"@soda-gql/common": "0.11.
|
|
61
|
-
"@soda-gql/config": "0.11.
|
|
62
|
-
"@soda-gql/core": "0.11.
|
|
59
|
+
"@soda-gql/builder": "0.11.6",
|
|
60
|
+
"@soda-gql/common": "0.11.6",
|
|
61
|
+
"@soda-gql/config": "0.11.6",
|
|
62
|
+
"@soda-gql/core": "0.11.6",
|
|
63
63
|
"@babel/core": "^7.24.0",
|
|
64
64
|
"@babel/generator": "^7.24.0",
|
|
65
65
|
"@babel/parser": "^7.24.0",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"neverthrow": "^8.1.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@soda-gql/tsc": "0.11.
|
|
71
|
+
"@soda-gql/tsc": "0.11.6",
|
|
72
72
|
"@types/babel__generator": "^7.27.0"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {},
|