n8n-nodes-dvelop 1.0.3
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 +21 -0
- package/README.md +791 -0
- package/dist/credentials/DvelopApi.credentials.d.ts +10 -0
- package/dist/credentials/DvelopApi.credentials.js +61 -0
- package/dist/credentials/DvelopApi.credentials.js.map +1 -0
- package/dist/icons/dvelop_dark.svg +1 -0
- package/dist/icons/dvelop_light.svg +1 -0
- package/dist/nodes/dvelop/DvelopActions.node.d.ts +10 -0
- package/dist/nodes/dvelop/DvelopActions.node.js +359 -0
- package/dist/nodes/dvelop/DvelopActions.node.js.map +1 -0
- package/dist/nodes/dvelop/DvelopPlatform.node.json +18 -0
- package/dist/package.json +494 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/licence.json +4041 -0
- package/package.json +494 -0
package/package.json
ADDED
|
@@ -0,0 +1,494 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-dvelop",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "This package contains n8n nodes to work with the d.velop platform.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"n8n-community-node-dvelop-package"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://d-velop.de",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/d-velop/n8n-nodes-dvelop"
|
|
13
|
+
},
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "d.velop AG",
|
|
17
|
+
"email": "n8n@d-velop.de"
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"type": "commonjs",
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "n8n-node build",
|
|
28
|
+
"build:watch": "tsc --watch",
|
|
29
|
+
"dev": "n8n-node dev",
|
|
30
|
+
"lint": "n8n-node lint",
|
|
31
|
+
"lint:fix": "n8n-node lint --fix",
|
|
32
|
+
"release": "n8n-node release",
|
|
33
|
+
"prepublishOnly": "n8n-node prerelease"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"abort-controller": "^3.0.0",
|
|
37
|
+
"acorn": "^8.16.0",
|
|
38
|
+
"acorn-jsx": "^5.3.2",
|
|
39
|
+
"agent-base": "^7.1.4",
|
|
40
|
+
"agentkeepalive": "^4.6.0",
|
|
41
|
+
"ajv": "^6.14.0",
|
|
42
|
+
"ansi-escapes": "^4.3.2",
|
|
43
|
+
"ansi-regex": "^6.2.2",
|
|
44
|
+
"ansi-styles": "^5.2.0",
|
|
45
|
+
"ansis": "^3.17.0",
|
|
46
|
+
"argparse": "^2.0.1",
|
|
47
|
+
"array-union": "^2.1.0",
|
|
48
|
+
"assert": "^2.1.0",
|
|
49
|
+
"ast-types": "^0.16.1",
|
|
50
|
+
"async": "^3.2.6",
|
|
51
|
+
"async-retry": "^1.3.3",
|
|
52
|
+
"asynckit": "^0.4.0",
|
|
53
|
+
"available-typed-arrays": "^1.0.7",
|
|
54
|
+
"axios": "^1.13.6",
|
|
55
|
+
"balanced-match": "^4.0.4",
|
|
56
|
+
"base64-js": "^1.5.1",
|
|
57
|
+
"basic-ftp": "^5.2.0",
|
|
58
|
+
"before-after-hook": "^4.0.0",
|
|
59
|
+
"binary-extensions": "^2.3.0",
|
|
60
|
+
"bl": "^4.1.0",
|
|
61
|
+
"brace-expansion": "^5.0.4",
|
|
62
|
+
"braces": "^3.0.3",
|
|
63
|
+
"buffer": "^6.0.3",
|
|
64
|
+
"buffer-equal-constant-time": "^1.0.1",
|
|
65
|
+
"bundle-name": "^4.1.0",
|
|
66
|
+
"c12": "^3.3.3",
|
|
67
|
+
"call-bind": "^1.0.8",
|
|
68
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
69
|
+
"call-bound": "^1.0.4",
|
|
70
|
+
"callsites": "^3.1.0",
|
|
71
|
+
"camel-case": "^4.1.2",
|
|
72
|
+
"camelcase": "^6.3.0",
|
|
73
|
+
"chalk": "^4.1.2",
|
|
74
|
+
"change-case": "^5.4.4",
|
|
75
|
+
"chardet": "^2.1.1",
|
|
76
|
+
"charenc": "^0.0.2",
|
|
77
|
+
"chokidar": "^5.0.0",
|
|
78
|
+
"chownr": "^1.1.4",
|
|
79
|
+
"ci-info": "^4.4.0",
|
|
80
|
+
"citty": "^0.1.6",
|
|
81
|
+
"clean-stack": "^3.0.1",
|
|
82
|
+
"cli-cursor": "^5.0.0",
|
|
83
|
+
"cli-spinners": "^2.9.2",
|
|
84
|
+
"cli-width": "^4.1.0",
|
|
85
|
+
"cliui": "^8.0.1",
|
|
86
|
+
"code-block-writer": "^13.0.3",
|
|
87
|
+
"color-convert": "^2.0.1",
|
|
88
|
+
"color-name": "^1.1.4",
|
|
89
|
+
"combined-stream": "^1.0.8",
|
|
90
|
+
"comment-parser": "^1.4.5",
|
|
91
|
+
"concat-map": "^0.0.1",
|
|
92
|
+
"confbox": "^0.2.4",
|
|
93
|
+
"consola": "^3.4.2",
|
|
94
|
+
"console-table-printer": "^2.15.0",
|
|
95
|
+
"cross-spawn": "^7.0.6",
|
|
96
|
+
"crypt": "^0.0.2",
|
|
97
|
+
"data-uri-to-buffer": "^6.0.2",
|
|
98
|
+
"debug": "^4.4.3",
|
|
99
|
+
"decamelize": "^1.2.0",
|
|
100
|
+
"decompress-response": "^6.0.0",
|
|
101
|
+
"deep-extend": "^0.6.0",
|
|
102
|
+
"deep-is": "^0.1.4",
|
|
103
|
+
"deepmerge": "^4.3.1",
|
|
104
|
+
"default-browser": "^5.5.0",
|
|
105
|
+
"default-browser-id": "^5.0.1",
|
|
106
|
+
"define-data-property": "^1.1.4",
|
|
107
|
+
"define-lazy-prop": "^3.0.0",
|
|
108
|
+
"define-properties": "^1.2.1",
|
|
109
|
+
"defu": "^6.1.4",
|
|
110
|
+
"degenerator": "^5.0.1",
|
|
111
|
+
"delayed-stream": "^1.0.0",
|
|
112
|
+
"destr": "^2.0.5",
|
|
113
|
+
"detect-libc": "^2.1.2",
|
|
114
|
+
"dir-glob": "^3.0.1",
|
|
115
|
+
"doctrine": "^3.0.0",
|
|
116
|
+
"dotenv": "^16.6.1",
|
|
117
|
+
"dunder-proto": "^1.0.1",
|
|
118
|
+
"ecdsa-sig-formatter": "^1.0.11",
|
|
119
|
+
"ejs": "^3.1.10",
|
|
120
|
+
"emoji-regex": "^8.0.0",
|
|
121
|
+
"end-of-stream": "^1.4.5",
|
|
122
|
+
"es-define-property": "^1.0.1",
|
|
123
|
+
"es-errors": "^1.3.0",
|
|
124
|
+
"es-object-atoms": "^1.1.1",
|
|
125
|
+
"es-set-tostringtag": "^2.1.0",
|
|
126
|
+
"escalade": "^3.2.0",
|
|
127
|
+
"escape-string-regexp": "^4.0.0",
|
|
128
|
+
"escodegen": "^2.1.0",
|
|
129
|
+
"eslint-config-riot": "^1.0.0",
|
|
130
|
+
"eslint-import-context": "^0.1.9",
|
|
131
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
132
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
133
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.5",
|
|
134
|
+
"eslint-scope": "^8.4.0",
|
|
135
|
+
"eslint-visitor-keys": "^3.4.3",
|
|
136
|
+
"espree": "^10.4.0",
|
|
137
|
+
"esprima": "^4.0.1",
|
|
138
|
+
"esprima-next": "^5.8.4",
|
|
139
|
+
"esquery": "^1.7.0",
|
|
140
|
+
"esrecurse": "^4.3.0",
|
|
141
|
+
"estraverse": "^5.3.0",
|
|
142
|
+
"esutils": "^2.0.3",
|
|
143
|
+
"eta": "^4.5.0",
|
|
144
|
+
"event-target-shim": "^5.0.1",
|
|
145
|
+
"eventemitter3": "^4.0.7",
|
|
146
|
+
"events": "^3.3.0",
|
|
147
|
+
"execa": "^8.0.1",
|
|
148
|
+
"expand-template": "^2.0.3",
|
|
149
|
+
"exsolve": "^1.0.8",
|
|
150
|
+
"extend": "^3.0.2",
|
|
151
|
+
"fast-content-type-parse": "^3.0.0",
|
|
152
|
+
"fast-deep-equal": "^3.1.3",
|
|
153
|
+
"fast-glob": "^3.2.12",
|
|
154
|
+
"fast-json-stable-stringify": "^2.1.0",
|
|
155
|
+
"fast-levenshtein": "^2.0.6",
|
|
156
|
+
"fastest-levenshtein": "^1.0.16",
|
|
157
|
+
"fastq": "^1.20.1",
|
|
158
|
+
"file-entry-cache": "^8.0.0",
|
|
159
|
+
"file-type": "^16.5.4",
|
|
160
|
+
"filelist": "^1.0.6",
|
|
161
|
+
"fill-range": "^7.1.1",
|
|
162
|
+
"find-up": "^5.0.0",
|
|
163
|
+
"flat": "^5.0.2",
|
|
164
|
+
"flat-cache": "^4.0.1",
|
|
165
|
+
"flatted": "^3.4.1",
|
|
166
|
+
"follow-redirects": "^1.15.11",
|
|
167
|
+
"for-each": "^0.3.5",
|
|
168
|
+
"foreground-child": "^3.3.1",
|
|
169
|
+
"form-data": "^4.0.5",
|
|
170
|
+
"form-data-encoder": "^1.7.2",
|
|
171
|
+
"formdata-node": "^4.4.1",
|
|
172
|
+
"fs-constants": "^1.0.0",
|
|
173
|
+
"fs.realpath": "^1.0.0",
|
|
174
|
+
"function-bind": "^1.1.2",
|
|
175
|
+
"generator-function": "^2.0.1",
|
|
176
|
+
"get-caller-file": "^2.0.5",
|
|
177
|
+
"get-east-asian-width": "^1.5.0",
|
|
178
|
+
"get-intrinsic": "^1.3.0",
|
|
179
|
+
"get-package-type": "^0.1.0",
|
|
180
|
+
"get-proto": "^1.0.1",
|
|
181
|
+
"get-stream": "^8.0.1",
|
|
182
|
+
"get-tsconfig": "^4.13.6",
|
|
183
|
+
"get-uri": "^6.0.5",
|
|
184
|
+
"giget": "^2.0.0",
|
|
185
|
+
"git-up": "^8.1.1",
|
|
186
|
+
"git-url-parse": "^16.1.0",
|
|
187
|
+
"github-from-package": "^0.0.0",
|
|
188
|
+
"glob": "^11.1.0",
|
|
189
|
+
"glob-parent": "^6.0.2",
|
|
190
|
+
"globals": "^14.0.0",
|
|
191
|
+
"globby": "^11.1.0",
|
|
192
|
+
"gopd": "^1.2.0",
|
|
193
|
+
"graphemer": "^1.4.0",
|
|
194
|
+
"handlebars": "^4.7.8",
|
|
195
|
+
"has-flag": "^4.0.0",
|
|
196
|
+
"has-property-descriptors": "^1.0.2",
|
|
197
|
+
"has-symbols": "^1.1.0",
|
|
198
|
+
"has-tostringtag": "^1.0.2",
|
|
199
|
+
"hasown": "^2.0.2",
|
|
200
|
+
"http-proxy-agent": "^7.0.2",
|
|
201
|
+
"https-proxy-agent": "^7.0.6",
|
|
202
|
+
"human-signals": "^5.0.0",
|
|
203
|
+
"humanize-ms": "^1.2.1",
|
|
204
|
+
"ibm-cloud-sdk-core": "^5.4.8",
|
|
205
|
+
"iconv-lite": "^0.7.2",
|
|
206
|
+
"ieee754": "^1.2.1",
|
|
207
|
+
"ignore": "^5.3.2",
|
|
208
|
+
"import-fresh": "^3.3.1",
|
|
209
|
+
"imurmurhash": "^0.1.4",
|
|
210
|
+
"indefinite": "^2.5.2",
|
|
211
|
+
"indent-string": "^4.0.0",
|
|
212
|
+
"inflight": "^1.0.6",
|
|
213
|
+
"inherits": "^2.0.4",
|
|
214
|
+
"ini": "^1.3.8",
|
|
215
|
+
"inquirer": "^12.11.1",
|
|
216
|
+
"ip-address": "^10.1.0",
|
|
217
|
+
"is-arguments": "^1.2.0",
|
|
218
|
+
"is-buffer": "^1.1.6",
|
|
219
|
+
"is-bun-module": "^2.0.0",
|
|
220
|
+
"is-callable": "^1.2.7",
|
|
221
|
+
"is-docker": "^2.2.1",
|
|
222
|
+
"is-extglob": "^2.1.1",
|
|
223
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
224
|
+
"is-generator-function": "^1.1.2",
|
|
225
|
+
"is-glob": "^4.0.3",
|
|
226
|
+
"is-inside-container": "^1.0.0",
|
|
227
|
+
"is-interactive": "^2.0.0",
|
|
228
|
+
"is-nan": "^1.3.2",
|
|
229
|
+
"is-network-error": "^1.3.1",
|
|
230
|
+
"is-number": "^7.0.0",
|
|
231
|
+
"is-path-inside": "^3.0.3",
|
|
232
|
+
"is-regex": "^1.2.1",
|
|
233
|
+
"is-ssh": "^1.4.1",
|
|
234
|
+
"is-stream": "^3.0.0",
|
|
235
|
+
"is-typed-array": "^1.1.15",
|
|
236
|
+
"is-unicode-supported": "^2.1.0",
|
|
237
|
+
"is-wsl": "^2.2.0",
|
|
238
|
+
"isexe": "^2.0.0",
|
|
239
|
+
"isolated-vm": "^6.0.2",
|
|
240
|
+
"isstream": "^0.1.2",
|
|
241
|
+
"issue-parser": "^7.0.1",
|
|
242
|
+
"jackspeak": "^4.2.3",
|
|
243
|
+
"jake": "^10.9.4",
|
|
244
|
+
"jiti": "^2.6.1",
|
|
245
|
+
"jmespath": "^0.16.0",
|
|
246
|
+
"js-base64": "^3.7.2",
|
|
247
|
+
"js-tiktoken": "^1.0.12",
|
|
248
|
+
"js-yaml": "^4.1.1",
|
|
249
|
+
"json-buffer": "^3.0.1",
|
|
250
|
+
"json-schema-traverse": "^0.4.1",
|
|
251
|
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
252
|
+
"json-with-bigint": "^3.5.7",
|
|
253
|
+
"jsonpointer": "^5.0.1",
|
|
254
|
+
"jsonrepair": "^3.13.2",
|
|
255
|
+
"jsonwebtoken": "^9.0.3",
|
|
256
|
+
"jssha": "^3.3.1",
|
|
257
|
+
"jwa": "^2.0.1",
|
|
258
|
+
"jws": "^4.0.1",
|
|
259
|
+
"keyv": "^4.5.4",
|
|
260
|
+
"kleur": "^3.0.3",
|
|
261
|
+
"langsmith": "^0.3.87",
|
|
262
|
+
"levn": "^0.4.1",
|
|
263
|
+
"lilconfig": "^3.1.3",
|
|
264
|
+
"locate-path": "^6.0.0",
|
|
265
|
+
"lodash": "^4.17.23",
|
|
266
|
+
"lodash.capitalize": "^4.2.1",
|
|
267
|
+
"lodash.escaperegexp": "^4.1.2",
|
|
268
|
+
"lodash.includes": "^4.3.0",
|
|
269
|
+
"lodash.isboolean": "^3.0.3",
|
|
270
|
+
"lodash.isinteger": "^4.0.4",
|
|
271
|
+
"lodash.isnumber": "^3.0.3",
|
|
272
|
+
"lodash.isplainobject": "^4.0.6",
|
|
273
|
+
"lodash.isstring": "^4.0.1",
|
|
274
|
+
"lodash.merge": "^4.6.2",
|
|
275
|
+
"lodash.once": "^4.1.1",
|
|
276
|
+
"lodash.uniqby": "^4.7.0",
|
|
277
|
+
"log-symbols": "^7.0.1",
|
|
278
|
+
"lower-case": "^2.0.2",
|
|
279
|
+
"lru-cache": "^7.18.3",
|
|
280
|
+
"luxon": "^3.7.2",
|
|
281
|
+
"macos-release": "^3.4.0",
|
|
282
|
+
"math-expression-evaluator": "^2.0.7",
|
|
283
|
+
"math-intrinsics": "^1.1.0",
|
|
284
|
+
"md5": "^2.3.0",
|
|
285
|
+
"merge-stream": "^2.0.0",
|
|
286
|
+
"merge2": "^1.4.1",
|
|
287
|
+
"micromatch": "^4.0.8",
|
|
288
|
+
"mime-db": "^1.52.0",
|
|
289
|
+
"mime-types": "^2.1.35",
|
|
290
|
+
"mimic-fn": "^4.0.0",
|
|
291
|
+
"mimic-function": "^5.0.1",
|
|
292
|
+
"mimic-response": "^3.1.0",
|
|
293
|
+
"minimatch": "^10.2.4",
|
|
294
|
+
"minimist": "^1.2.8",
|
|
295
|
+
"minipass": "^7.1.3",
|
|
296
|
+
"mkdirp-classic": "^0.5.3",
|
|
297
|
+
"ms": "^2.1.3",
|
|
298
|
+
"mustache": "^4.2.0",
|
|
299
|
+
"mute-stream": "^2.0.0",
|
|
300
|
+
"n8n-workflow": "^2.12.0",
|
|
301
|
+
"napi-build-utils": "^2.0.0",
|
|
302
|
+
"napi-postinstall": "^0.3.4",
|
|
303
|
+
"natural-compare": "^1.4.0",
|
|
304
|
+
"neo-async": "^2.6.2",
|
|
305
|
+
"netmask": "^2.0.2",
|
|
306
|
+
"new-github-release-url": "^2.0.0",
|
|
307
|
+
"no-case": "^3.0.4",
|
|
308
|
+
"node-abi": "^3.87.0",
|
|
309
|
+
"node-domexception": "^1.0.0",
|
|
310
|
+
"node-fetch": "^2.7.0",
|
|
311
|
+
"node-fetch-native": "^1.6.7",
|
|
312
|
+
"npm-run-path": "^5.3.0",
|
|
313
|
+
"nypm": "^0.6.5",
|
|
314
|
+
"object-is": "^1.1.6",
|
|
315
|
+
"object-keys": "^1.1.1",
|
|
316
|
+
"object.assign": "^4.1.7",
|
|
317
|
+
"ohash": "^2.0.11",
|
|
318
|
+
"once": "^1.4.0",
|
|
319
|
+
"onetime": "^7.0.0",
|
|
320
|
+
"open": "^10.2.0",
|
|
321
|
+
"openai": "^4.104.0",
|
|
322
|
+
"openapi-types": "^12.1.3",
|
|
323
|
+
"optionator": "^0.9.4",
|
|
324
|
+
"ora": "^9.0.0",
|
|
325
|
+
"os-name": "^6.1.0",
|
|
326
|
+
"p-finally": "^1.0.0",
|
|
327
|
+
"p-limit": "^3.1.0",
|
|
328
|
+
"p-locate": "^5.0.0",
|
|
329
|
+
"p-queue": "^6.6.2",
|
|
330
|
+
"p-retry": "^7.1.1",
|
|
331
|
+
"p-timeout": "^3.2.0",
|
|
332
|
+
"pac-proxy-agent": "^7.2.0",
|
|
333
|
+
"pac-resolver": "^7.0.1",
|
|
334
|
+
"package-json-from-dist": "^1.0.1",
|
|
335
|
+
"parent-module": "^1.0.1",
|
|
336
|
+
"parse-path": "^7.1.0",
|
|
337
|
+
"parse-url": "^9.2.0",
|
|
338
|
+
"pascal-case": "^3.1.2",
|
|
339
|
+
"path-browserify": "^1.0.1",
|
|
340
|
+
"path-exists": "^4.0.0",
|
|
341
|
+
"path-is-absolute": "^1.0.1",
|
|
342
|
+
"path-key": "^3.1.1",
|
|
343
|
+
"path-scurry": "^2.0.2",
|
|
344
|
+
"path-type": "^4.0.0",
|
|
345
|
+
"pathe": "^2.0.3",
|
|
346
|
+
"peek-readable": "^4.1.0",
|
|
347
|
+
"perfect-debounce": "^2.1.0",
|
|
348
|
+
"picocolors": "^1.0.1",
|
|
349
|
+
"picomatch": "^2.3.1",
|
|
350
|
+
"pkg-types": "^2.3.0",
|
|
351
|
+
"playwright": "^1.58.2",
|
|
352
|
+
"playwright-core": "^1.58.2",
|
|
353
|
+
"pluralize": "^8.0.0",
|
|
354
|
+
"possible-typed-array-names": "^1.1.0",
|
|
355
|
+
"prebuild-install": "^7.1.3",
|
|
356
|
+
"prelude-ls": "^1.2.1",
|
|
357
|
+
"process": "^0.11.10",
|
|
358
|
+
"prompts": "^2.4.2",
|
|
359
|
+
"protocols": "^2.0.2",
|
|
360
|
+
"proxy-agent": "^6.5.0",
|
|
361
|
+
"proxy-from-env": "^1.1.0",
|
|
362
|
+
"psl": "^1.15.0",
|
|
363
|
+
"pump": "^3.0.4",
|
|
364
|
+
"punycode": "^2.3.1",
|
|
365
|
+
"querystringify": "^2.2.0",
|
|
366
|
+
"queue-microtask": "^1.2.3",
|
|
367
|
+
"rc": "^1.2.8",
|
|
368
|
+
"rc9": "^2.1.2",
|
|
369
|
+
"readable-stream": "^4.7.0",
|
|
370
|
+
"readable-web-to-node-stream": "^3.0.4",
|
|
371
|
+
"readdirp": "^5.0.0",
|
|
372
|
+
"recast": "^0.22.0",
|
|
373
|
+
"reflect-metadata": "^0.2.2",
|
|
374
|
+
"require-directory": "^2.1.1",
|
|
375
|
+
"requires-port": "^1.0.0",
|
|
376
|
+
"resolve-from": "^4.0.0",
|
|
377
|
+
"resolve-pkg-maps": "^1.0.0",
|
|
378
|
+
"restore-cursor": "^5.1.0",
|
|
379
|
+
"retry": "^0.13.1",
|
|
380
|
+
"retry-axios": "^2.6.0",
|
|
381
|
+
"reusify": "^1.1.0",
|
|
382
|
+
"rimraf": "^6.0.1",
|
|
383
|
+
"run-applescript": "^7.1.0",
|
|
384
|
+
"run-async": "^4.0.6",
|
|
385
|
+
"run-parallel": "^1.2.0",
|
|
386
|
+
"rxjs": "^7.8.2",
|
|
387
|
+
"safe-buffer": "^5.2.1",
|
|
388
|
+
"safe-regex-test": "^1.1.0",
|
|
389
|
+
"safer-buffer": "^2.1.2",
|
|
390
|
+
"sax": "^1.5.0",
|
|
391
|
+
"semver": "^7.7.4",
|
|
392
|
+
"sentence-case": "^3.0.4",
|
|
393
|
+
"set-function-length": "^1.2.2",
|
|
394
|
+
"shebang-command": "^2.0.0",
|
|
395
|
+
"shebang-regex": "^3.0.0",
|
|
396
|
+
"signal-exit": "^4.1.0",
|
|
397
|
+
"simple-concat": "^1.0.1",
|
|
398
|
+
"simple-get": "^4.0.1",
|
|
399
|
+
"simple-wcswidth": "^1.1.2",
|
|
400
|
+
"sisteransi": "^1.0.5",
|
|
401
|
+
"slash": "^3.0.0",
|
|
402
|
+
"smart-buffer": "^4.2.0",
|
|
403
|
+
"socks": "^2.8.7",
|
|
404
|
+
"socks-proxy-agent": "^8.0.5",
|
|
405
|
+
"source-map": "^0.6.1",
|
|
406
|
+
"stable-hash-x": "^0.2.0",
|
|
407
|
+
"stdin-discarder": "^0.2.2",
|
|
408
|
+
"string-width": "^4.2.3",
|
|
409
|
+
"string_decoder": "^1.3.0",
|
|
410
|
+
"strip-ansi": "^7.2.0",
|
|
411
|
+
"strip-final-newline": "^3.0.0",
|
|
412
|
+
"strip-json-comments": "^3.1.1",
|
|
413
|
+
"strtok3": "^6.3.0",
|
|
414
|
+
"supports-color": "^8.1.1",
|
|
415
|
+
"tar-fs": "^2.1.4",
|
|
416
|
+
"tar-stream": "^2.2.0",
|
|
417
|
+
"text-table": "^0.2.0",
|
|
418
|
+
"tinyexec": "^1.0.2",
|
|
419
|
+
"tinyglobby": "^0.2.15",
|
|
420
|
+
"title-case": "^3.0.3",
|
|
421
|
+
"tmp": "^0.2.5",
|
|
422
|
+
"tmp-promise": "^3.0.3",
|
|
423
|
+
"to-regex-range": "^5.0.1",
|
|
424
|
+
"token-types": "^4.2.1",
|
|
425
|
+
"tough-cookie": "^4.1.4",
|
|
426
|
+
"tr46": "^0.0.3",
|
|
427
|
+
"transliteration": "^2.3.5",
|
|
428
|
+
"ts-api-utils": "^2.4.0",
|
|
429
|
+
"ts-morph": "^27.0.2",
|
|
430
|
+
"tslib": "^2.8.1",
|
|
431
|
+
"tunnel-agent": "^0.6.0",
|
|
432
|
+
"type-check": "^0.4.0",
|
|
433
|
+
"type-fest": "^0.21.3",
|
|
434
|
+
"typescript-eslint": "^8.57.0",
|
|
435
|
+
"uglify-js": "^3.19.3",
|
|
436
|
+
"undici": "^6.23.0",
|
|
437
|
+
"undici-types": "^5.26.5",
|
|
438
|
+
"universal-user-agent": "^7.0.3",
|
|
439
|
+
"universalify": "^0.2.0",
|
|
440
|
+
"unrs-resolver": "^1.11.1",
|
|
441
|
+
"upper-case-first": "^2.0.2",
|
|
442
|
+
"uri-js": "^4.4.1",
|
|
443
|
+
"url-join": "^5.0.0",
|
|
444
|
+
"url-parse": "^1.5.10",
|
|
445
|
+
"util": "^0.12.5",
|
|
446
|
+
"util-deprecate": "^1.0.2",
|
|
447
|
+
"uuid": "^10.0.0",
|
|
448
|
+
"web-streams-polyfill": "^4.0.0-beta.3",
|
|
449
|
+
"webidl-conversions": "^3.0.1",
|
|
450
|
+
"whatwg-url": "^5.0.0",
|
|
451
|
+
"which": "^2.0.2",
|
|
452
|
+
"which-typed-array": "^1.1.20",
|
|
453
|
+
"widest-line": "^3.1.0",
|
|
454
|
+
"wildcard-match": "^5.1.4",
|
|
455
|
+
"windows-release": "^6.1.0",
|
|
456
|
+
"word-wrap": "^1.2.5",
|
|
457
|
+
"wordwrap": "^1.0.0",
|
|
458
|
+
"wrap-ansi": "^7.0.0",
|
|
459
|
+
"wrappy": "^1.0.2",
|
|
460
|
+
"ws": "^8.19.0",
|
|
461
|
+
"wsl-utils": "^0.1.0",
|
|
462
|
+
"xml2js": "^0.6.2",
|
|
463
|
+
"xmlbuilder": "^11.0.1",
|
|
464
|
+
"y18n": "^5.0.8",
|
|
465
|
+
"yaml": "^2.8.2",
|
|
466
|
+
"yargs": "^17.7.2",
|
|
467
|
+
"yargs-parser": "^21.1.1",
|
|
468
|
+
"yocto-queue": "^0.1.0",
|
|
469
|
+
"yoctocolors": "^2.1.2",
|
|
470
|
+
"yoctocolors-cjs": "^2.1.3",
|
|
471
|
+
"zod": "^3.25.67",
|
|
472
|
+
"zod-to-json-schema": "^3.23.3"
|
|
473
|
+
},
|
|
474
|
+
"devDependencies": {
|
|
475
|
+
"@n8n/node-cli": "*",
|
|
476
|
+
"eslint": "9.32.0",
|
|
477
|
+
"prettier": "3.6.2",
|
|
478
|
+
"release-it": "^19.0.4",
|
|
479
|
+
"typescript": "5.9.2"
|
|
480
|
+
},
|
|
481
|
+
"peerDependencies": {
|
|
482
|
+
"n8n-workflow": "*"
|
|
483
|
+
},
|
|
484
|
+
"n8n": {
|
|
485
|
+
"n8nNodesApiVersion": 1,
|
|
486
|
+
"strict": true,
|
|
487
|
+
"credentials": [
|
|
488
|
+
"dist/credentials/DvelopApi.credentials.js"
|
|
489
|
+
],
|
|
490
|
+
"nodes": [
|
|
491
|
+
"dist/nodes/dvelop/DvelopActions.node.js"
|
|
492
|
+
]
|
|
493
|
+
}
|
|
494
|
+
}
|