seyfert 2.2.1-dev-12681581510.0 → 2.2.1-dev-12797288169.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.
|
@@ -31,7 +31,7 @@ export declare class GuildShorter extends BaseShorter {
|
|
|
31
31
|
/**
|
|
32
32
|
* Provides access to channel-related functionality in a guild.
|
|
33
33
|
*/
|
|
34
|
-
|
|
34
|
+
channels: {
|
|
35
35
|
/**
|
|
36
36
|
* Retrieves a list of channels in the guild.
|
|
37
37
|
* @param guildId The ID of the guild.
|
|
@@ -82,7 +82,7 @@ export declare class GuildShorter extends BaseShorter {
|
|
|
82
82
|
/**
|
|
83
83
|
* Provides access to auto-moderation rule-related functionality in a guild.
|
|
84
84
|
*/
|
|
85
|
-
|
|
85
|
+
moderation: {
|
|
86
86
|
/**
|
|
87
87
|
* Retrieves a list of auto-moderation rules in the guild.
|
|
88
88
|
* @param guildId The ID of the guild.
|
|
@@ -124,7 +124,7 @@ export declare class GuildShorter extends BaseShorter {
|
|
|
124
124
|
/**
|
|
125
125
|
* Provides access to sticker-related functionality in a guild.
|
|
126
126
|
*/
|
|
127
|
-
|
|
127
|
+
stickers: {
|
|
128
128
|
/**
|
|
129
129
|
* Retrieves a list of stickers in the guild.
|
|
130
130
|
* @param guildId The ID of the guild.
|
|
@@ -77,229 +77,223 @@ class GuildShorter extends base_1.BaseShorter {
|
|
|
77
77
|
/**
|
|
78
78
|
* Provides access to channel-related functionality in a guild.
|
|
79
79
|
*/
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
return channels;
|
|
94
|
-
}
|
|
80
|
+
channels = {
|
|
81
|
+
/**
|
|
82
|
+
* Retrieves a list of channels in the guild.
|
|
83
|
+
* @param guildId The ID of the guild.
|
|
84
|
+
* @param force Whether to force fetching channels from the API even if they exist in the cache.
|
|
85
|
+
* @returns A Promise that resolves to an array of channels.
|
|
86
|
+
*/
|
|
87
|
+
list: async (guildId, force = false) => {
|
|
88
|
+
let channels;
|
|
89
|
+
if (!force) {
|
|
90
|
+
channels = (await this.client.cache.channels?.values(guildId)) ?? [];
|
|
91
|
+
if (channels.length) {
|
|
92
|
+
return channels;
|
|
95
93
|
}
|
|
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
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
}
|
|
94
|
+
}
|
|
95
|
+
channels = await this.client.proxy.guilds(guildId).channels.get();
|
|
96
|
+
await this.client.cache.channels?.set(cache_1.CacheFrom.Rest, channels.map(x => [x.id, x]), guildId);
|
|
97
|
+
return channels.map(m => (0, structures_1.channelFrom)(m, this.client));
|
|
98
|
+
},
|
|
99
|
+
/**
|
|
100
|
+
* Fetches a channel by its ID.
|
|
101
|
+
* @param guildId The ID of the guild.
|
|
102
|
+
* @param channelId The ID of the channel to fetch.
|
|
103
|
+
* @param force Whether to force fetching the channel from the API even if it exists in the cache.
|
|
104
|
+
* @returns A Promise that resolves to the fetched channel.
|
|
105
|
+
*/
|
|
106
|
+
fetch: async (guildId, channelId, force) => {
|
|
107
|
+
let channel;
|
|
108
|
+
if (!force) {
|
|
109
|
+
channel = await this.client.cache.channels?.get(channelId);
|
|
110
|
+
if (channel)
|
|
111
|
+
return channel;
|
|
112
|
+
}
|
|
113
|
+
channel = await this.client.proxy.channels(channelId).get();
|
|
114
|
+
await this.client.cache.channels?.patch(cache_1.CacheFrom.Rest, channelId, guildId, channel);
|
|
115
|
+
return (0, structures_1.channelFrom)(channel, this.client);
|
|
116
|
+
},
|
|
117
|
+
/**
|
|
118
|
+
* Creates a new channel in the guild.
|
|
119
|
+
* @param guildId The ID of the guild.
|
|
120
|
+
* @param body The data for creating the channel.
|
|
121
|
+
* @returns A Promise that resolves to the created channel.
|
|
122
|
+
*/
|
|
123
|
+
create: async (guildId, body) => {
|
|
124
|
+
const res = await this.client.proxy.guilds(guildId).channels.post({ body });
|
|
125
|
+
await this.client.cache.channels?.setIfNI(cache_1.CacheFrom.Rest, structures_1.BaseChannel.__intent__(guildId), res.id, guildId, res);
|
|
126
|
+
return (0, structures_1.channelFrom)(res, this.client);
|
|
127
|
+
},
|
|
128
|
+
/**
|
|
129
|
+
* Deletes a channel from the guild.
|
|
130
|
+
* @param guildId The ID of the guild.
|
|
131
|
+
* @param channelId The ID of the channel to delete.
|
|
132
|
+
* @param reason The reason for deleting the channel.
|
|
133
|
+
* @returns A Promise that resolves to the deleted channel.
|
|
134
|
+
*/
|
|
135
|
+
delete: async (guildId, channelId, reason) => {
|
|
136
|
+
const res = await this.client.proxy.channels(channelId).delete({ reason });
|
|
137
|
+
await this.client.cache.channels?.removeIfNI(structures_1.BaseChannel.__intent__(guildId), res.id, guildId);
|
|
138
|
+
return (0, structures_1.channelFrom)(res, this.client);
|
|
139
|
+
},
|
|
140
|
+
/**
|
|
141
|
+
* Edits a channel in the guild.
|
|
142
|
+
* @param guildchannelId The ID of the guild.
|
|
143
|
+
* @param channelId The ID of the channel to edit.
|
|
144
|
+
* @param body The data to update the channel with.
|
|
145
|
+
* @param reason The reason for editing the channel.
|
|
146
|
+
* @returns A Promise that resolves to the edited channel.
|
|
147
|
+
*/
|
|
148
|
+
edit: async (guildchannelId, channelId, body, reason) => {
|
|
149
|
+
const res = await this.client.proxy.channels(channelId).patch({ body, reason });
|
|
150
|
+
await this.client.cache.channels?.setIfNI(cache_1.CacheFrom.Rest, structures_1.BaseChannel.__intent__(guildchannelId), res.id, guildchannelId, res);
|
|
151
|
+
return (0, structures_1.channelFrom)(res, this.client);
|
|
152
|
+
},
|
|
153
|
+
/**
|
|
154
|
+
* Edits the positions of channels in the guild.
|
|
155
|
+
* @param guildId The ID of the guild.
|
|
156
|
+
* @param body The data containing the new positions of channels.
|
|
157
|
+
*/
|
|
158
|
+
editPositions: (guildId, body) => this.client.proxy.guilds(guildId).channels.patch({ body }),
|
|
159
|
+
addFollower: async (channelId, webhook_channel_id, reason) => {
|
|
160
|
+
return this.client.proxy.channels(channelId).followers.post({
|
|
161
|
+
body: {
|
|
162
|
+
webhook_channel_id,
|
|
163
|
+
},
|
|
164
|
+
reason,
|
|
165
|
+
});
|
|
166
|
+
},
|
|
167
|
+
};
|
|
170
168
|
/**
|
|
171
169
|
* Provides access to auto-moderation rule-related functionality in a guild.
|
|
172
170
|
*/
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
};
|
|
229
|
-
}
|
|
171
|
+
moderation = {
|
|
172
|
+
/**
|
|
173
|
+
* Retrieves a list of auto-moderation rules in the guild.
|
|
174
|
+
* @param guildId The ID of the guild.
|
|
175
|
+
* @returns A Promise that resolves to an array of auto-moderation rules.
|
|
176
|
+
*/
|
|
177
|
+
list: (guildId) => this.client.proxy
|
|
178
|
+
.guilds(guildId)['auto-moderation'].rules.get()
|
|
179
|
+
.then(rules => rules.map(rule => transformers_1.Transformers.AutoModerationRule(this.client, rule))),
|
|
180
|
+
/**
|
|
181
|
+
* Creates a new auto-moderation rule in the guild.
|
|
182
|
+
* @param guildId The ID of the guild.
|
|
183
|
+
* @param body The data for creating the auto-moderation rule.
|
|
184
|
+
* @returns A Promise that resolves to the created auto-moderation rule.
|
|
185
|
+
*/
|
|
186
|
+
create: (guildId, body) => this.client.proxy
|
|
187
|
+
.guilds(guildId)['auto-moderation'].rules.post({ body })
|
|
188
|
+
.then(rule => transformers_1.Transformers.AutoModerationRule(this.client, rule)),
|
|
189
|
+
/**
|
|
190
|
+
* Deletes an auto-moderation rule from the guild.
|
|
191
|
+
* @param guildId The ID of the guild.
|
|
192
|
+
* @param ruleId The ID of the rule to delete.
|
|
193
|
+
* @param reason The reason for deleting the rule.
|
|
194
|
+
* @returns A Promise that resolves once the rule is deleted.
|
|
195
|
+
*/
|
|
196
|
+
delete: (guildId, ruleId, reason) => {
|
|
197
|
+
return this.client.proxy.guilds(guildId)['auto-moderation'].rules(ruleId).delete({ reason });
|
|
198
|
+
},
|
|
199
|
+
/**
|
|
200
|
+
* Fetches an auto-moderation rule by its ID.
|
|
201
|
+
* @param guildId The ID of the guild.
|
|
202
|
+
* @param ruleId The ID of the rule to fetch.
|
|
203
|
+
* @returns A Promise that resolves to the fetched auto-moderation rule.
|
|
204
|
+
*/
|
|
205
|
+
fetch: (guildId, ruleId) => {
|
|
206
|
+
return this.client.proxy
|
|
207
|
+
.guilds(guildId)['auto-moderation'].rules(ruleId)
|
|
208
|
+
.get()
|
|
209
|
+
.then(rule => transformers_1.Transformers.AutoModerationRule(this.client, rule));
|
|
210
|
+
},
|
|
211
|
+
/**
|
|
212
|
+
* Edits an auto-moderation rule in the guild.
|
|
213
|
+
* @param guildId The ID of the guild.
|
|
214
|
+
* @param ruleId The ID of the rule to edit.
|
|
215
|
+
* @param body The data to update the rule with.
|
|
216
|
+
* @param reason The reason for editing the rule.
|
|
217
|
+
* @returns A Promise that resolves to the edited auto-moderation rule.
|
|
218
|
+
*/
|
|
219
|
+
edit: (guildId, ruleId, body, reason) => {
|
|
220
|
+
return this.client.proxy
|
|
221
|
+
.guilds(guildId)['auto-moderation'].rules(ruleId)
|
|
222
|
+
.patch({ body, reason })
|
|
223
|
+
.then(rule => transformers_1.Transformers.AutoModerationRule(this.client, rule));
|
|
224
|
+
},
|
|
225
|
+
};
|
|
230
226
|
/**
|
|
231
227
|
* Provides access to sticker-related functionality in a guild.
|
|
232
228
|
*/
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
};
|
|
303
|
-
}
|
|
229
|
+
stickers = {
|
|
230
|
+
/**
|
|
231
|
+
* Retrieves a list of stickers in the guild.
|
|
232
|
+
* @param guildId The ID of the guild.
|
|
233
|
+
* @returns A Promise that resolves to an array of stickers.
|
|
234
|
+
*/
|
|
235
|
+
list: async (guildId) => {
|
|
236
|
+
const stickers = await this.client.proxy.guilds(guildId).stickers.get();
|
|
237
|
+
await this.client.cache.stickers?.set(cache_1.CacheFrom.Rest, stickers.map(st => [st.id, st]), guildId);
|
|
238
|
+
return stickers.map(st => transformers_1.Transformers.Sticker(this.client, st));
|
|
239
|
+
},
|
|
240
|
+
/**
|
|
241
|
+
* Creates a new sticker in the guild.
|
|
242
|
+
* @param guildId The ID of the guild.
|
|
243
|
+
* @param request The request body for creating the sticker.
|
|
244
|
+
* @param reason The reason for creating the sticker.
|
|
245
|
+
* @returns A Promise that resolves to the created sticker.
|
|
246
|
+
*/
|
|
247
|
+
create: async (guildId, { file, ...json }, reason) => {
|
|
248
|
+
const fileResolve = await (0, builders_1.resolveFiles)([file]);
|
|
249
|
+
const sticker = await this.client.proxy
|
|
250
|
+
.guilds(guildId)
|
|
251
|
+
.stickers.post({ reason, body: json, files: [{ ...fileResolve[0], key: 'file' }], appendToFormData: true });
|
|
252
|
+
await this.client.cache.stickers?.setIfNI(cache_1.CacheFrom.Rest, 'GuildExpressions', sticker.id, guildId, sticker);
|
|
253
|
+
return transformers_1.Transformers.Sticker(this.client, sticker);
|
|
254
|
+
},
|
|
255
|
+
/**
|
|
256
|
+
* Edits an existing sticker in the guild.
|
|
257
|
+
* @param guildId The ID of the guild.
|
|
258
|
+
* @param stickerId The ID of the sticker to edit.
|
|
259
|
+
* @param body The data to update the sticker with.
|
|
260
|
+
* @param reason The reason for editing the sticker.
|
|
261
|
+
* @returns A Promise that resolves to the edited sticker.
|
|
262
|
+
*/
|
|
263
|
+
edit: async (guildId, stickerId, body, reason) => {
|
|
264
|
+
const sticker = await this.client.proxy.guilds(guildId).stickers(stickerId).patch({ body, reason });
|
|
265
|
+
await this.client.cache.stickers?.setIfNI(cache_1.CacheFrom.Rest, 'GuildExpressions', stickerId, guildId, sticker);
|
|
266
|
+
return transformers_1.Transformers.Sticker(this.client, sticker);
|
|
267
|
+
},
|
|
268
|
+
/**
|
|
269
|
+
* Fetches a sticker by its ID from the guild.
|
|
270
|
+
* @param guildId The ID of the guild.
|
|
271
|
+
* @param stickerId The ID of the sticker to fetch.
|
|
272
|
+
* @param force Whether to force fetching the sticker from the API even if it exists in the cache.
|
|
273
|
+
* @returns A Promise that resolves to the fetched sticker.
|
|
274
|
+
*/
|
|
275
|
+
fetch: async (guildId, stickerId, force = false) => {
|
|
276
|
+
let sticker;
|
|
277
|
+
if (!force) {
|
|
278
|
+
sticker = await this.client.cache.stickers?.get(stickerId);
|
|
279
|
+
if (sticker)
|
|
280
|
+
return sticker;
|
|
281
|
+
}
|
|
282
|
+
sticker = await this.client.proxy.guilds(guildId).stickers(stickerId).get();
|
|
283
|
+
await this.client.cache.stickers?.patch(cache_1.CacheFrom.Rest, stickerId, guildId, sticker);
|
|
284
|
+
return transformers_1.Transformers.Sticker(this.client, sticker);
|
|
285
|
+
},
|
|
286
|
+
/**
|
|
287
|
+
* Deletes a sticker from the guild.
|
|
288
|
+
* @param guildId The ID of the guild.
|
|
289
|
+
* @param stickerId The ID of the sticker to delete.
|
|
290
|
+
* @param reason The reason for deleting the sticker.
|
|
291
|
+
* @returns A Promise that resolves once the sticker is deleted.
|
|
292
|
+
*/
|
|
293
|
+
delete: async (guildId, stickerId, reason) => {
|
|
294
|
+
await this.client.proxy.guilds(guildId).stickers(stickerId).delete({ reason });
|
|
295
|
+
await this.client.cache.stickers?.removeIfNI('GuildExpressions', stickerId, guildId);
|
|
296
|
+
},
|
|
297
|
+
};
|
|
304
298
|
}
|
|
305
299
|
exports.GuildShorter = GuildShorter;
|
|
@@ -88,13 +88,13 @@ class BaseInteraction extends DiscordBase_1.DiscordBase {
|
|
|
88
88
|
if ('attachments' in body) {
|
|
89
89
|
payload.attachments =
|
|
90
90
|
body.attachments?.map((x, i) => ({
|
|
91
|
-
id: i,
|
|
91
|
+
id: x.id ?? i.toString(),
|
|
92
92
|
...(0, builders_1.resolveAttachment)(x),
|
|
93
93
|
})) ?? undefined;
|
|
94
94
|
}
|
|
95
95
|
else if (files?.length) {
|
|
96
|
-
payload.attachments = files?.map(({ filename },
|
|
97
|
-
id,
|
|
96
|
+
payload.attachments = files?.map(({ filename }, i) => ({
|
|
97
|
+
id: i.toString(),
|
|
98
98
|
filename,
|
|
99
99
|
}));
|
|
100
100
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type AllChannels, Embed, ReturnCache } from '..';
|
|
1
|
+
import { type AllChannels, Embed, type ReturnCache } from '..';
|
|
2
2
|
import type { ListenerOptions } from '../builders';
|
|
3
3
|
import { type GuildMemberStructure, type GuildStructure, type MessageStructure, type PollStructure, type UserStructure, type WebhookMessageStructure, type WebhookStructure } from '../client/transformers';
|
|
4
4
|
import type { UsingClient } from '../commands';
|
|
@@ -196,13 +196,13 @@ class MessagesMethods extends DiscordBase_1.DiscordBase {
|
|
|
196
196
|
if ('attachments' in body) {
|
|
197
197
|
payload.attachments =
|
|
198
198
|
body.attachments?.map((x, i) => ({
|
|
199
|
-
id: i,
|
|
199
|
+
id: i.toString(),
|
|
200
200
|
...(0, builders_1.resolveAttachment)(x),
|
|
201
201
|
})) ?? undefined;
|
|
202
202
|
}
|
|
203
203
|
else if (files?.length) {
|
|
204
|
-
payload.attachments = files?.map(({ filename },
|
|
205
|
-
id,
|
|
204
|
+
payload.attachments = files?.map(({ filename }, i) => ({
|
|
205
|
+
id: i.toString(),
|
|
206
206
|
filename,
|
|
207
207
|
}));
|
|
208
208
|
}
|
|
@@ -213,7 +213,7 @@ export type APIMessageReferenceSend = AddUndefinedToPossiblyUndefinedPropertiesO
|
|
|
213
213
|
/**
|
|
214
214
|
* https://discord.com/developers/docs/resources/message#attachment-object
|
|
215
215
|
*/
|
|
216
|
-
export type RESTAPIAttachment = Partial<Pick<APIAttachment, 'description' | 'duration_secs' | 'filename' | 'title' | 'waveform'>>;
|
|
216
|
+
export type RESTAPIAttachment = Partial<Pick<APIAttachment, 'description' | 'duration_secs' | 'filename' | 'title' | 'waveform' | 'id'>>;
|
|
217
217
|
/**
|
|
218
218
|
* https://discord.com/developers/docs/resources/channel#create-message
|
|
219
219
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "seyfert",
|
|
3
|
-
"version": "2.2.1-dev-
|
|
3
|
+
"version": "2.2.1-dev-12797288169.0",
|
|
4
4
|
"description": "The most advanced framework for discord bots",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"@changesets/cli": "^2.27.11",
|
|
26
26
|
"@commitlint/cli": "^19.6.1",
|
|
27
27
|
"@commitlint/config-conventional": "^19.6.0",
|
|
28
|
-
"@types/node": "^22.10.
|
|
28
|
+
"@types/node": "^22.10.5",
|
|
29
29
|
"husky": "^9.1.7",
|
|
30
30
|
"lint-staged": "^15.3.0",
|
|
31
|
-
"typescript": "^5.7.
|
|
31
|
+
"typescript": "^5.7.3",
|
|
32
32
|
"vitest": "^2.1.8"
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://seyfert.dev",
|