n8n-nodes-mysticapi 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Latimer Woods Tech
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # n8n-nodes-mysticapi
2
+
3
+ An [n8n](https://n8n.io) community node for **[MysticAPI](https://mysticapi.com)** — deterministic, Human Design–compatible **bodygraphs**, **personal sky charts**, and **ephemeris**. Same input always returns the same output (no generative output).
4
+
5
+ [n8n](https://n8n.io) is a fair-code workflow automation platform.
6
+
7
+ ## Installation
8
+
9
+ In n8n: **Settings → Community Nodes → Install**, and enter:
10
+
11
+ ```
12
+ n8n-nodes-mysticapi
13
+ ```
14
+
15
+ Or self-hosted via npm:
16
+
17
+ ```bash
18
+ npm install n8n-nodes-mysticapi
19
+ ```
20
+
21
+ ## Credentials
22
+
23
+ Create a **MysticAPI API** credential and paste your API key (`mk_live_…`).
24
+
25
+ Get a free key (50 calls/month, no card) at <https://mysticapi.com> — `POST /v1/keys/free` with `{"email":"you@example.com"}` and it is emailed to you. Paid tiers (Maker/Pro/Scale) are self-serve Stripe links at <https://mysticapi.com/llms.txt>.
26
+
27
+ ## Operations
28
+
29
+ | Operation | Endpoint | Output |
30
+ | --- | --- | --- |
31
+ | **Sky Today** | `GET /v1/sky/today` | JSON: active retrogrades, moon phase + illumination, positions for 13 bodies (zodiac + Energy Blueprint gate/line), and a 30-day forward scan of stations and new/full moons |
32
+ | **Bodygraph** | `POST /v1/bodygraph` | JSON: the full Energy Blueprint chart (type, authority, strategy, profile, definition, cross, channels, centers, conscious + unconscious gate maps) plus a body-graph `svg` string |
33
+ | **Sky Personal** | `POST /v1/sky/personal` | `image/svg+xml`: a personal-sky SVG rendered from the birth instant |
34
+
35
+ **Bodygraph** and **Sky Personal** take a birth instant **in UTC**: Year, Month, Day, Hour, Minute, and optional Second. Convert local time + timezone to UTC before running. **Sky Personal** also has an **Animate** toggle (turn off for a static SVG).
36
+
37
+ Every call is metered (1 call against your monthly allotment).
38
+
39
+ ## Compatibility
40
+
41
+ Requires n8n with `n8nNodesApiVersion: 1`. Declarative node; no extra runtime dependencies.
42
+
43
+ ## Resources
44
+
45
+ - MysticAPI docs (agent-readable): <https://mysticapi.com/llms.txt>
46
+ - OpenAPI spec: <https://mysticapi.com/.well-known/openapi.json>
47
+ - n8n community nodes docs: <https://docs.n8n.io/integrations/community-nodes/>
48
+
49
+ ## License
50
+
51
+ MIT © Latimer Woods Tech
@@ -0,0 +1,13 @@
1
+ import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ /**
3
+ * MysticAPI credential: a bearer API key (`mk_live_…`) applied to every request
4
+ * as `Authorization: Bearer <key>`. Get a free key (no card) at
5
+ * https://mysticapi.com.
6
+ */
7
+ export declare class MysticApiApi implements ICredentialType {
8
+ name: string;
9
+ displayName: string;
10
+ documentationUrl: string;
11
+ properties: INodeProperties[];
12
+ authenticate: IAuthenticateGeneric;
13
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MysticApiApi = void 0;
4
+ /**
5
+ * MysticAPI credential: a bearer API key (`mk_live_…`) applied to every request
6
+ * as `Authorization: Bearer <key>`. Get a free key (no card) at
7
+ * https://mysticapi.com.
8
+ */
9
+ class MysticApiApi {
10
+ constructor() {
11
+ this.name = 'mysticApiApi';
12
+ this.displayName = 'MysticAPI API';
13
+ this.documentationUrl = 'https://mysticapi.com/llms.txt';
14
+ this.properties = [
15
+ {
16
+ displayName: 'API Key',
17
+ name: 'apiKey',
18
+ type: 'string',
19
+ typeOptions: { password: true },
20
+ default: '',
21
+ required: true,
22
+ description: 'Your MysticAPI key (starts with mk_live_). Get a free one at https://mysticapi.com — no card required.',
23
+ },
24
+ {
25
+ displayName: 'Base URL',
26
+ name: 'baseUrl',
27
+ type: 'string',
28
+ default: 'https://mysticapi.com',
29
+ description: 'Override the API base URL. Leave as-is unless you were told otherwise.',
30
+ },
31
+ ];
32
+ this.authenticate = {
33
+ type: 'generic',
34
+ properties: {
35
+ headers: {
36
+ Authorization: '=Bearer {{$credentials.apiKey}}',
37
+ },
38
+ },
39
+ };
40
+ }
41
+ }
42
+ exports.MysticApiApi = MysticApiApi;
43
+ //# sourceMappingURL=MysticApiApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MysticApiApi.credentials.js","sourceRoot":"","sources":["../../credentials/MysticApiApi.credentials.ts"],"names":[],"mappings":";;;AAMA;;;;GAIG;AACH,MAAa,YAAY;IAAzB;QACE,SAAI,GAAG,cAAc,CAAC;QAEtB,gBAAW,GAAG,eAAe,CAAC;QAE9B,qBAAgB,GAAG,gCAAgC,CAAC;QAEpD,eAAU,GAAsB;YAC9B;gBACE,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;gBACd,WAAW,EACT,wGAAwG;aAC3G;YACD;gBACE,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,uBAAuB;gBAChC,WAAW,EAAE,wEAAwE;aACtF;SACF,CAAC;QAEF,iBAAY,GAAyB;YACnC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACV,OAAO,EAAE;oBACP,aAAa,EAAE,iCAAiC;iBACjD;aACF;SACF,CAAC;IACJ,CAAC;CAAA;AAnCD,oCAmCC"}
@@ -0,0 +1,10 @@
1
+ import type { INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ /**
3
+ * MysticAPI node — deterministic Human Design–compatible bodygraphs, personal
4
+ * sky charts, and today's universal sky, from https://mysticapi.com. Declarative
5
+ * node: each operation maps to a metered REST endpoint; the API key is supplied
6
+ * by the MysticAPI credential.
7
+ */
8
+ export declare class MysticApi implements INodeType {
9
+ description: INodeTypeDescription;
10
+ }
@@ -0,0 +1,148 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MysticApi = void 0;
4
+ /** Birth-instant fields (UTC), shown for the Bodygraph and Sky Personal operations. */
5
+ const birthFields = [
6
+ {
7
+ displayName: 'Year',
8
+ name: 'year',
9
+ type: 'number',
10
+ default: 2000,
11
+ required: true,
12
+ typeOptions: { minValue: 1, maxValue: 2200 },
13
+ description: 'Birth year in UTC (1–2200). Convert local time + timezone to UTC first.',
14
+ displayOptions: { show: { operation: ['bodygraph', 'skyPersonal'] } },
15
+ routing: { send: { type: 'body', property: 'year' } },
16
+ },
17
+ {
18
+ displayName: 'Month',
19
+ name: 'month',
20
+ type: 'number',
21
+ default: 1,
22
+ required: true,
23
+ typeOptions: { minValue: 1, maxValue: 12 },
24
+ description: 'Birth month in UTC (1–12)',
25
+ displayOptions: { show: { operation: ['bodygraph', 'skyPersonal'] } },
26
+ routing: { send: { type: 'body', property: 'month' } },
27
+ },
28
+ {
29
+ displayName: 'Day',
30
+ name: 'day',
31
+ type: 'number',
32
+ default: 1,
33
+ required: true,
34
+ typeOptions: { minValue: 1, maxValue: 31 },
35
+ description: 'Birth day of month in UTC (1–31)',
36
+ displayOptions: { show: { operation: ['bodygraph', 'skyPersonal'] } },
37
+ routing: { send: { type: 'body', property: 'day' } },
38
+ },
39
+ {
40
+ displayName: 'Hour',
41
+ name: 'hour',
42
+ type: 'number',
43
+ default: 0,
44
+ required: true,
45
+ typeOptions: { minValue: 0, maxValue: 23 },
46
+ description: 'Birth hour in UTC (0–23)',
47
+ displayOptions: { show: { operation: ['bodygraph', 'skyPersonal'] } },
48
+ routing: { send: { type: 'body', property: 'hour' } },
49
+ },
50
+ {
51
+ displayName: 'Minute',
52
+ name: 'minute',
53
+ type: 'number',
54
+ default: 0,
55
+ required: true,
56
+ typeOptions: { minValue: 0, maxValue: 59 },
57
+ description: 'Birth minute in UTC (0–59)',
58
+ displayOptions: { show: { operation: ['bodygraph', 'skyPersonal'] } },
59
+ routing: { send: { type: 'body', property: 'minute' } },
60
+ },
61
+ {
62
+ displayName: 'Second',
63
+ name: 'second',
64
+ type: 'number',
65
+ default: 0,
66
+ typeOptions: { minValue: 0, maxValue: 59 },
67
+ description: 'Birth second in UTC (0–59). Optional; defaults to 0.',
68
+ displayOptions: { show: { operation: ['bodygraph', 'skyPersonal'] } },
69
+ routing: { send: { type: 'body', property: 'second' } },
70
+ },
71
+ {
72
+ displayName: 'Animate',
73
+ name: 'animate',
74
+ type: 'boolean',
75
+ default: true,
76
+ description: 'Whether to return an animated sky. Turn off for a static SVG.',
77
+ displayOptions: { show: { operation: ['skyPersonal'] } },
78
+ routing: { send: { type: 'query', property: 'animate' } },
79
+ },
80
+ ];
81
+ /**
82
+ * MysticAPI node — deterministic Human Design–compatible bodygraphs, personal
83
+ * sky charts, and today's universal sky, from https://mysticapi.com. Declarative
84
+ * node: each operation maps to a metered REST endpoint; the API key is supplied
85
+ * by the MysticAPI credential.
86
+ */
87
+ class MysticApi {
88
+ constructor() {
89
+ this.description = {
90
+ displayName: 'MysticAPI',
91
+ name: 'mysticApi',
92
+ icon: 'fa:moon',
93
+ group: ['transform'],
94
+ version: 1,
95
+ subtitle: '={{$parameter["operation"]}}',
96
+ description: 'Deterministic bodygraphs, personal sky charts, and ephemeris (mysticapi.com)',
97
+ defaults: { name: 'MysticAPI' },
98
+ inputs: ['main'],
99
+ outputs: ['main'],
100
+ credentials: [{ name: 'mysticApiApi', required: true }],
101
+ requestDefaults: {
102
+ baseURL: '={{$credentials.baseUrl || "https://mysticapi.com"}}',
103
+ headers: { Accept: 'application/json' },
104
+ },
105
+ properties: [
106
+ {
107
+ displayName: 'Operation',
108
+ name: 'operation',
109
+ type: 'options',
110
+ noDataExpression: true,
111
+ default: 'skyToday',
112
+ options: [
113
+ {
114
+ name: 'Sky Today',
115
+ value: 'skyToday',
116
+ action: "Get today's universal sky",
117
+ description: 'Active retrogrades, moon phase, positions for 13 bodies, and a 30-day forward scan',
118
+ routing: { request: { method: 'GET', url: '/v1/sky/today' } },
119
+ },
120
+ {
121
+ name: 'Bodygraph',
122
+ value: 'bodygraph',
123
+ action: 'Compute an Energy Blueprint chart',
124
+ description: 'Birth instant (UTC) to the full chart JSON plus a body-graph SVG',
125
+ routing: { request: { method: 'POST', url: '/v1/bodygraph' } },
126
+ },
127
+ {
128
+ name: 'Sky Personal',
129
+ value: 'skyPersonal',
130
+ action: 'Render a personal sky SVG',
131
+ description: 'Birth instant (UTC) to a personal-sky SVG (image/svg+xml)',
132
+ routing: {
133
+ request: {
134
+ method: 'POST',
135
+ url: '/v1/sky/personal',
136
+ headers: { Accept: 'image/svg+xml' },
137
+ },
138
+ },
139
+ },
140
+ ],
141
+ },
142
+ ...birthFields,
143
+ ],
144
+ };
145
+ }
146
+ }
147
+ exports.MysticApi = MysticApi;
148
+ //# sourceMappingURL=MysticApi.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MysticApi.node.js","sourceRoot":"","sources":["../../../nodes/MysticApi/MysticApi.node.ts"],"names":[],"mappings":";;;AAEA,uFAAuF;AACvF,MAAM,WAAW,GAAsB;IACrC;QACE,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE;QAC5C,WAAW,EAAE,yEAAyE;QACtF,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,WAAW,EAAE,aAAa,CAAC,EAAE,EAAE;QACrE,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE;KACtD;IACD;QACE,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,CAAC;QACV,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;QAC1C,WAAW,EAAE,2BAA2B;QACxC,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,WAAW,EAAE,aAAa,CAAC,EAAE,EAAE;QACrE,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE;KACvD;IACD;QACE,WAAW,EAAE,KAAK;QAClB,IAAI,EAAE,KAAK;QACX,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,CAAC;QACV,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;QAC1C,WAAW,EAAE,kCAAkC;QAC/C,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,WAAW,EAAE,aAAa,CAAC,EAAE,EAAE;QACrE,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE;KACrD;IACD;QACE,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,CAAC;QACV,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;QAC1C,WAAW,EAAE,0BAA0B;QACvC,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,WAAW,EAAE,aAAa,CAAC,EAAE,EAAE;QACrE,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE;KACtD;IACD;QACE,WAAW,EAAE,QAAQ;QACrB,IAAI,EAAE,QAAQ;QACd,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,CAAC;QACV,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;QAC1C,WAAW,EAAE,4BAA4B;QACzC,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,WAAW,EAAE,aAAa,CAAC,EAAE,EAAE;QACrE,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE;KACxD;IACD;QACE,WAAW,EAAE,QAAQ;QACrB,IAAI,EAAE,QAAQ;QACd,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,CAAC;QACV,WAAW,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;QAC1C,WAAW,EAAE,sDAAsD;QACnE,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,WAAW,EAAE,aAAa,CAAC,EAAE,EAAE;QACrE,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE;KACxD;IACD;QACE,WAAW,EAAE,SAAS;QACtB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,IAAI;QACb,WAAW,EAAE,+DAA+D;QAC5E,cAAc,EAAE,EAAE,IAAI,EAAE,EAAE,SAAS,EAAE,CAAC,aAAa,CAAC,EAAE,EAAE;QACxD,OAAO,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE;KAC1D;CACF,CAAC;AAEF;;;;;GAKG;AACH,MAAa,SAAS;IAAtB;QACE,gBAAW,GAAyB;YAClC,WAAW,EAAE,WAAW;YACxB,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8BAA8B;YACxC,WAAW,EAAE,8EAA8E;YAC3F,QAAQ,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE;YAC/B,MAAM,EAAE,CAAC,MAAM,CAAC;YAChB,OAAO,EAAE,CAAC,MAAM,CAAC;YACjB,WAAW,EAAE,CAAC,EAAE,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;YACvD,eAAe,EAAE;gBACf,OAAO,EAAE,sDAAsD;gBAC/D,OAAO,EAAE,EAAE,MAAM,EAAE,kBAAkB,EAAE;aACxC;YACD,UAAU,EAAE;gBACV;oBACE,WAAW,EAAE,WAAW;oBACxB,IAAI,EAAE,WAAW;oBACjB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE,UAAU;oBACnB,OAAO,EAAE;wBACP;4BACE,IAAI,EAAE,WAAW;4BACjB,KAAK,EAAE,UAAU;4BACjB,MAAM,EAAE,2BAA2B;4BACnC,WAAW,EACT,oFAAoF;4BACtF,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,eAAe,EAAE,EAAE;yBAC9D;wBACD;4BACE,IAAI,EAAE,WAAW;4BACjB,KAAK,EAAE,WAAW;4BAClB,MAAM,EAAE,mCAAmC;4BAC3C,WAAW,EAAE,kEAAkE;4BAC/E,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,eAAe,EAAE,EAAE;yBAC/D;wBACD;4BACE,IAAI,EAAE,cAAc;4BACpB,KAAK,EAAE,aAAa;4BACpB,MAAM,EAAE,2BAA2B;4BACnC,WAAW,EAAE,2DAA2D;4BACxE,OAAO,EAAE;gCACP,OAAO,EAAE;oCACP,MAAM,EAAE,MAAM;oCACd,GAAG,EAAE,kBAAkB;oCACvB,OAAO,EAAE,EAAE,MAAM,EAAE,eAAe,EAAE;iCACrC;6BACF;yBACF;qBACF;iBACF;gBACD,GAAG,WAAW;aACf;SACF,CAAC;IACJ,CAAC;CAAA;AA1DD,8BA0DC"}
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "n8n-nodes-mysticapi",
3
+ "version": "0.1.0",
4
+ "description": "n8n community node for MysticAPI — deterministic Human Design–compatible bodygraphs, personal sky charts, and ephemeris.",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "n8n",
8
+ "mysticapi",
9
+ "human-design",
10
+ "energy-blueprint",
11
+ "bodygraph",
12
+ "astrology",
13
+ "ephemeris",
14
+ "moon-phase"
15
+ ],
16
+ "license": "MIT",
17
+ "homepage": "https://mysticapi.com",
18
+ "author": {
19
+ "name": "Latimer Woods Tech"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/Latimer-Woods-Tech/Factory.git",
24
+ "directory": "packages/n8n-nodes-mysticapi"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/Latimer-Woods-Tech/Factory/issues"
28
+ },
29
+ "engines": {
30
+ "node": ">=18.10"
31
+ },
32
+ "scripts": {
33
+ "build": "tsc",
34
+ "typecheck": "tsc --noEmit",
35
+ "lint": "eslint nodes credentials --ext .ts --max-warnings 0",
36
+ "lint:fix": "eslint nodes credentials --ext .ts --fix",
37
+ "prepublishOnly": "npm run build"
38
+ },
39
+ "files": [
40
+ "dist"
41
+ ],
42
+ "n8n": {
43
+ "n8nNodesApiVersion": 1,
44
+ "credentials": [
45
+ "dist/credentials/MysticApiApi.credentials.js"
46
+ ],
47
+ "nodes": [
48
+ "dist/nodes/MysticApi/MysticApi.node.js"
49
+ ]
50
+ },
51
+ "peerDependencies": {
52
+ "n8n-workflow": "*"
53
+ },
54
+ "devDependencies": {
55
+ "@types/node": "^20.14.0",
56
+ "@typescript-eslint/parser": "^7.18.0",
57
+ "eslint": "^8.57.0",
58
+ "eslint-plugin-n8n-nodes-base": "^1.16.7",
59
+ "n8n-workflow": "^2.16.0",
60
+ "typescript": "^5.4.0"
61
+ }
62
+ }