n8n-nodes-svgr 0.1.1
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/LICENSE.md +19 -0
- package/README.md +201 -0
- package/dist/icons/svgr.dark.svg +10 -0
- package/dist/icons/svgr.svg +10 -0
- package/dist/nodes/Svgr/Svgr.node.d.ts +5 -0
- package/dist/nodes/Svgr/Svgr.node.js +160 -0
- package/dist/nodes/Svgr/Svgr.node.js.map +1 -0
- package/dist/nodes/Svgr/Svgr.node.json +18 -0
- package/dist/nodes/Svgr/svgTransformer.d.ts +11 -0
- package/dist/nodes/Svgr/svgTransformer.js +165 -0
- package/dist/nodes/Svgr/svgTransformer.js.map +1 -0
- package/dist/package.json +57 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +57 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright 2022 n8n
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
5
|
+
the Software without restriction, including without limitation the rights to
|
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
8
|
+
so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
# n8n-nodes-svgr
|
|
2
|
+
|
|
3
|
+
This is an n8n community node that transforms SVG code into React components.
|
|
4
|
+
|
|
5
|
+
[n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
|
|
6
|
+
|
|
7
|
+
## ✅ n8n Cloud Compatible
|
|
8
|
+
|
|
9
|
+
This node has **no external dependencies** and is fully compatible with both:
|
|
10
|
+
- ✅ n8n Cloud
|
|
11
|
+
- ✅ Self-hosted n8n instances
|
|
12
|
+
|
|
13
|
+
## Features
|
|
14
|
+
|
|
15
|
+
- Transform SVG code into React components
|
|
16
|
+
- Customizable options:
|
|
17
|
+
- **Icon Mode**: Replace width/height with `1em` for scalable icons
|
|
18
|
+
- **TypeScript**: Generate TypeScript-compatible code
|
|
19
|
+
- **Prettier**: Format output with Prettier
|
|
20
|
+
- **Dimensions**: Keep or remove original width/height attributes
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
### n8n Cloud
|
|
25
|
+
|
|
26
|
+
1. Go to **Settings > Community Nodes**
|
|
27
|
+
2. Click **Install**
|
|
28
|
+
3. Enter `n8n-nodes-svgr`
|
|
29
|
+
4. Click **Install**
|
|
30
|
+
|
|
31
|
+
### Self-Hosted n8n
|
|
32
|
+
|
|
33
|
+
Install via npm in your n8n installation directory:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npm install n8n-nodes-svgr
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Or install through the n8n UI:
|
|
40
|
+
|
|
41
|
+
1. Go to **Settings > Community Nodes**
|
|
42
|
+
2. Click **Install**
|
|
43
|
+
3. Enter `n8n-nodes-svgr`
|
|
44
|
+
4. Click **Install**
|
|
45
|
+
|
|
46
|
+
### From Source
|
|
47
|
+
|
|
48
|
+
1. Clone this repository
|
|
49
|
+
2. Install dependencies:
|
|
50
|
+
```bash
|
|
51
|
+
pnpm install
|
|
52
|
+
```
|
|
53
|
+
3. Build the node:
|
|
54
|
+
```bash
|
|
55
|
+
pnpm run build
|
|
56
|
+
```
|
|
57
|
+
4. Link to your n8n installation or copy `dist/` to your n8n's `node_modules/n8n-nodes-svgr/`
|
|
58
|
+
|
|
59
|
+
## Usage
|
|
60
|
+
|
|
61
|
+
1. Add the **SVGR** node to your workflow
|
|
62
|
+
2. Enter your SVG code in the **SVG Code** field
|
|
63
|
+
3. Configure options as needed:
|
|
64
|
+
- **Icon**: Enable for icon-style components (default: `true`)
|
|
65
|
+
- **TypeScript**: Generate TypeScript code (default: `false`)
|
|
66
|
+
- **Prettier**: Format with Prettier (default: `true`)
|
|
67
|
+
- **Dimensions**: Keep original dimensions (default: `false`)
|
|
68
|
+
4. Execute the node to get the transformed React component
|
|
69
|
+
|
|
70
|
+
### Example
|
|
71
|
+
|
|
72
|
+
**Input (SVG Code):**
|
|
73
|
+
```xml
|
|
74
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
75
|
+
<path d="M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z"/>
|
|
76
|
+
</svg>
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**Output (reactCode):**
|
|
80
|
+
```jsx
|
|
81
|
+
import * as React from "react";
|
|
82
|
+
const SvgComponent = (props) => (
|
|
83
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
|
|
84
|
+
<path d="M12 2 2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z" />
|
|
85
|
+
</svg>
|
|
86
|
+
);
|
|
87
|
+
export default SvgComponent;
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
## Development
|
|
91
|
+
|
|
92
|
+
### Setup
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
pnpm install
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Development Mode
|
|
99
|
+
|
|
100
|
+
Start n8n with hot reload:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
pnpm run dev
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### Build
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
pnpm run build
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
This compiles the TypeScript code to JavaScript. The node uses a custom SVG→JSX transformer with no external dependencies.
|
|
113
|
+
|
|
114
|
+
### Lint
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
pnpm run lint
|
|
118
|
+
pnpm run lint:fix
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
### Testing
|
|
122
|
+
|
|
123
|
+
Run unit tests:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
pnpm test
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
Run tests in watch mode:
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
pnpm test:watch
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
Run tests with coverage:
|
|
136
|
+
|
|
137
|
+
```bash
|
|
138
|
+
pnpm test -- --coverage
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Test your node in n8n:
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
pnpm run dev
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
Then test your node in n8n workflows at http://localhost:5678
|
|
148
|
+
|
|
149
|
+
## Compatibility
|
|
150
|
+
|
|
151
|
+
| n8n Version | Compatibility |
|
|
152
|
+
|-------------|---------------|
|
|
153
|
+
| 1.0+ | ✅ Compatible |
|
|
154
|
+
| n8n Cloud | ✅ Compatible |
|
|
155
|
+
|
|
156
|
+
**No external dependencies required!** This node uses a custom SVG→JSX transformer built specifically for n8n, making it fully compatible with n8n Cloud.
|
|
157
|
+
|
|
158
|
+
## Technical Details
|
|
159
|
+
|
|
160
|
+
This node uses a custom-built SVG→JSX transformer that:
|
|
161
|
+
- Converts HTML attributes to React JSX syntax (e.g., `class` → `className`, `stroke-width` → `strokeWidth`)
|
|
162
|
+
- Handles style attributes by converting them to React style objects
|
|
163
|
+
- Supports icon mode (removes dimensions for scalable icons)
|
|
164
|
+
- Generates TypeScript-compatible code when enabled
|
|
165
|
+
- Formats output with basic prettification
|
|
166
|
+
|
|
167
|
+
The transformer is built without external dependencies, making it fully compatible with n8n Cloud restrictions.
|
|
168
|
+
|
|
169
|
+
## Resources
|
|
170
|
+
|
|
171
|
+
- [n8n Community Nodes Documentation](https://docs.n8n.io/integrations/community-nodes/)
|
|
172
|
+
- [n8n Node Development Guide](https://docs.n8n.io/integrations/creating-nodes/)
|
|
173
|
+
|
|
174
|
+
## Version History
|
|
175
|
+
|
|
176
|
+
### 0.1.0
|
|
177
|
+
- Initial release
|
|
178
|
+
- Transform SVG to React components
|
|
179
|
+
- Configurable options (Icon, TypeScript, Prettier, Dimensions)
|
|
180
|
+
- Self-hosted n8n support
|
|
181
|
+
|
|
182
|
+
## License
|
|
183
|
+
|
|
184
|
+
[MIT](LICENSE.md)
|
|
185
|
+
|
|
186
|
+
## Author
|
|
187
|
+
|
|
188
|
+
**SeonHyungjo**
|
|
189
|
+
- Email: seonhyung.jo@gmail.com
|
|
190
|
+
- GitHub: [@SeonHyungjo](https://github.com/SeonHyungjo)
|
|
191
|
+
|
|
192
|
+
## Contributing
|
|
193
|
+
|
|
194
|
+
Issues and pull requests are welcome! Please feel free to contribute.
|
|
195
|
+
|
|
196
|
+
## Support
|
|
197
|
+
|
|
198
|
+
If you encounter any issues or have questions:
|
|
199
|
+
1. Check the [Issues](https://github.com/SeonHyungjo/n8n-nodes-svgr/issues) page
|
|
200
|
+
2. Create a new issue if your problem isn't already listed
|
|
201
|
+
3. Visit the [n8n Community Forum](https://community.n8n.io/)
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g stroke="#FFFFFF" stroke-width="12" fill="none">
|
|
3
|
+
<ellipse cx="128" cy="100" rx="110" ry="45"/>
|
|
4
|
+
<ellipse cx="128" cy="100" rx="110" ry="45" transform="rotate(60 128 100)"/>
|
|
5
|
+
<ellipse cx="128" cy="100" rx="110" ry="45" transform="rotate(120 128 100)"/>
|
|
6
|
+
</g>
|
|
7
|
+
<circle cx="128" cy="100" r="25" fill="#FFFFFF"/>
|
|
8
|
+
|
|
9
|
+
<text x="128" y="250" text-anchor="middle" font-family="Arial, Helvetica, sans-serif" font-weight="bold" font-size="60" fill="#FFFFFF">SVGR</text>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g stroke="#000000" stroke-width="12" fill="none">
|
|
3
|
+
<ellipse cx="128" cy="100" rx="110" ry="45"/>
|
|
4
|
+
<ellipse cx="128" cy="100" rx="110" ry="45" transform="rotate(60 128 100)"/>
|
|
5
|
+
<ellipse cx="128" cy="100" rx="110" ry="45" transform="rotate(120 128 100)"/>
|
|
6
|
+
</g>
|
|
7
|
+
<circle cx="128" cy="100" r="25" fill="#000000"/>
|
|
8
|
+
|
|
9
|
+
<text x="128" y="250" text-anchor="middle" font-family="Arial, Helvetica, sans-serif" font-weight="bold" font-size="60" fill="#000000">SVGR</text>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Svgr = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
const svgTransformer_1 = require("./svgTransformer");
|
|
6
|
+
class Svgr {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.description = {
|
|
9
|
+
displayName: 'SVGR',
|
|
10
|
+
name: 'svgr',
|
|
11
|
+
icon: { light: 'file:../../icons/svgr.svg', dark: 'file:../../icons/svgr.dark.svg' },
|
|
12
|
+
group: ['transform'],
|
|
13
|
+
version: 1,
|
|
14
|
+
description: 'Transform SVG into React components using SVGR',
|
|
15
|
+
defaults: {
|
|
16
|
+
name: 'SVGR',
|
|
17
|
+
},
|
|
18
|
+
inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
19
|
+
outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
20
|
+
usableAsTool: true,
|
|
21
|
+
properties: [
|
|
22
|
+
{
|
|
23
|
+
displayName: 'SVG Code',
|
|
24
|
+
name: 'svgCode',
|
|
25
|
+
type: 'string',
|
|
26
|
+
typeOptions: {
|
|
27
|
+
rows: 10,
|
|
28
|
+
},
|
|
29
|
+
default: '',
|
|
30
|
+
placeholder: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">...</svg>',
|
|
31
|
+
description: 'The SVG code to transform into a React component',
|
|
32
|
+
required: true,
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
displayName: 'Component Name',
|
|
36
|
+
name: 'componentName',
|
|
37
|
+
type: 'string',
|
|
38
|
+
default: 'SvgComponent',
|
|
39
|
+
placeholder: 'SvgComponent',
|
|
40
|
+
description: 'The name of the React component to generate',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
displayName: 'Options',
|
|
44
|
+
name: 'options',
|
|
45
|
+
type: 'collection',
|
|
46
|
+
placeholder: 'Add Option',
|
|
47
|
+
default: {},
|
|
48
|
+
options: [
|
|
49
|
+
{
|
|
50
|
+
displayName: 'Add Fill Current Color',
|
|
51
|
+
name: 'addFillCurrentColor',
|
|
52
|
+
type: 'boolean',
|
|
53
|
+
default: false,
|
|
54
|
+
description: 'Whether to add fill="currentColor" to the SVG element (removes existing fill attributes)',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
displayName: 'Dimensions',
|
|
58
|
+
name: 'dimensions',
|
|
59
|
+
type: 'boolean',
|
|
60
|
+
default: false,
|
|
61
|
+
description: 'Whether to keep width and height attributes from the original SVG',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
displayName: 'Icon',
|
|
65
|
+
name: 'icon',
|
|
66
|
+
type: 'boolean',
|
|
67
|
+
default: true,
|
|
68
|
+
description: 'Whether to remove width and height attributes for scalable icons',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
displayName: 'Prettier',
|
|
72
|
+
name: 'prettier',
|
|
73
|
+
type: 'boolean',
|
|
74
|
+
default: true,
|
|
75
|
+
description: 'Whether to format the output code',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
displayName: 'Remove View Box',
|
|
79
|
+
name: 'removeViewBox',
|
|
80
|
+
type: 'boolean',
|
|
81
|
+
default: false,
|
|
82
|
+
description: 'Whether to remove the viewBox attribute',
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
displayName: 'SVGO',
|
|
86
|
+
name: 'svgo',
|
|
87
|
+
type: 'boolean',
|
|
88
|
+
default: true,
|
|
89
|
+
description: 'Whether to apply SVGO optimizations (removes xmlns, style, shape-rendering attributes)',
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
displayName: 'TypeScript',
|
|
93
|
+
name: 'typescript',
|
|
94
|
+
type: 'boolean',
|
|
95
|
+
default: false,
|
|
96
|
+
description: 'Whether to generate TypeScript code with SVGProps type',
|
|
97
|
+
},
|
|
98
|
+
],
|
|
99
|
+
},
|
|
100
|
+
],
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
async execute() {
|
|
104
|
+
const items = this.getInputData();
|
|
105
|
+
const returnData = [];
|
|
106
|
+
for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
|
|
107
|
+
try {
|
|
108
|
+
const svgCode = this.getNodeParameter('svgCode', itemIndex, '');
|
|
109
|
+
if (!svgCode || svgCode.trim() === '') {
|
|
110
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'SVG Code is required and cannot be empty', { itemIndex });
|
|
111
|
+
}
|
|
112
|
+
const componentName = this.getNodeParameter('componentName', itemIndex, 'SvgComponent');
|
|
113
|
+
const options = this.getNodeParameter('options', itemIndex, {});
|
|
114
|
+
const transformOptions = {
|
|
115
|
+
componentName,
|
|
116
|
+
icon: options.icon !== undefined ? options.icon : true,
|
|
117
|
+
typescript: options.typescript !== undefined ? options.typescript : false,
|
|
118
|
+
prettier: options.prettier !== undefined ? options.prettier : true,
|
|
119
|
+
dimensions: options.dimensions !== undefined ? options.dimensions : false,
|
|
120
|
+
addFillCurrentColor: options.addFillCurrentColor !== undefined ? options.addFillCurrentColor : false,
|
|
121
|
+
svgo: options.svgo !== undefined ? options.svgo : true,
|
|
122
|
+
removeViewBox: options.removeViewBox !== undefined ? options.removeViewBox : false,
|
|
123
|
+
};
|
|
124
|
+
const reactCode = (0, svgTransformer_1.transformSvg)(svgCode, transformOptions);
|
|
125
|
+
const item = {
|
|
126
|
+
json: {
|
|
127
|
+
reactCode,
|
|
128
|
+
svgCode,
|
|
129
|
+
componentName,
|
|
130
|
+
options: transformOptions,
|
|
131
|
+
},
|
|
132
|
+
pairedItem: itemIndex,
|
|
133
|
+
};
|
|
134
|
+
returnData.push(item);
|
|
135
|
+
}
|
|
136
|
+
catch (error) {
|
|
137
|
+
if (this.continueOnFail()) {
|
|
138
|
+
returnData.push({
|
|
139
|
+
json: {
|
|
140
|
+
error: error.message,
|
|
141
|
+
},
|
|
142
|
+
pairedItem: itemIndex,
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
else {
|
|
146
|
+
if (error.context) {
|
|
147
|
+
error.context.itemIndex = itemIndex;
|
|
148
|
+
throw error;
|
|
149
|
+
}
|
|
150
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), error, {
|
|
151
|
+
itemIndex,
|
|
152
|
+
});
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
return [returnData];
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
exports.Svgr = Svgr;
|
|
160
|
+
//# sourceMappingURL=Svgr.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Svgr.node.js","sourceRoot":"","sources":["../../../nodes/Svgr/Svgr.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-svgr",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": ["Development", "Developer Tools", "Data Transformation"],
|
|
6
|
+
"resources": {
|
|
7
|
+
"credentialDocumentation": [
|
|
8
|
+
{
|
|
9
|
+
"url": "https://github.com/SeonHyungjo/n8n-nodes-svgr?tab=readme-ov-file#credentials"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"primaryDocumentation": [
|
|
13
|
+
{
|
|
14
|
+
"url": "https://github.com/SeonHyungjo/n8n-nodes-svgr?tab=readme-ov-file"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface TransformOptions {
|
|
2
|
+
icon?: boolean;
|
|
3
|
+
typescript?: boolean;
|
|
4
|
+
prettier?: boolean;
|
|
5
|
+
dimensions?: boolean;
|
|
6
|
+
componentName?: string;
|
|
7
|
+
addFillCurrentColor?: boolean;
|
|
8
|
+
removeViewBox?: boolean;
|
|
9
|
+
svgo?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare function transformSvg(svgCode: string, options?: TransformOptions): string;
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.transformSvg = transformSvg;
|
|
4
|
+
function htmlToJsx(html) {
|
|
5
|
+
const attributeMap = {
|
|
6
|
+
class: 'className',
|
|
7
|
+
for: 'htmlFor',
|
|
8
|
+
'stroke-width': 'strokeWidth',
|
|
9
|
+
'stroke-linecap': 'strokeLinecap',
|
|
10
|
+
'stroke-linejoin': 'strokeLinejoin',
|
|
11
|
+
'stroke-miterlimit': 'strokeMiterlimit',
|
|
12
|
+
'stroke-dasharray': 'strokeDasharray',
|
|
13
|
+
'stroke-dashoffset': 'strokeDashoffset',
|
|
14
|
+
'fill-rule': 'fillRule',
|
|
15
|
+
'fill-opacity': 'fillOpacity',
|
|
16
|
+
'stroke-opacity': 'strokeOpacity',
|
|
17
|
+
'clip-path': 'clipPath',
|
|
18
|
+
'clip-rule': 'clipRule',
|
|
19
|
+
'font-family': 'fontFamily',
|
|
20
|
+
'font-size': 'fontSize',
|
|
21
|
+
'font-weight': 'fontWeight',
|
|
22
|
+
'text-anchor': 'textAnchor',
|
|
23
|
+
'text-decoration': 'textDecoration',
|
|
24
|
+
'dominant-baseline': 'dominantBaseline',
|
|
25
|
+
'alignment-baseline': 'alignmentBaseline',
|
|
26
|
+
'stop-color': 'stopColor',
|
|
27
|
+
'stop-opacity': 'stopOpacity',
|
|
28
|
+
'xlink:href': 'xlinkHref',
|
|
29
|
+
'shape-rendering': 'shapeRendering',
|
|
30
|
+
};
|
|
31
|
+
let result = html;
|
|
32
|
+
for (const [htmlAttr, jsxAttr] of Object.entries(attributeMap)) {
|
|
33
|
+
const regex = new RegExp(`\\b${htmlAttr.replace(':', '\\:')}=`, 'g');
|
|
34
|
+
result = result.replace(regex, `${jsxAttr}=`);
|
|
35
|
+
}
|
|
36
|
+
result = result.replace(/style="([^"]*)"/g, (_match, styleString) => {
|
|
37
|
+
const styles = styleString
|
|
38
|
+
.split(';')
|
|
39
|
+
.filter((s) => s.trim())
|
|
40
|
+
.map((s) => {
|
|
41
|
+
const [key, value] = s.split(':').map((part) => part.trim());
|
|
42
|
+
const camelKey = key.replace(/-([a-z])/g, (g) => g[1].toUpperCase());
|
|
43
|
+
return `${camelKey}: "${value}"`;
|
|
44
|
+
})
|
|
45
|
+
.join(', ');
|
|
46
|
+
return `style={{ ${styles} }}`;
|
|
47
|
+
});
|
|
48
|
+
return result;
|
|
49
|
+
}
|
|
50
|
+
function removeAttributes(svg, options) {
|
|
51
|
+
let result = svg;
|
|
52
|
+
result = result.replace(/\s+xmlns="[^"]*"/g, '');
|
|
53
|
+
result = result.replace(/\s+style="[^"]*"/g, '');
|
|
54
|
+
result = result.replace(/\s+shape-rendering="[^"]*"/g, '');
|
|
55
|
+
result = result.replace(/\s+shapeRendering="[^"]*"/g, '');
|
|
56
|
+
if (options.icon || !options.dimensions) {
|
|
57
|
+
result = result.replace(/\s+width="[^"]*"/g, '');
|
|
58
|
+
result = result.replace(/\s+height="[^"]*"/g, '');
|
|
59
|
+
}
|
|
60
|
+
if (options.addFillCurrentColor) {
|
|
61
|
+
result = result.replace(/\s+fill="[^"]*"/g, '');
|
|
62
|
+
}
|
|
63
|
+
if (options.removeViewBox) {
|
|
64
|
+
result = result.replace(/\s+viewBox="[^"]*"/g, '');
|
|
65
|
+
}
|
|
66
|
+
return result;
|
|
67
|
+
}
|
|
68
|
+
function addFillAttribute(svg) {
|
|
69
|
+
return svg.replace('<svg', '<svg fill="currentColor"');
|
|
70
|
+
}
|
|
71
|
+
function formatCode(code, options) {
|
|
72
|
+
if (!options.prettier) {
|
|
73
|
+
return code;
|
|
74
|
+
}
|
|
75
|
+
const lines = code.split('\n');
|
|
76
|
+
let indentLevel = 0;
|
|
77
|
+
const indentSize = 2;
|
|
78
|
+
const formattedLines = lines.map((line) => {
|
|
79
|
+
const trimmed = line.trim();
|
|
80
|
+
if (!trimmed)
|
|
81
|
+
return '';
|
|
82
|
+
if (trimmed.startsWith('}') ||
|
|
83
|
+
trimmed.startsWith(');') ||
|
|
84
|
+
trimmed === ');' ||
|
|
85
|
+
trimmed.startsWith('};')) {
|
|
86
|
+
indentLevel = Math.max(0, indentLevel - 1);
|
|
87
|
+
}
|
|
88
|
+
if (trimmed.startsWith('</')) {
|
|
89
|
+
indentLevel = Math.max(0, indentLevel - 1);
|
|
90
|
+
}
|
|
91
|
+
const indented = ' '.repeat(indentLevel * indentSize) + trimmed;
|
|
92
|
+
if (trimmed.endsWith('{') || trimmed.includes('=> {') || trimmed.includes('((props:')) {
|
|
93
|
+
indentLevel++;
|
|
94
|
+
}
|
|
95
|
+
if (trimmed.startsWith('<') &&
|
|
96
|
+
!trimmed.startsWith('</') &&
|
|
97
|
+
!trimmed.endsWith('/>') &&
|
|
98
|
+
!trimmed.includes('</')) {
|
|
99
|
+
indentLevel++;
|
|
100
|
+
}
|
|
101
|
+
if (trimmed.includes('</') && trimmed.endsWith('>') && !trimmed.endsWith('/>')) {
|
|
102
|
+
indentLevel = Math.max(0, indentLevel - 1);
|
|
103
|
+
}
|
|
104
|
+
return indented;
|
|
105
|
+
});
|
|
106
|
+
return formattedLines.join('\n');
|
|
107
|
+
}
|
|
108
|
+
function generateComponentCode(svgJsx, options) {
|
|
109
|
+
const componentName = options.componentName || 'SvgComponent';
|
|
110
|
+
if (options.typescript) {
|
|
111
|
+
return `import {SVGProps} from "react";
|
|
112
|
+
|
|
113
|
+
const ${componentName} = ((props: SVGProps<SVGSVGElement>) => {
|
|
114
|
+
return (
|
|
115
|
+
${svgJsx}
|
|
116
|
+
)
|
|
117
|
+
})
|
|
118
|
+
|
|
119
|
+
export default ${componentName};`;
|
|
120
|
+
}
|
|
121
|
+
else {
|
|
122
|
+
return `import * as React from "react";
|
|
123
|
+
|
|
124
|
+
const ${componentName} = ((props) => {
|
|
125
|
+
return (
|
|
126
|
+
${svgJsx}
|
|
127
|
+
)
|
|
128
|
+
})
|
|
129
|
+
|
|
130
|
+
export default ${componentName};`;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
function transformSvg(svgCode, options = {}) {
|
|
134
|
+
const { icon = true, typescript = false, prettier = true, dimensions = false, componentName = 'SvgComponent', addFillCurrentColor = false, removeViewBox = false, svgo = true, } = options;
|
|
135
|
+
let processedSvg = svgCode.trim();
|
|
136
|
+
processedSvg = processedSvg.replace(/<\?xml[^?]*\?>\s*/g, '');
|
|
137
|
+
processedSvg = processedSvg.replace(/<!--[\s\S]*?-->/g, '');
|
|
138
|
+
if (svgo) {
|
|
139
|
+
processedSvg = removeAttributes(processedSvg, {
|
|
140
|
+
icon,
|
|
141
|
+
dimensions,
|
|
142
|
+
addFillCurrentColor,
|
|
143
|
+
removeViewBox,
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
if (addFillCurrentColor) {
|
|
147
|
+
processedSvg = addFillAttribute(processedSvg);
|
|
148
|
+
}
|
|
149
|
+
processedSvg = htmlToJsx(processedSvg);
|
|
150
|
+
if (!processedSvg.includes('{...props}')) {
|
|
151
|
+
processedSvg = processedSvg.replace('<svg', '<svg {...props}');
|
|
152
|
+
}
|
|
153
|
+
const svgLines = processedSvg.split('\n');
|
|
154
|
+
const indentedSvg = svgLines.map((line, index) => {
|
|
155
|
+
if (index === 0)
|
|
156
|
+
return ' ' + line.trim();
|
|
157
|
+
return ' ' + line.trim();
|
|
158
|
+
}).join('\n');
|
|
159
|
+
const componentCode = generateComponentCode(indentedSvg, {
|
|
160
|
+
typescript,
|
|
161
|
+
componentName,
|
|
162
|
+
});
|
|
163
|
+
return formatCode(componentCode, { prettier });
|
|
164
|
+
}
|
|
165
|
+
//# sourceMappingURL=svgTransformer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"svgTransformer.js","sourceRoot":"","sources":["../../../nodes/Svgr/svgTransformer.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-svgr",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "SVGR integration for n8n nodes",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"n8n-community-node-package",
|
|
9
|
+
"n8n-nodes",
|
|
10
|
+
"n8n",
|
|
11
|
+
"svgr",
|
|
12
|
+
"svg",
|
|
13
|
+
"react",
|
|
14
|
+
"component"
|
|
15
|
+
],
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "SeonHyungjo",
|
|
18
|
+
"email": "seonhyung.jo@gmail.com"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/SeonHyungjo/n8n-nodes-svgr.git"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "n8n-node build",
|
|
26
|
+
"build:watch": "tsc --watch",
|
|
27
|
+
"dev": "n8n-node dev",
|
|
28
|
+
"lint": "n8n-node lint",
|
|
29
|
+
"lint:fix": "n8n-node lint --fix",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"test:watch": "vitest",
|
|
32
|
+
"release": "n8n-node release",
|
|
33
|
+
"prepublishOnly": "n8n-node prerelease"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"n8n": {
|
|
39
|
+
"n8nNodesApiVersion": 1,
|
|
40
|
+
"strict": true,
|
|
41
|
+
"credentials": [],
|
|
42
|
+
"nodes": [
|
|
43
|
+
"dist/nodes/Svgr/Svgr.node.js"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@n8n/node-cli": "*",
|
|
48
|
+
"eslint": "9.32.0",
|
|
49
|
+
"prettier": "3.6.2",
|
|
50
|
+
"release-it": "^19.0.4",
|
|
51
|
+
"typescript": "5.9.2",
|
|
52
|
+
"vitest": "^2.1.0"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"n8n-workflow": "*"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.9.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/form-data@4.0.0/node_modules/form-data/index.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/constants.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/data-table.types.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/deferred-promise.d.ts","../node_modules/.pnpm/@n8n+errors@0.5.0/node_modules/@n8n/errors/dist/types.d.ts","../node_modules/.pnpm/@n8n+errors@0.5.0/node_modules/@n8n/errors/dist/application.error.d.ts","../node_modules/.pnpm/@n8n+errors@0.5.0/node_modules/@n8n/errors/dist/index.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/base/base.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/base/operational.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/base/unexpected.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/base/user.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/abstract/execution-base.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/expression.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/execution-cancelled.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/abstract/node.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/node-api.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/node-operation.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/workflow-configuration.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/node-ssl.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/workflow-activation.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/webhook-taken.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/workflow-deactivation.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/workflow-operation.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/subworkflow-operation.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/cli-subworkflow-operation.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/trigger-close.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/expression-extension.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/expression-destructuring.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/expression-computed-destructuring.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/expression-class-extension.error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/db-connection-timeout-error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/ensure-error.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/errors/index.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/standard-schema.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/util.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/versions.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/schemas.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/checks.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/errors.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/core.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/parse.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/regexes.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ar.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/az.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/be.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ca.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/cs.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/de.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/en.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/es.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/fa.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/fi.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/fr.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/fr-ca.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/he.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/hu.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/id.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/it.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ja.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/kh.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ko.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/mk.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ms.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/nl.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/no.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ota.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ps.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/pl.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/pt.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ru.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/sl.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/sv.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ta.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/th.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/tr.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ua.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/ur.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/vi.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/zh-cn.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/zh-tw.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/locales/index.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/registries.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/doc.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/function.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/api.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/json-schema.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/to-json-schema.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/core/index.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/v4/core/index.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/classic/errors.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/classic/parse.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/classic/schemas.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/classic/checks.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/classic/compat.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/classic/iso.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/classic/coerce.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/classic/external.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/classic/index.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v4/index.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/v4/index.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/execution-context.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/execution-status.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/result.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/run-execution-data/run-execution-data.v0.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/run-execution-data/run-execution-data.v1.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/run-execution-data/run-execution-data.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/expression.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/workflow.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/workflow-data-proxy-env-provider.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/interfaces.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/logger-proxy.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/node-helpers.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/observable-object.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/telemetry-helpers.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/common/get-child-nodes.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/common/get-connected-nodes.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/common/get-node-by-name.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/common/get-parent-nodes.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/common/map-connections-by-destination.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/common/index.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/cron.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/execution-context-establishment-hooks.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/global-state.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/run-execution-data-factory.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/message-event-bus.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/expressions/expression-helpers.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/helpers/typealiases.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/helpers/util.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/zoderror.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/locales/en.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/errors.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/helpers/parseutil.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/helpers/enumutil.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/helpers/errorutil.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/helpers/partialutil.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/standard-schema.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/types.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/external.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/v3/index.d.ts","../node_modules/.pnpm/zod@3.25.67/node_modules/zod/dist/types/index.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/from-ai-parse-utils.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/tool-helpers.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/node-reference-parser-utils.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/metadata-utils.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/workflow-checksum.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/workflow-data-proxy.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/workflow-validation.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/versioned-node-type.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/type-validation.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/schemas.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/utils.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/type-guards.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/graph/graph-utils.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/extensions/extensions.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/extensions/expression-extension.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/extensions/index.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/extensions/expression-parser.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/native-methods/index.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/node-parameters/filter-parameter.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/node-parameters/parameter-type-validation.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/node-parameters/node-parameter-value-type-guard.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/node-parameters/path-utils.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/evaluation-helpers.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/connections-diff.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/workflow-diff.d.ts","../node_modules/.pnpm/n8n-workflow@2.5.0/node_modules/n8n-workflow/dist/esm/index.d.ts","../nodes/svgr/svgtransformer.ts","../nodes/svgr/svgr.node.ts","../nodes/svgr/svgr.node.json","../package.json"],"fileIdsList":[[52],[52,53],[157],[162,163,164,165,166],[213],[54,157],[59,157],[54],[55],[71],[59],[60],[54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],[54,62,157],[62,63,157],[70],[67],[54,59,157],[64],[147],[153,155,157],[201],[201,202],[187],[49,50,51,80,148,149,150,153,154,155,156,157,158,159,160,161,167,168,169,170,171,172,173,188,189,190,191,192,193,194,195,196,197,198,199,200,203,204,205,206,207,208,209,210,212],[48,49,50,51,60,63,64,67,70,80,148,149,150,153,155,156],[148,153,157],[151,152],[151,213],[157,187],[153,155,156,157],[211,213],[154,157],[186],[176,177],[174,175,176,178,179,184],[175,176],[184],[185],[176],[174,175,176,179,180,181,182,183],[174,175,186],[136],[136,139],[128,136,137,138,139,140,141,142,143],[144],[136,137],[136,138],[82,84,85,86,87],[82,84,86,87],[82,84,86],[82,84,85,87],[82,84,87],[82,83,84,85,86,87,88,89,128,129,130,131,132,133,134],[84,87],[81,82,83,85,86,87],[84,129,133],[84,85,86,87],[145],[86],[90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127],[135],[146],[213,214]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"61da2feda6f9b1aeff66e4c179a21d088a51288b14a0e57670422a565f93598a","impliedFormat":1},{"version":"0bdc7e22b6b2a9174bd25f44bfb2abf1b3e585d276ec6586f20ecd2800295d74","impliedFormat":1},{"version":"a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","impliedFormat":1},{"version":"00f11c3ec667314eaa2adfe253b5ebebbbdbb82510e04460c2f09d1c3b521d31","impliedFormat":1},{"version":"5c7a516e25a2fd1dc5e054c6161fe3c8ba46364f3784ef98f3fca48ab685231c","impliedFormat":1},{"version":"3ff739b7f819cfc12b330f9adcc4c3abbbd5e9f9ca68f53243222a049a8361a2","impliedFormat":1},{"version":"d762b92c1af47b7b3c4eef92fe9a3806194d9edc5dae6901342fc87ef21d7f4a","impliedFormat":1},{"version":"41d14b690d8d8c2a9b7395e8c36de6ca981010736723216ab9f35eb598e09ad9","impliedFormat":1},{"version":"3fdcca6b893ffd38b61b792772f649c82ae28077c360802cec25360eabca24c0","impliedFormat":1},{"version":"299924f7545be254b02278e4dcff7038611f2325d30f0e5ae4bcac906847c164","impliedFormat":1},{"version":"be1d650f04c9f472f0ad0ead3e1b7059dd1e0ff918f7bcb707786d27c3bbeadd","impliedFormat":1},{"version":"1e16c1b1c4d8600a146b15a933f9a880cc275c01f39dc436625f22d3cca46272","impliedFormat":1},{"version":"7d5dd008a087b517daee2c66b15e5767389c08f9f8d66c434d26d4f6cb3f55c3","impliedFormat":1},{"version":"bf2aefef15e0b4d6bc8f4e19f967494b59b5f90a834de503c373df042513d924","impliedFormat":1},{"version":"4085248a1c89ee865cf9498402c90611d16920a6c9929f701ddc0b963ddad230","impliedFormat":1},{"version":"1a1acd3311ff1794be8401ee394efc3beeb1746068244eb0ee1d51d08e457401","impliedFormat":1},{"version":"ce0b4440a3dd75e14ca94b6d6b27fa26ca89e776d91b8803b3c86c4e8f06ed1a","impliedFormat":1},{"version":"37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","impliedFormat":1},{"version":"b6b1a3ff9ba1ddf1a908cfd1bcd471334ecd218a366460fc64c4561d6d0467a4","impliedFormat":1},{"version":"1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","impliedFormat":1},{"version":"32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","impliedFormat":1},{"version":"da73778888d41d0abe7d28a24529ba13ff0a9311d55e1902feee7ab97dc6a67d","impliedFormat":1},{"version":"393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","impliedFormat":1},{"version":"f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","impliedFormat":1},{"version":"0e10fd1d283b4ba7b94f5abb1bc30a2070ccb16c22f86a2780bea8ddc48f3bf7","impliedFormat":1},{"version":"0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","impliedFormat":1},{"version":"6ad6692aba2cad7697d1dbc76c973e7eca5c80aba70396233e4c4ea0e58c536d","impliedFormat":1},{"version":"c265bd0ffe35c74f210f980f49ba8f763c3338987539276a973fad1f52c4e9f2","impliedFormat":1},{"version":"4373179619287c6f48e1d2dc48f445bcb43e34bf13ab7bcc74953f06b0975404","impliedFormat":1},{"version":"79b9e661f99d6d01ad0031fbffbb20a8570ca526125a1b01ef5643c00348a8c4","impliedFormat":1},{"version":"deb85dff5a350bd77f24fb5665b7a3c95aa0d4556a0d45ab423ebf3ffcbc70ce","impliedFormat":1},{"version":"ebbada1fcc7d9caff36a85ed5476822d1425977fd9905e6bfd16a65ade0f72a6","impliedFormat":1},{"version":"309ebd217636d68cf8784cbc3272c16fb94fb8e969e18b6fe88c35200340aef1","impliedFormat":1},{"version":"6e4fde24e4d82d79eaff2daa7f5dffa79ba53de2a6b8aef76c178a5a370764bb","impliedFormat":1},{"version":"ef9b6279acc69002a779d0172916ef22e8be5de2d2469ff2f4bb019a21e89de2","impliedFormat":1},{"version":"12b8d97a20b0fb267b69c4a6be0dfad7c88851d2dcab6150aa4218f40efa45f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"0e86102dbab93227b2702cba0ba06cb638961394577dc28cd5b856f0184c3156","impliedFormat":1},{"version":"6c859096094c744d2dd7b733189293a5b2af535e15f7794e69a3b4288b70dcfc","impliedFormat":1},{"version":"915d51e1bcd9b06ab8c922360b3f74ffe70c2ab6264f759f2b3e5f4130df0149","impliedFormat":1},{"version":"716a022c6d311c8367d830d2839fe017699564de2d0f5446b4a6f3f022a5c0c6","impliedFormat":1},{"version":"c939cb12cb000b4ec9c3eca3fe7dee1fe373ccb801237631d9252bad10206d61","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"3b25e966fd93475d8ca2834194ea78321d741a21ca9d1f606b25ec99c1bbc29a","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"3b25e966fd93475d8ca2834194ea78321d741a21ca9d1f606b25ec99c1bbc29a","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"7ceb8bc679a90951354f89379bc37228e7cf87b753069cd7b62310d5cbbe1f11","impliedFormat":1},{"version":"92d777bf731e4062397081e864fbc384054934ab64af7723dfbf1df21824db31","impliedFormat":1},{"version":"ee415a173162328db8ab33496db05790b7d6b4a48272ff4a6c35cf9540ac3a60","impliedFormat":1},{"version":"80e653fbbec818eecfe95d182dc65a1d107b343d970159a71922ac4491caa0af","impliedFormat":1},{"version":"f978b1b63ad690ff2a8f16d6f784acaa0ba0f4bcfc64211d79a2704de34f5913","impliedFormat":1},{"version":"00c7c66bbd6675c5bc24b58bac2f9cbdeb9f619b295813cabf780c08034cfaba","impliedFormat":1},{"version":"9078205849121a5d37a642949d687565498da922508eacb0e5a0c3de427f0ae5","impliedFormat":1},{"version":"0ce71e5ee7c489209494c14028e351ccb1ffe455187d98a889f8e07ae2458ef7","impliedFormat":1},{"version":"f5c8f2ef9603893e25ed86c7112cd2cc60d53e5387b9146c904bce3e707c55de","impliedFormat":1},{"version":"db3ea1212b188ff23aa4f32b63e459c9b55d34b44b57bcbdf401f291352483f0","impliedFormat":99},{"version":"dc01facbb7d88bc5e2eabb7c6eee80a0241538d50a5c3b210fb745683faa1dab","impliedFormat":1},{"version":"5c5197a46686814821229b28e4cfd601ef0a32f2d2d29b9a99050bac0ab03c99","impliedFormat":1},{"version":"2f3a88381874ec5fd76116a07b4ec3ed2eb667d00cff57f4f21e58cc0e970ca8","impliedFormat":1},{"version":"2c6c3af3957e38e6a5190258a666a06893ba5a11e3501585243129afecefd037","impliedFormat":1},{"version":"13e5ea921d6f62171aab19f33a6690e3c6658eecd2e5672425e49ac30d4305e6","impliedFormat":1},{"version":"1e28020a23b28743d5bd708b9e4c7b75fdff606aa080fbaf5b8db3600d5c99cf","impliedFormat":1},{"version":"49e7f03e7e7288397725e823654fdfe61892bb5082f391057e61b9c4f1b54f16","impliedFormat":1},{"version":"7b368e9be7bfea145983add6818f4e9ad5d83e5cabc8f771211d77c0feb8db94","impliedFormat":1},{"version":"d49030b9a324bab9bcf9f663a70298391b0f5a25328409174d86617512bf3037","impliedFormat":1},{"version":"a4b634bb8c97cc700dbf165f3bb0095ec669042da72eaf28a7c5e2ddd98169ce","impliedFormat":1},{"version":"a7578eb8461c2d07440749f89aba22881d5fca09a1d1cd46974628869fbadfa1","impliedFormat":99},{"version":"59c348f04c0ae867f85d63e75a4b3b29fde55b3e483114bc96c4743c3bd326fc","impliedFormat":1},{"version":"3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","impliedFormat":1},{"version":"64c9811ebae7d6bdd3749155911ca473017944d6e9787cec3d11549b05b19de9","impliedFormat":1},{"version":"c875801a2ebbfe47d596ffc79c9ae98a0004caa3156dccd7027e0abced34369a","impliedFormat":1},{"version":"103c05a4c0773cf2ac87c535a51970dbe084218b1eee8f07bd768259b6f8d6ca","impliedFormat":1},{"version":"8ce9640581a9f826721db6e15aed360ea47f18357a10f5e23c24f36ac125ec4c","impliedFormat":1},{"version":"fcc64cf81ce0790cf7a687fe2cc08efb88a111b67534d4f57b5b055276dd3f31","impliedFormat":1},{"version":"18c4c5d4069ae6ddce9443a6057fcf333688556b0d644813a78e604812f82bb3","impliedFormat":1},{"version":"6481b29f54e19becbeb7236c60043e2daa47b45cb4fd7e88f287df09250f2405","impliedFormat":1},{"version":"8a90d040364b578a4f17f1098a3de42993484bc0b0085849334cbd3f1add0bdf","impliedFormat":1},{"version":"01658146c02cba2e49ee7beaa0b90864e7a17c3d02cc39cd8b643b5be3a1a438","impliedFormat":1},{"version":"f2258d60fa89b60637382cda49a70aa55b949a734f80fecd69b4060202784c68","impliedFormat":1},{"version":"db18ec88a0f1512b153a28a0ed1e19f34530885bca1d00e5f17a6e9b3184697f","impliedFormat":1},{"version":"65d581663663be2adeb0a5ac83f9fb077ab1e173d9ba06df33f959aaa1303491","impliedFormat":1},{"version":"36cd04c9f4116122a3545fcc6da5e522861d739718ab3a3cb7ff2268612531aa","impliedFormat":1},{"version":"9ae86dde42766df895cde73c60dc13347cc30829c6696de3cc54036b3120a5ba","impliedFormat":1},{"version":"6823cce79c10482d0860d40ebbfc29f00ddf7f99bca0aa23330599ddd8baead4","impliedFormat":1},{"version":"30ed6587fb249cc1b0585bab7ce2ca81ef193bfe2934241b6f06ffefdaaf4bf9","impliedFormat":1},{"version":"aa18fcf8ad877a9eb0c357c247708f019e25c4d906e3025d73604b66de8d7f11","impliedFormat":1},{"version":"cfc5482e113e44dae9712ae0a4e412788622221ae5eb1327fb69a13a0f5af662","impliedFormat":1},{"version":"5e620d0ed3eeb9a9a767355547123c85aea7e8f26d90e94d0cc3fa457f1c2035","impliedFormat":1},{"version":"0815e5a89c584bb0b0f2b1eddf7148e7d2a7e6fb58dfe46143a0ec3eac88460c","impliedFormat":1},{"version":"304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","impliedFormat":1},{"version":"6950710d5c94466e03d24a17dfe4ae0ceed9f1bfea492742597804acb24d5949","impliedFormat":1},{"version":"64187a5073a5c875ee0259f029f3482409657e09672f26471b52796a31b225c0","impliedFormat":1},{"version":"18c078c2b34901a328c1fc3e5a2f5bd51aa0fef06a548418198955e0af5eaf39","impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","impliedFormat":1},{"version":"c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","impliedFormat":1},{"version":"8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","impliedFormat":1},{"version":"754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","impliedFormat":1},{"version":"5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","impliedFormat":1},{"version":"3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","impliedFormat":1},{"version":"d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995","impliedFormat":1},{"version":"581b97f369056070fafbe168120a192e918e67763116dfbbb2782bbca5f32111","impliedFormat":1},{"version":"74f9797560463a8c9070dd72c04b38cc17b79759b841e2a4175a11742f2ecd11","impliedFormat":1},{"version":"ce22b96ece23ecc9bc1f2a445afefa0a487f299986a1584887e4e4217e196963","impliedFormat":1},{"version":"4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","impliedFormat":1},{"version":"c56d30cadef4528d6d568207e6ca4dd401d474843aee160e6c3a24d790ede0fd","impliedFormat":1},{"version":"94b065f9004cde283dd5989e9bd604a725c9a3c165b3e1c963a7f2fae2d07a6a","impliedFormat":1},{"version":"33650b1a5cdb1bf423ae5bace3a0447f4673bfc9e1d982bcbafa1b6d9720d747","impliedFormat":1},{"version":"e9634e0306920990ddca8f667e3cb624597ea7a4cd25d557a599c0e175419879","impliedFormat":1},{"version":"dd8f07cc3c31fc292339ffedb6617e7f88f26f94da5b156a2e58779b78cd489b","impliedFormat":1},{"version":"2d347c9473107aa9cb2120f94e39f179aa5b36a62af100f49d90b332c9209d19","impliedFormat":1},{"version":"0547856e79e3b1409568f1b064ebf3967717dd1582d4f8aa1eefc9d8f54f5a17","impliedFormat":1},{"version":"307acefb1763a37125215387c039c3ae8df99a33ddb868ed9542d9031b2cc223","impliedFormat":1},{"version":"b33057a3c7ea75948a207a5b784726118ec60f882eeb875bd64e932b4cd41041","impliedFormat":1},{"version":"e3059fe953b72c20fec9f74878dd7879b661d81657875907336c41e3b817c84b","impliedFormat":1},{"version":"9e2e0b4711f1efef5c3c488616334ba2e5b911648a8784fd77fc8beb1e5047c9","impliedFormat":1},{"version":"315b8bc4d809525b2f6635eb0237af1fe03501cc57bb0b722c672d0634bb8bb1","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"28f1497962f8853339b46d766384abe7a907900998f551cf43cd793cdcb98e3d","impliedFormat":1},{"version":"e4cce0b510957aab4b12a0dc21a3b4857b8f8a85bbded2b8b81f836ca3c83dbc","impliedFormat":1},{"version":"79a0953f85a27dcaab70dd0e3791a3564631dfd5d85c637513027747c6844357","impliedFormat":1},{"version":"2dcf72ec20aa5e3cf9911c4d5ada9393bb8d18f00d3dbdbe07ce618b4e90ab3f","impliedFormat":1},{"version":"678c7436b7aa03dad934a96850ea395c018637013aa0b52a65898f502b4d6e2a","impliedFormat":1},{"version":"1c18a09d1deaf0e9906100ab54592f256f87fc94c67cce61bfc1c2ea44ac3d13","impliedFormat":1},{"version":"481559421f5cd5562e4713c251e77dee07f5145c5f1d710afc445e733236802b","impliedFormat":1},{"version":"d6aa62d3b57e1ec7e417e0ad32437da11ec08d542224fddd32286a445fb69459","impliedFormat":1},{"version":"a0602a69811bc28bcf21596d8f2342996d4ae58e92e59f5ec481c97d57f8a4b1","impliedFormat":1},{"version":"467affa8d141746705e2b705c7c32af1ee6526514f09b7690989e5eb93913edd","signature":"36f7bccf7291d6fcf503ef56bbdf0bf8c668c68915454552eb1b50fdc8bc6634"},{"version":"e19c3cf09517dcdfdd6117ea1fc8f32b38b49738c44ec1162fc7061d34db5fd4","signature":"f25db2a41da11c7cb4ec2ea036fc01c2c4861a08e1bf6cad9e13600f7b265473"},"694423c745db72d182a314b3345682035e09200741d4a18ce696aa1b95e27063",{"version":"d142c3c0647ed6fc2935fd038441341322b37cd69ca5646c30020466ea683b09","signature":"2045f9eed6771569e5a5ae2d6b0f031b31ce9d028e9a04307725a6958746938b"}],"root":[[214,217]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[53,1],[54,2],[162,3],[163,3],[164,3],[165,3],[167,4],[166,3],[211,5],[168,3],[59,6],[62,7],[55,8],[56,9],[57,9],[58,9],[72,10],[78,8],[61,11],[77,12],[76,12],[75,12],[74,12],[60,11],[80,13],[63,14],[64,15],[66,11],[71,16],[73,6],[68,17],[67,18],[65,19],[69,17],[70,7],[169,20],[148,20],[154,21],[202,22],[203,23],[188,24],[200,3],[213,25],[157,26],[158,3],[172,3],[191,5],[205,22],[159,21],[206,6],[208,3],[207,3],[190,3],[160,3],[171,27],[153,28],[151,5],[152,29],[197,30],[161,3],[189,3],[199,3],[196,3],[198,3],[195,3],[192,3],[193,31],[212,32],[194,3],[155,33],[187,34],[178,35],[185,36],[179,37],[182,38],[186,39],[177,40],[184,41],[176,42],[140,43],[143,44],[141,44],[137,43],[144,45],[145,46],[142,44],[138,47],[139,48],[132,49],[85,50],[87,51],[86,52],[131,53],[135,54],[88,50],[129,55],[84,56],[134,57],[82,58],[146,59],[90,60],[91,60],[92,60],[93,60],[94,60],[95,60],[96,60],[97,60],[98,60],[99,60],[101,60],[100,60],[102,60],[103,60],[104,60],[128,61],[105,60],[106,60],[107,60],[108,60],[109,60],[110,60],[111,60],[112,60],[113,60],[115,60],[114,60],[116,60],[117,60],[118,60],[119,60],[120,60],[121,60],[122,60],[123,60],[124,60],[125,60],[126,60],[127,60],[136,62],[147,63],[215,64]],"version":"5.9.2"}
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-svgr",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "SVGR integration for n8n nodes",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"n8n-community-node-package",
|
|
9
|
+
"n8n-nodes",
|
|
10
|
+
"n8n",
|
|
11
|
+
"svgr",
|
|
12
|
+
"svg",
|
|
13
|
+
"react",
|
|
14
|
+
"component"
|
|
15
|
+
],
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "SeonHyungjo",
|
|
18
|
+
"email": "seonhyung.jo@gmail.com"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/SeonHyungjo/n8n-nodes-svgr.git"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "n8n-node build",
|
|
26
|
+
"build:watch": "tsc --watch",
|
|
27
|
+
"dev": "n8n-node dev",
|
|
28
|
+
"lint": "n8n-node lint",
|
|
29
|
+
"lint:fix": "n8n-node lint --fix",
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"test:watch": "vitest",
|
|
32
|
+
"release": "n8n-node release",
|
|
33
|
+
"prepublishOnly": "n8n-node prerelease"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"n8n": {
|
|
39
|
+
"n8nNodesApiVersion": 1,
|
|
40
|
+
"strict": true,
|
|
41
|
+
"credentials": [],
|
|
42
|
+
"nodes": [
|
|
43
|
+
"dist/nodes/Svgr/Svgr.node.js"
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@n8n/node-cli": "*",
|
|
48
|
+
"eslint": "9.32.0",
|
|
49
|
+
"prettier": "3.6.2",
|
|
50
|
+
"release-it": "^19.0.4",
|
|
51
|
+
"typescript": "5.9.2",
|
|
52
|
+
"vitest": "^2.1.0"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"n8n-workflow": "*"
|
|
56
|
+
}
|
|
57
|
+
}
|