@powerlines/plugin-satori 0.1.456 → 0.1.458

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.
@@ -1 +1,29 @@
1
- var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},s=(n,r,a)=>(a=n==null?{}:e(i(n)),o(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));exports.__toESM=s;
1
+ //#region \0rolldown/runtime.js
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from === "object" || typeof from === "function") {
10
+ for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
11
+ key = keys[i];
12
+ if (!__hasOwnProp.call(to, key) && key !== except) {
13
+ __defProp(to, key, {
14
+ get: ((k) => from[k]).bind(null, key),
15
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
+ });
17
+ }
18
+ }
19
+ }
20
+ return to;
21
+ };
22
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
23
+ value: mod,
24
+ enumerable: true
25
+ }) : target, mod));
26
+
27
+ //#endregion
28
+
29
+ exports.__toESM = __toESM;
package/dist/index.cjs CHANGED
@@ -1 +1,59 @@
1
- Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:`Module`}});const e=require(`./_virtual/_rolldown/runtime.cjs`);let t=require(`@stryke/convert/to-array`),n=require(`@stryke/fs/exists`),r=require(`@stryke/fs/list-files`),i=require(`@stryke/path/file-path-fns`),a=require(`@stryke/path/join-paths`),o=require(`@stryke/path/replace`),s=require(`defu`);s=e.__toESM(s,1);let c=require(`powerlines/plugin-utils`),l=require(`satori`);l=e.__toESM(l,1);const u=e=>({name:`satori`,config(){return{satori:{defaultOptions:{},width:1200,height:630,fonts:[],...e}}},async configResolved(){if(!this.config.satori.path)throw Error("The Powerlines Satori plugin requires a `path` option to be specified.");this.config.satori.inputs=(await Promise.all((0,t.toArray)(this.config.satori.path).map(async e=>e.includes(`*`)?(0,r.listFiles)((0,c.replacePathTokens)(this,e)):(0,c.replacePathTokens)(this,e)))).flat().filter(e=>e&&[`jsx`,`tsx`].includes((0,i.findFileExtensionSafe)(e))&&(0,n.existsSync)(e))},async prepare(){await Promise.all(this.config.satori.inputs.map(async e=>{try{let t=await this.resolver.import(e);if(t&&t.default){let n=await(0,l.default)(t.default,(0,s.default)(t.options??{},this.config.satori.defaultOptions));n&&await this.fs.write(this.config.satori.outputPath?(0,a.joinPaths)(this.config.satori.outputPath,(0,o.replacePath)(e,(0,a.joinPaths)(this.config.cwd,this.config.root))):e.replace((0,i.findFileExtensionSafe)(e),`svg`),n)}}catch(t){this.debug(`Failed to load Satori schema from ${e}: ${t.message}`)}}))}});exports.default=u,exports.plugin=u;
1
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
2
+ const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
3
+ let _stryke_convert_to_array = require("@stryke/convert/to-array");
4
+ let _stryke_fs_exists = require("@stryke/fs/exists");
5
+ let _stryke_fs_list_files = require("@stryke/fs/list-files");
6
+ let _stryke_path_file_path_fns = require("@stryke/path/file-path-fns");
7
+ let _stryke_path_join_paths = require("@stryke/path/join-paths");
8
+ let _stryke_path_replace = require("@stryke/path/replace");
9
+ let defu = require("defu");
10
+ defu = require_runtime.__toESM(defu, 1);
11
+ let powerlines_plugin_utils = require("powerlines/plugin-utils");
12
+ let satori = require("satori");
13
+ satori = require_runtime.__toESM(satori, 1);
14
+
15
+ //#region src/index.ts
16
+ /**
17
+ * A Powerlines plugin to use Untyped for code generation based on user-defined schemas.
18
+ *
19
+ * @param options - The plugin options.
20
+ * @returns A Powerlines plugin instance.
21
+ */
22
+ const plugin = (options) => {
23
+ return {
24
+ name: "satori",
25
+ config() {
26
+ return { satori: {
27
+ defaultOptions: {},
28
+ width: 1200,
29
+ height: 630,
30
+ fonts: [],
31
+ ...options
32
+ } };
33
+ },
34
+ async configResolved() {
35
+ if (!this.config.satori.path) throw new Error("The Powerlines Satori plugin requires a `path` option to be specified.");
36
+ this.config.satori.inputs = (await Promise.all((0, _stryke_convert_to_array.toArray)(this.config.satori.path).map(async (path) => {
37
+ if (path.includes("*")) return (0, _stryke_fs_list_files.listFiles)((0, powerlines_plugin_utils.replacePathTokens)(this, path));
38
+ return (0, powerlines_plugin_utils.replacePathTokens)(this, path);
39
+ }))).flat().filter((path) => path && ["jsx", "tsx"].includes((0, _stryke_path_file_path_fns.findFileExtensionSafe)(path)) && (0, _stryke_fs_exists.existsSync)(path));
40
+ },
41
+ async prepare() {
42
+ await Promise.all(this.config.satori.inputs.map(async (input) => {
43
+ try {
44
+ const mod = await this.resolver.import(input);
45
+ if (mod && mod.default) {
46
+ const result = await (0, satori.default)(mod.default, (0, defu.default)(mod.options ?? {}, this.config.satori.defaultOptions));
47
+ if (result) await this.fs.write(this.config.satori.outputPath ? (0, _stryke_path_join_paths.joinPaths)(this.config.satori.outputPath, (0, _stryke_path_replace.replacePath)(input, (0, _stryke_path_join_paths.joinPaths)(this.config.cwd, this.config.root))) : input.replace((0, _stryke_path_file_path_fns.findFileExtensionSafe)(input), "svg"), result);
48
+ }
49
+ } catch (error) {
50
+ this.debug(`Failed to load Satori schema from ${input}: ${error.message}`);
51
+ }
52
+ }));
53
+ }
54
+ };
55
+ };
56
+
57
+ //#endregion
58
+ exports.default = plugin;
59
+ exports.plugin = plugin;
package/dist/index.mjs CHANGED
@@ -1,2 +1,55 @@
1
- import{toArray as e}from"@stryke/convert/to-array";import{existsSync as t}from"@stryke/fs/exists";import{listFiles as n}from"@stryke/fs/list-files";import{findFileExtensionSafe as r}from"@stryke/path/file-path-fns";import{joinPaths as i}from"@stryke/path/join-paths";import{replacePath as a}from"@stryke/path/replace";import o from"defu";import{replacePathTokens as s}from"powerlines/plugin-utils";import c from"satori";const l=l=>({name:`satori`,config(){return{satori:{defaultOptions:{},width:1200,height:630,fonts:[],...l}}},async configResolved(){if(!this.config.satori.path)throw Error("The Powerlines Satori plugin requires a `path` option to be specified.");this.config.satori.inputs=(await Promise.all(e(this.config.satori.path).map(async e=>e.includes(`*`)?n(s(this,e)):s(this,e)))).flat().filter(e=>e&&[`jsx`,`tsx`].includes(r(e))&&t(e))},async prepare(){await Promise.all(this.config.satori.inputs.map(async e=>{try{let t=await this.resolver.import(e);if(t&&t.default){let n=await c(t.default,o(t.options??{},this.config.satori.defaultOptions));n&&await this.fs.write(this.config.satori.outputPath?i(this.config.satori.outputPath,a(e,i(this.config.cwd,this.config.root))):e.replace(r(e),`svg`),n)}}catch(t){this.debug(`Failed to load Satori schema from ${e}: ${t.message}`)}}))}});export{l as default,l as plugin};
1
+ import { toArray } from "@stryke/convert/to-array";
2
+ import { existsSync } from "@stryke/fs/exists";
3
+ import { listFiles } from "@stryke/fs/list-files";
4
+ import { findFileExtensionSafe } from "@stryke/path/file-path-fns";
5
+ import { joinPaths } from "@stryke/path/join-paths";
6
+ import { replacePath } from "@stryke/path/replace";
7
+ import defu from "defu";
8
+ import { replacePathTokens } from "powerlines/plugin-utils";
9
+ import satori from "satori";
10
+
11
+ //#region src/index.ts
12
+ /**
13
+ * A Powerlines plugin to use Untyped for code generation based on user-defined schemas.
14
+ *
15
+ * @param options - The plugin options.
16
+ * @returns A Powerlines plugin instance.
17
+ */
18
+ const plugin = (options) => {
19
+ return {
20
+ name: "satori",
21
+ config() {
22
+ return { satori: {
23
+ defaultOptions: {},
24
+ width: 1200,
25
+ height: 630,
26
+ fonts: [],
27
+ ...options
28
+ } };
29
+ },
30
+ async configResolved() {
31
+ if (!this.config.satori.path) throw new Error("The Powerlines Satori plugin requires a `path` option to be specified.");
32
+ this.config.satori.inputs = (await Promise.all(toArray(this.config.satori.path).map(async (path) => {
33
+ if (path.includes("*")) return listFiles(replacePathTokens(this, path));
34
+ return replacePathTokens(this, path);
35
+ }))).flat().filter((path) => path && ["jsx", "tsx"].includes(findFileExtensionSafe(path)) && existsSync(path));
36
+ },
37
+ async prepare() {
38
+ await Promise.all(this.config.satori.inputs.map(async (input) => {
39
+ try {
40
+ const mod = await this.resolver.import(input);
41
+ if (mod && mod.default) {
42
+ const result = await satori(mod.default, defu(mod.options ?? {}, this.config.satori.defaultOptions));
43
+ if (result) await this.fs.write(this.config.satori.outputPath ? joinPaths(this.config.satori.outputPath, replacePath(input, joinPaths(this.config.cwd, this.config.root))) : input.replace(findFileExtensionSafe(input), "svg"), result);
44
+ }
45
+ } catch (error) {
46
+ this.debug(`Failed to load Satori schema from ${input}: ${error.message}`);
47
+ }
48
+ }));
49
+ }
50
+ };
51
+ };
52
+
53
+ //#endregion
54
+ export { plugin as default, plugin };
2
55
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { toArray } from \"@stryke/convert/to-array\";\nimport { existsSync } from \"@stryke/fs/exists\";\nimport { listFiles } from \"@stryke/fs/list-files\";\nimport { findFileExtensionSafe } from \"@stryke/path/file-path-fns\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { replacePath } from \"@stryke/path/replace\";\nimport defu from \"defu\";\nimport type { Plugin } from \"powerlines\";\nimport { replacePathTokens } from \"powerlines/plugin-utils\";\nimport satori from \"satori\";\nimport { SatoriComponentModule } from \"./types/module\";\nimport {\n SatoriPluginContext,\n SatoriPluginOptions,\n SatoriPluginUserConfig\n} from \"./types/plugin\";\n\nexport * from \"./types\";\n\ndeclare module \"powerlines\" {\n interface Config {\n satori?: SatoriPluginOptions;\n }\n}\n\n/**\n * A Powerlines plugin to use Untyped for code generation based on user-defined schemas.\n *\n * @param options - The plugin options.\n * @returns A Powerlines plugin instance.\n */\nexport const plugin = <\n TContext extends SatoriPluginContext = SatoriPluginContext\n>(\n options: SatoriPluginOptions\n): Plugin<TContext> => {\n return {\n name: \"satori\",\n config() {\n return {\n satori: {\n defaultOptions: {},\n width: 1200,\n height: 630,\n fonts: [],\n ...options\n }\n } as Partial<SatoriPluginUserConfig>;\n },\n async configResolved() {\n if (!this.config.satori.path) {\n throw new Error(\n \"The Powerlines Satori plugin requires a \\`path\\` option to be specified.\"\n );\n }\n\n this.config.satori.inputs = (\n await Promise.all(\n toArray(this.config.satori.path).map(async path => {\n if (path.includes(\"*\")) {\n return listFiles(replacePathTokens(this, path));\n }\n\n return replacePathTokens(this, path);\n })\n )\n )\n .flat()\n .filter(\n path =>\n path &&\n [\"jsx\", \"tsx\"].includes(findFileExtensionSafe(path)) &&\n existsSync(path)\n );\n },\n async prepare() {\n await Promise.all(\n this.config.satori.inputs.map(async input => {\n try {\n const mod =\n await this.resolver.import<SatoriComponentModule>(input);\n if (mod && mod.default) {\n const result = await satori(\n mod.default,\n defu(mod.options ?? {}, this.config.satori.defaultOptions)\n );\n if (result) {\n await this.fs.write(\n this.config.satori.outputPath\n ? joinPaths(\n this.config.satori.outputPath,\n replacePath(\n input,\n joinPaths(this.config.cwd, this.config.root)\n )\n )\n : input.replace(findFileExtensionSafe(input), \"svg\"),\n result\n );\n }\n }\n } catch (error) {\n this.debug(\n `Failed to load Satori schema from ${input}: ${(error as Error).message}`\n );\n }\n })\n );\n }\n };\n};\n\nexport default plugin;\n"],"mappings":"oaAiDA,MAAa,EAGX,IAEO,CACL,KAAM,SACN,QAAS,CACP,MAAO,CACL,OAAQ,CACN,eAAgB,EAAE,CAClB,MAAO,KACP,OAAQ,IACR,MAAO,EAAE,CACT,GAAG,EACJ,CACF,EAEH,MAAM,gBAAiB,CACrB,GAAI,CAAC,KAAK,OAAO,OAAO,KACtB,MAAU,MACR,yEACD,CAGH,KAAK,OAAO,OAAO,QACjB,MAAM,QAAQ,IACZ,EAAQ,KAAK,OAAO,OAAO,KAAK,CAAC,IAAI,KAAM,IACrC,EAAK,SAAS,IAAI,CACb,EAAU,EAAkB,KAAM,EAAK,CAAC,CAG1C,EAAkB,KAAM,EAAK,CACpC,CACH,EAEA,MAAM,CACN,OACC,GACE,GACA,CAAC,MAAO,MAAM,CAAC,SAAS,EAAsB,EAAK,CAAC,EACpD,EAAW,EAAK,CACnB,EAEL,MAAM,SAAU,CACd,MAAM,QAAQ,IACZ,KAAK,OAAO,OAAO,OAAO,IAAI,KAAM,IAAS,CAC3C,GAAI,CACF,IAAM,EACJ,MAAM,KAAK,SAAS,OAA8B,EAAM,CAC1D,GAAI,GAAO,EAAI,QAAS,CACtB,IAAM,EAAS,MAAM,EACnB,EAAI,QACJ,EAAK,EAAI,SAAW,EAAE,CAAE,KAAK,OAAO,OAAO,eAAe,CAC3D,CACG,GACF,MAAM,KAAK,GAAG,MACZ,KAAK,OAAO,OAAO,WACf,EACE,KAAK,OAAO,OAAO,WACnB,EACE,EACA,EAAU,KAAK,OAAO,IAAK,KAAK,OAAO,KAAK,CAC7C,CACF,CACD,EAAM,QAAQ,EAAsB,EAAM,CAAE,MAAM,CACtD,EACD,QAGE,EAAO,CACd,KAAK,MACH,qCAAqC,EAAM,IAAK,EAAgB,UACjE,GAEH,CACH,EAEJ"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { toArray } from \"@stryke/convert/to-array\";\nimport { existsSync } from \"@stryke/fs/exists\";\nimport { listFiles } from \"@stryke/fs/list-files\";\nimport { findFileExtensionSafe } from \"@stryke/path/file-path-fns\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { replacePath } from \"@stryke/path/replace\";\nimport defu from \"defu\";\nimport type { Plugin } from \"powerlines\";\nimport { replacePathTokens } from \"powerlines/plugin-utils\";\nimport satori from \"satori\";\nimport { SatoriComponentModule } from \"./types/module\";\nimport {\n SatoriPluginContext,\n SatoriPluginOptions,\n SatoriPluginUserConfig\n} from \"./types/plugin\";\n\nexport * from \"./types\";\n\ndeclare module \"powerlines\" {\n interface Config {\n satori?: SatoriPluginOptions;\n }\n}\n\n/**\n * A Powerlines plugin to use Untyped for code generation based on user-defined schemas.\n *\n * @param options - The plugin options.\n * @returns A Powerlines plugin instance.\n */\nexport const plugin = <\n TContext extends SatoriPluginContext = SatoriPluginContext\n>(\n options: SatoriPluginOptions\n): Plugin<TContext> => {\n return {\n name: \"satori\",\n config() {\n return {\n satori: {\n defaultOptions: {},\n width: 1200,\n height: 630,\n fonts: [],\n ...options\n }\n } as Partial<SatoriPluginUserConfig>;\n },\n async configResolved() {\n if (!this.config.satori.path) {\n throw new Error(\n \"The Powerlines Satori plugin requires a \\`path\\` option to be specified.\"\n );\n }\n\n this.config.satori.inputs = (\n await Promise.all(\n toArray(this.config.satori.path).map(async path => {\n if (path.includes(\"*\")) {\n return listFiles(replacePathTokens(this, path));\n }\n\n return replacePathTokens(this, path);\n })\n )\n )\n .flat()\n .filter(\n path =>\n path &&\n [\"jsx\", \"tsx\"].includes(findFileExtensionSafe(path)) &&\n existsSync(path)\n );\n },\n async prepare() {\n await Promise.all(\n this.config.satori.inputs.map(async input => {\n try {\n const mod =\n await this.resolver.import<SatoriComponentModule>(input);\n if (mod && mod.default) {\n const result = await satori(\n mod.default,\n defu(mod.options ?? {}, this.config.satori.defaultOptions)\n );\n if (result) {\n await this.fs.write(\n this.config.satori.outputPath\n ? joinPaths(\n this.config.satori.outputPath,\n replacePath(\n input,\n joinPaths(this.config.cwd, this.config.root)\n )\n )\n : input.replace(findFileExtensionSafe(input), \"svg\"),\n result\n );\n }\n }\n } catch (error) {\n this.debug(\n `Failed to load Satori schema from ${input}: ${(error as Error).message}`\n );\n }\n })\n );\n }\n };\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;;;;;;;AAiDA,MAAa,UAGX,YACqB;AACrB,QAAO;EACL,MAAM;EACN,SAAS;AACP,UAAO,EACL,QAAQ;IACN,gBAAgB,EAAE;IAClB,OAAO;IACP,QAAQ;IACR,OAAO,EAAE;IACT,GAAG;IACJ,EACF;;EAEH,MAAM,iBAAiB;AACrB,OAAI,CAAC,KAAK,OAAO,OAAO,KACtB,OAAM,IAAI,MACR,yEACD;AAGH,QAAK,OAAO,OAAO,UACjB,MAAM,QAAQ,IACZ,QAAQ,KAAK,OAAO,OAAO,KAAK,CAAC,IAAI,OAAM,SAAQ;AACjD,QAAI,KAAK,SAAS,IAAI,CACpB,QAAO,UAAU,kBAAkB,MAAM,KAAK,CAAC;AAGjD,WAAO,kBAAkB,MAAM,KAAK;KACpC,CACH,EAEA,MAAM,CACN,QACC,SACE,QACA,CAAC,OAAO,MAAM,CAAC,SAAS,sBAAsB,KAAK,CAAC,IACpD,WAAW,KAAK,CACnB;;EAEL,MAAM,UAAU;AACd,SAAM,QAAQ,IACZ,KAAK,OAAO,OAAO,OAAO,IAAI,OAAM,UAAS;AAC3C,QAAI;KACF,MAAM,MACJ,MAAM,KAAK,SAAS,OAA8B,MAAM;AAC1D,SAAI,OAAO,IAAI,SAAS;MACtB,MAAM,SAAS,MAAM,OACnB,IAAI,SACJ,KAAK,IAAI,WAAW,EAAE,EAAE,KAAK,OAAO,OAAO,eAAe,CAC3D;AACD,UAAI,OACF,OAAM,KAAK,GAAG,MACZ,KAAK,OAAO,OAAO,aACf,UACE,KAAK,OAAO,OAAO,YACnB,YACE,OACA,UAAU,KAAK,OAAO,KAAK,KAAK,OAAO,KAAK,CAC7C,CACF,GACD,MAAM,QAAQ,sBAAsB,MAAM,EAAE,MAAM,EACtD,OACD;;aAGE,OAAO;AACd,UAAK,MACH,qCAAqC,MAAM,IAAK,MAAgB,UACjE;;KAEH,CACH;;EAEJ"}
@@ -1 +1 @@
1
- export{};
1
+ export { };
@@ -1 +1 @@
1
- export{};
1
+ export { };
@@ -1 +1 @@
1
- export{};
1
+ export { };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-satori",
3
- "version": "0.1.456",
3
+ "version": "0.1.458",
4
4
  "type": "module",
5
5
  "description": "A Powerlines plugin to use Satori to generate SVG files from jsx/tsx components.",
6
6
  "repository": {
@@ -117,11 +117,11 @@
117
117
  "@stryke/types": "^0.12.0",
118
118
  "defu": "^6.1.7",
119
119
  "jiti": "^2.6.1",
120
- "powerlines": "^0.46.4",
120
+ "powerlines": "^0.46.6",
121
121
  "satori": "^0.18.4"
122
122
  },
123
123
  "devDependencies": {
124
- "@powerlines/plugin-plugin": "^0.12.408",
124
+ "@powerlines/plugin-plugin": "^0.12.410",
125
125
  "@storm-software/config": "^1.137.34",
126
126
  "@types/node": "^25.6.0",
127
127
  "@types/react": "^19.2.14",
@@ -129,5 +129,5 @@
129
129
  },
130
130
  "publishConfig": { "access": "public" },
131
131
  "types": "./dist/index.d.cts",
132
- "gitHead": "2e5eff0d36cb4a1a54242017a16c5af5d9ce2cc3"
132
+ "gitHead": "610c4c943933458c5f433b9002d8c187625b2d3f"
133
133
  }