@trigger.dev/sdk 0.0.0-prerelease-20240916154807 → 0.0.0-prerelease-20240917093030
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commonjs/v3/runs.d.ts +60 -60
- package/dist/commonjs/v3/shared.d.ts +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/esm/apiClient.d.ts +209 -209
- package/dist/esm/io.d.ts +17 -17
- package/dist/esm/triggerClient.d.ts +23 -23
- package/dist/esm/triggers/externalSource.d.ts +1 -1
- package/dist/esm/triggers/invokeTrigger.d.ts +1 -1
- package/dist/esm/triggers/notifications.d.ts +8 -8
- package/dist/esm/triggers/scheduled.d.ts +4 -4
- package/dist/esm/triggers/webhook.d.ts +1 -1
- package/dist/esm/types.d.ts +6 -6
- package/dist/esm/v3/runs.d.ts +60 -60
- package/dist/esm/v3/shared.d.ts +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +3 -15
package/dist/esm/v3/runs.d.ts
CHANGED
|
@@ -28,19 +28,13 @@ export type PollOptions = {
|
|
|
28
28
|
declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: RunId<TRunId>, options?: {
|
|
29
29
|
pollIntervalMs?: number;
|
|
30
30
|
}, requestOptions?: ApiRequestOptions): Promise<(TRunId extends RunHandle<infer TOutput> ? Omit<{
|
|
31
|
+
status: "COMPLETED" | "CANCELED" | "QUEUED" | "EXECUTING" | "FAILED" | "WAITING_FOR_DEPLOY" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
31
32
|
id: string;
|
|
32
|
-
status: "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
33
|
-
tags: string[];
|
|
34
|
-
isTest: boolean;
|
|
35
|
-
createdAt: Date;
|
|
36
|
-
durationMs: number;
|
|
37
|
-
costInCents: number;
|
|
38
|
-
baseCostInCents: number;
|
|
39
33
|
attempts: ({
|
|
34
|
+
status: "PENDING" | "COMPLETED" | "CANCELED" | "EXECUTING" | "FAILED" | "PAUSED";
|
|
40
35
|
id: string;
|
|
41
|
-
status: "EXECUTING" | "COMPLETED" | "CANCELED" | "FAILED" | "PENDING" | "PAUSED";
|
|
42
|
-
createdAt: Date;
|
|
43
36
|
updatedAt: Date;
|
|
37
|
+
createdAt: Date;
|
|
44
38
|
startedAt?: Date | undefined;
|
|
45
39
|
completedAt?: Date | undefined;
|
|
46
40
|
error?: {
|
|
@@ -50,6 +44,12 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
50
44
|
} | undefined;
|
|
51
45
|
} | undefined)[];
|
|
52
46
|
updatedAt: Date;
|
|
47
|
+
isTest: boolean;
|
|
48
|
+
createdAt: Date;
|
|
49
|
+
tags: string[];
|
|
50
|
+
durationMs: number;
|
|
51
|
+
costInCents: number;
|
|
52
|
+
baseCostInCents: number;
|
|
53
53
|
taskIdentifier: string;
|
|
54
54
|
isQueued: boolean;
|
|
55
55
|
isExecuting: boolean;
|
|
@@ -65,8 +65,8 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
65
65
|
id: string;
|
|
66
66
|
generator: {
|
|
67
67
|
type: "CRON";
|
|
68
|
-
expression: string;
|
|
69
68
|
description: string;
|
|
69
|
+
expression: string;
|
|
70
70
|
};
|
|
71
71
|
externalId?: string | undefined;
|
|
72
72
|
deduplicationKey?: string | undefined;
|
|
@@ -81,19 +81,13 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
81
81
|
}, "output"> & {
|
|
82
82
|
output?: TOutput;
|
|
83
83
|
} : TRunId extends Task<string, any, infer TTaskOutput> ? Omit<{
|
|
84
|
+
status: "COMPLETED" | "CANCELED" | "QUEUED" | "EXECUTING" | "FAILED" | "WAITING_FOR_DEPLOY" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
84
85
|
id: string;
|
|
85
|
-
status: "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
86
|
-
tags: string[];
|
|
87
|
-
isTest: boolean;
|
|
88
|
-
createdAt: Date;
|
|
89
|
-
durationMs: number;
|
|
90
|
-
costInCents: number;
|
|
91
|
-
baseCostInCents: number;
|
|
92
86
|
attempts: ({
|
|
87
|
+
status: "PENDING" | "COMPLETED" | "CANCELED" | "EXECUTING" | "FAILED" | "PAUSED";
|
|
93
88
|
id: string;
|
|
94
|
-
status: "EXECUTING" | "COMPLETED" | "CANCELED" | "FAILED" | "PENDING" | "PAUSED";
|
|
95
|
-
createdAt: Date;
|
|
96
89
|
updatedAt: Date;
|
|
90
|
+
createdAt: Date;
|
|
97
91
|
startedAt?: Date | undefined;
|
|
98
92
|
completedAt?: Date | undefined;
|
|
99
93
|
error?: {
|
|
@@ -103,6 +97,12 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
103
97
|
} | undefined;
|
|
104
98
|
} | undefined)[];
|
|
105
99
|
updatedAt: Date;
|
|
100
|
+
isTest: boolean;
|
|
101
|
+
createdAt: Date;
|
|
102
|
+
tags: string[];
|
|
103
|
+
durationMs: number;
|
|
104
|
+
costInCents: number;
|
|
105
|
+
baseCostInCents: number;
|
|
106
106
|
taskIdentifier: string;
|
|
107
107
|
isQueued: boolean;
|
|
108
108
|
isExecuting: boolean;
|
|
@@ -118,8 +118,8 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
118
118
|
id: string;
|
|
119
119
|
generator: {
|
|
120
120
|
type: "CRON";
|
|
121
|
-
expression: string;
|
|
122
121
|
description: string;
|
|
122
|
+
expression: string;
|
|
123
123
|
};
|
|
124
124
|
externalId?: string | undefined;
|
|
125
125
|
deduplicationKey?: string | undefined;
|
|
@@ -134,19 +134,13 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
134
134
|
}, "output"> & {
|
|
135
135
|
output?: TTaskOutput;
|
|
136
136
|
} : TRunId extends string ? {
|
|
137
|
+
status: "COMPLETED" | "CANCELED" | "QUEUED" | "EXECUTING" | "FAILED" | "WAITING_FOR_DEPLOY" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
137
138
|
id: string;
|
|
138
|
-
status: "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
139
|
-
tags: string[];
|
|
140
|
-
isTest: boolean;
|
|
141
|
-
createdAt: Date;
|
|
142
|
-
durationMs: number;
|
|
143
|
-
costInCents: number;
|
|
144
|
-
baseCostInCents: number;
|
|
145
139
|
attempts: ({
|
|
140
|
+
status: "PENDING" | "COMPLETED" | "CANCELED" | "EXECUTING" | "FAILED" | "PAUSED";
|
|
146
141
|
id: string;
|
|
147
|
-
status: "EXECUTING" | "COMPLETED" | "CANCELED" | "FAILED" | "PENDING" | "PAUSED";
|
|
148
|
-
createdAt: Date;
|
|
149
142
|
updatedAt: Date;
|
|
143
|
+
createdAt: Date;
|
|
150
144
|
startedAt?: Date | undefined;
|
|
151
145
|
completedAt?: Date | undefined;
|
|
152
146
|
error?: {
|
|
@@ -156,6 +150,12 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
156
150
|
} | undefined;
|
|
157
151
|
} | undefined)[];
|
|
158
152
|
updatedAt: Date;
|
|
153
|
+
isTest: boolean;
|
|
154
|
+
createdAt: Date;
|
|
155
|
+
tags: string[];
|
|
156
|
+
durationMs: number;
|
|
157
|
+
costInCents: number;
|
|
158
|
+
baseCostInCents: number;
|
|
159
159
|
taskIdentifier: string;
|
|
160
160
|
isQueued: boolean;
|
|
161
161
|
isExecuting: boolean;
|
|
@@ -171,8 +171,8 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
171
171
|
id: string;
|
|
172
172
|
generator: {
|
|
173
173
|
type: "CRON";
|
|
174
|
-
expression: string;
|
|
175
174
|
description: string;
|
|
175
|
+
expression: string;
|
|
176
176
|
};
|
|
177
177
|
externalId?: string | undefined;
|
|
178
178
|
deduplicationKey?: string | undefined;
|
|
@@ -185,19 +185,13 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
185
185
|
ttl?: string | undefined;
|
|
186
186
|
expiredAt?: Date | undefined;
|
|
187
187
|
} : never) extends infer T ? { [K in keyof T]: (TRunId extends RunHandle<infer TOutput> ? Omit<{
|
|
188
|
+
status: "COMPLETED" | "CANCELED" | "QUEUED" | "EXECUTING" | "FAILED" | "WAITING_FOR_DEPLOY" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
188
189
|
id: string;
|
|
189
|
-
status: "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
190
|
-
tags: string[];
|
|
191
|
-
isTest: boolean;
|
|
192
|
-
createdAt: Date;
|
|
193
|
-
durationMs: number;
|
|
194
|
-
costInCents: number;
|
|
195
|
-
baseCostInCents: number;
|
|
196
190
|
attempts: ({
|
|
191
|
+
status: "PENDING" | "COMPLETED" | "CANCELED" | "EXECUTING" | "FAILED" | "PAUSED";
|
|
197
192
|
id: string;
|
|
198
|
-
status: "EXECUTING" | "COMPLETED" | "CANCELED" | "FAILED" | "PENDING" | "PAUSED";
|
|
199
|
-
createdAt: Date;
|
|
200
193
|
updatedAt: Date;
|
|
194
|
+
createdAt: Date;
|
|
201
195
|
startedAt?: Date | undefined;
|
|
202
196
|
completedAt?: Date | undefined;
|
|
203
197
|
error?: {
|
|
@@ -207,6 +201,12 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
207
201
|
} | undefined;
|
|
208
202
|
} | undefined)[];
|
|
209
203
|
updatedAt: Date;
|
|
204
|
+
isTest: boolean;
|
|
205
|
+
createdAt: Date;
|
|
206
|
+
tags: string[];
|
|
207
|
+
durationMs: number;
|
|
208
|
+
costInCents: number;
|
|
209
|
+
baseCostInCents: number;
|
|
210
210
|
taskIdentifier: string;
|
|
211
211
|
isQueued: boolean;
|
|
212
212
|
isExecuting: boolean;
|
|
@@ -222,8 +222,8 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
222
222
|
id: string;
|
|
223
223
|
generator: {
|
|
224
224
|
type: "CRON";
|
|
225
|
-
expression: string;
|
|
226
225
|
description: string;
|
|
226
|
+
expression: string;
|
|
227
227
|
};
|
|
228
228
|
externalId?: string | undefined;
|
|
229
229
|
deduplicationKey?: string | undefined;
|
|
@@ -238,19 +238,13 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
238
238
|
}, "output"> & {
|
|
239
239
|
output?: TOutput;
|
|
240
240
|
} : TRunId extends Task<string, any, infer TTaskOutput> ? Omit<{
|
|
241
|
+
status: "COMPLETED" | "CANCELED" | "QUEUED" | "EXECUTING" | "FAILED" | "WAITING_FOR_DEPLOY" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
241
242
|
id: string;
|
|
242
|
-
status: "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
243
|
-
tags: string[];
|
|
244
|
-
isTest: boolean;
|
|
245
|
-
createdAt: Date;
|
|
246
|
-
durationMs: number;
|
|
247
|
-
costInCents: number;
|
|
248
|
-
baseCostInCents: number;
|
|
249
243
|
attempts: ({
|
|
244
|
+
status: "PENDING" | "COMPLETED" | "CANCELED" | "EXECUTING" | "FAILED" | "PAUSED";
|
|
250
245
|
id: string;
|
|
251
|
-
status: "EXECUTING" | "COMPLETED" | "CANCELED" | "FAILED" | "PENDING" | "PAUSED";
|
|
252
|
-
createdAt: Date;
|
|
253
246
|
updatedAt: Date;
|
|
247
|
+
createdAt: Date;
|
|
254
248
|
startedAt?: Date | undefined;
|
|
255
249
|
completedAt?: Date | undefined;
|
|
256
250
|
error?: {
|
|
@@ -260,6 +254,12 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
260
254
|
} | undefined;
|
|
261
255
|
} | undefined)[];
|
|
262
256
|
updatedAt: Date;
|
|
257
|
+
isTest: boolean;
|
|
258
|
+
createdAt: Date;
|
|
259
|
+
tags: string[];
|
|
260
|
+
durationMs: number;
|
|
261
|
+
costInCents: number;
|
|
262
|
+
baseCostInCents: number;
|
|
263
263
|
taskIdentifier: string;
|
|
264
264
|
isQueued: boolean;
|
|
265
265
|
isExecuting: boolean;
|
|
@@ -275,8 +275,8 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
275
275
|
id: string;
|
|
276
276
|
generator: {
|
|
277
277
|
type: "CRON";
|
|
278
|
-
expression: string;
|
|
279
278
|
description: string;
|
|
279
|
+
expression: string;
|
|
280
280
|
};
|
|
281
281
|
externalId?: string | undefined;
|
|
282
282
|
deduplicationKey?: string | undefined;
|
|
@@ -291,19 +291,13 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
291
291
|
}, "output"> & {
|
|
292
292
|
output?: TTaskOutput;
|
|
293
293
|
} : TRunId extends string ? {
|
|
294
|
+
status: "COMPLETED" | "CANCELED" | "QUEUED" | "EXECUTING" | "FAILED" | "WAITING_FOR_DEPLOY" | "REATTEMPTING" | "FROZEN" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
294
295
|
id: string;
|
|
295
|
-
status: "WAITING_FOR_DEPLOY" | "QUEUED" | "EXECUTING" | "REATTEMPTING" | "FROZEN" | "COMPLETED" | "CANCELED" | "FAILED" | "CRASHED" | "INTERRUPTED" | "SYSTEM_FAILURE" | "DELAYED" | "EXPIRED";
|
|
296
|
-
tags: string[];
|
|
297
|
-
isTest: boolean;
|
|
298
|
-
createdAt: Date;
|
|
299
|
-
durationMs: number;
|
|
300
|
-
costInCents: number;
|
|
301
|
-
baseCostInCents: number;
|
|
302
296
|
attempts: ({
|
|
297
|
+
status: "PENDING" | "COMPLETED" | "CANCELED" | "EXECUTING" | "FAILED" | "PAUSED";
|
|
303
298
|
id: string;
|
|
304
|
-
status: "EXECUTING" | "COMPLETED" | "CANCELED" | "FAILED" | "PENDING" | "PAUSED";
|
|
305
|
-
createdAt: Date;
|
|
306
299
|
updatedAt: Date;
|
|
300
|
+
createdAt: Date;
|
|
307
301
|
startedAt?: Date | undefined;
|
|
308
302
|
completedAt?: Date | undefined;
|
|
309
303
|
error?: {
|
|
@@ -313,6 +307,12 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
313
307
|
} | undefined;
|
|
314
308
|
} | undefined)[];
|
|
315
309
|
updatedAt: Date;
|
|
310
|
+
isTest: boolean;
|
|
311
|
+
createdAt: Date;
|
|
312
|
+
tags: string[];
|
|
313
|
+
durationMs: number;
|
|
314
|
+
costInCents: number;
|
|
315
|
+
baseCostInCents: number;
|
|
316
316
|
taskIdentifier: string;
|
|
317
317
|
isQueued: boolean;
|
|
318
318
|
isExecuting: boolean;
|
|
@@ -328,8 +328,8 @@ declare function poll<TRunId extends RunHandle<any> | AnyTask | string>(runId: R
|
|
|
328
328
|
id: string;
|
|
329
329
|
generator: {
|
|
330
330
|
type: "CRON";
|
|
331
|
-
expression: string;
|
|
332
331
|
description: string;
|
|
332
|
+
expression: string;
|
|
333
333
|
};
|
|
334
334
|
externalId?: string | undefined;
|
|
335
335
|
deduplicationKey?: string | undefined;
|
package/dist/esm/v3/shared.d.ts
CHANGED
|
@@ -439,5 +439,5 @@ export declare function batchTriggerAndWait<TTask extends AnyTask>(id: TaskIdent
|
|
|
439
439
|
*/
|
|
440
440
|
export declare function triggerAndPoll<TTask extends AnyTask>(id: TaskIdentifier<TTask>, payload: TaskPayload<TTask>, options?: TaskRunOptions & PollOptions, requestOptions?: ApiRequestOptions): Promise<RetrieveRunResult<RunHandle<TaskOutput<TTask>>>>;
|
|
441
441
|
export declare function batchTrigger<TTask extends AnyTask>(id: TaskIdentifier<TTask>, items: Array<BatchItem<TaskPayload<TTask>>>, requestOptions?: ApiRequestOptions): Promise<BatchRunHandle<TaskOutput<TTask>>>;
|
|
442
|
-
export declare function apiClientMissingError(): "You need to set the TRIGGER_API_URL and TRIGGER_SECRET_KEY environment variables." | "You need to set the TRIGGER_API_URL environment variable." | "You need to set the TRIGGER_SECRET_KEY environment variable."
|
|
442
|
+
export declare function apiClientMissingError(): "Unknown error" | "You need to set the TRIGGER_API_URL and TRIGGER_SECRET_KEY environment variables." | "You need to set the TRIGGER_API_URL environment variable." | "You need to set the TRIGGER_SECRET_KEY environment variable.";
|
|
443
443
|
export {};
|
package/dist/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = "0.0.0-prerelease-
|
|
1
|
+
export const VERSION = "0.0.0-prerelease-20240917093030";
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trigger.dev/sdk",
|
|
3
|
-
"version": "0.0.0-prerelease-
|
|
3
|
+
"version": "0.0.0-prerelease-20240917093030",
|
|
4
4
|
"description": "trigger.dev Node.JS SDK",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
"exports": {
|
|
24
24
|
"./package.json": "./package.json",
|
|
25
25
|
".": "./src/index.ts",
|
|
26
|
-
"./v3": "./src/v3/index.ts"
|
|
27
|
-
"./version": "./src/version.ts"
|
|
26
|
+
"./v3": "./src/v3/index.ts"
|
|
28
27
|
},
|
|
29
28
|
"sourceDialects": [
|
|
30
29
|
"@triggerdotdev/source"
|
|
@@ -41,7 +40,7 @@
|
|
|
41
40
|
"@opentelemetry/api": "1.9.0",
|
|
42
41
|
"@opentelemetry/api-logs": "0.52.1",
|
|
43
42
|
"@opentelemetry/semantic-conventions": "1.25.1",
|
|
44
|
-
"@trigger.dev/core": "0.0.0-prerelease-
|
|
43
|
+
"@trigger.dev/core": "0.0.0-prerelease-20240917093030",
|
|
45
44
|
"chalk": "^5.2.0",
|
|
46
45
|
"cronstrue": "^2.21.0",
|
|
47
46
|
"debug": "^4.3.4",
|
|
@@ -93,17 +92,6 @@
|
|
|
93
92
|
"types": "./dist/commonjs/v3/index.d.ts",
|
|
94
93
|
"default": "./dist/commonjs/v3/index.js"
|
|
95
94
|
}
|
|
96
|
-
},
|
|
97
|
-
"./version": {
|
|
98
|
-
"import": {
|
|
99
|
-
"@triggerdotdev/source": "./src/version.ts",
|
|
100
|
-
"types": "./dist/esm/version.d.ts",
|
|
101
|
-
"default": "./dist/esm/version.js"
|
|
102
|
-
},
|
|
103
|
-
"require": {
|
|
104
|
-
"types": "./dist/commonjs/version.d.ts",
|
|
105
|
-
"default": "./dist/commonjs/version.js"
|
|
106
|
-
}
|
|
107
95
|
}
|
|
108
96
|
},
|
|
109
97
|
"main": "./dist/commonjs/index.js",
|