@fedify/relay 2.4.0-dev.1661 → 2.4.0-dev.1666
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/litepub.test.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "temporal-polyfill";
|
|
2
2
|
import "urlpattern-polyfill";
|
|
3
3
|
globalThis.addEventListener = () => {};
|
|
4
|
-
import { n as exportSpki, r as getDocumentLoader, t as isRelayFollowerData } from "./types-
|
|
4
|
+
import { n as exportSpki, r as getDocumentLoader, t as isRelayFollowerData } from "./types-KBeGMT3L.js";
|
|
5
5
|
import { MemoryKvStore, signRequest } from "@fedify/fedify";
|
|
6
6
|
import { createRelay } from "@fedify/relay";
|
|
7
7
|
import { Accept, Announce, Create, Delete, Follow, Move, Note, Person, Undo, Update } from "@fedify/vocab";
|
package/dist/mastodon.test.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "temporal-polyfill";
|
|
2
2
|
import "urlpattern-polyfill";
|
|
3
3
|
globalThis.addEventListener = () => {};
|
|
4
|
-
import { n as exportSpki, r as getDocumentLoader, t as isRelayFollowerData } from "./types-
|
|
4
|
+
import { n as exportSpki, r as getDocumentLoader, t as isRelayFollowerData } from "./types-KBeGMT3L.js";
|
|
5
5
|
import { MemoryKvStore, signRequest } from "@fedify/fedify";
|
|
6
6
|
import { createRelay } from "@fedify/relay";
|
|
7
7
|
import { Create, Delete, Follow, Move, Note, Person, Undo, Update } from "@fedify/vocab";
|
|
@@ -1349,7 +1349,7 @@ var require_build$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1349
1349
|
/*!
|
|
1350
1350
|
Copyright (c) Peculiar Ventures, LLC
|
|
1351
1351
|
*/
|
|
1352
|
-
var require_utils$
|
|
1352
|
+
var require_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1353
1353
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1354
1354
|
function getUTCDate(date) {
|
|
1355
1355
|
return new Date(date.getTime() + date.getTimezoneOffset() * 6e4);
|
|
@@ -1659,7 +1659,7 @@ var require_utils$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
1659
1659
|
*/
|
|
1660
1660
|
var require_build$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
1661
1661
|
var pvtsutils = require_build$2();
|
|
1662
|
-
var pvutils = require_utils$
|
|
1662
|
+
var pvutils = require_utils$1();
|
|
1663
1663
|
function _interopNamespaceDefault(e) {
|
|
1664
1664
|
var n = Object.create(null);
|
|
1665
1665
|
if (e) Object.keys(e).forEach(function(k) {
|
|
@@ -4410,284 +4410,6 @@ function a(e) {
|
|
|
4410
4410
|
var f = new TextEncoder().encode("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"), y = new Uint8Array(128).fill(64);
|
|
4411
4411
|
f.forEach((e, r) => y[e] = r);
|
|
4412
4412
|
//#endregion
|
|
4413
|
-
//#region ../../node_modules/.pnpm/pvutils@1.1.3/node_modules/pvutils/build/utils.js
|
|
4414
|
-
/*!
|
|
4415
|
-
Copyright (c) Peculiar Ventures, LLC
|
|
4416
|
-
*/
|
|
4417
|
-
var require_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4418
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4419
|
-
function getUTCDate(date) {
|
|
4420
|
-
return new Date(date.getTime() + date.getTimezoneOffset() * 6e4);
|
|
4421
|
-
}
|
|
4422
|
-
function getParametersValue(parameters, name, defaultValue) {
|
|
4423
|
-
var _a;
|
|
4424
|
-
if (parameters instanceof Object === false) return defaultValue;
|
|
4425
|
-
return (_a = parameters[name]) !== null && _a !== void 0 ? _a : defaultValue;
|
|
4426
|
-
}
|
|
4427
|
-
function bufferToHexCodes(inputBuffer, inputOffset = 0, inputLength = inputBuffer.byteLength - inputOffset, insertSpace = false) {
|
|
4428
|
-
let result = "";
|
|
4429
|
-
for (const item of new Uint8Array(inputBuffer, inputOffset, inputLength)) {
|
|
4430
|
-
const str = item.toString(16).toUpperCase();
|
|
4431
|
-
if (str.length === 1) result += "0";
|
|
4432
|
-
result += str;
|
|
4433
|
-
if (insertSpace) result += " ";
|
|
4434
|
-
}
|
|
4435
|
-
return result.trim();
|
|
4436
|
-
}
|
|
4437
|
-
function checkBufferParams(baseBlock, inputBuffer, inputOffset, inputLength) {
|
|
4438
|
-
if (!(inputBuffer instanceof ArrayBuffer)) {
|
|
4439
|
-
baseBlock.error = "Wrong parameter: inputBuffer must be \"ArrayBuffer\"";
|
|
4440
|
-
return false;
|
|
4441
|
-
}
|
|
4442
|
-
if (!inputBuffer.byteLength) {
|
|
4443
|
-
baseBlock.error = "Wrong parameter: inputBuffer has zero length";
|
|
4444
|
-
return false;
|
|
4445
|
-
}
|
|
4446
|
-
if (inputOffset < 0) {
|
|
4447
|
-
baseBlock.error = "Wrong parameter: inputOffset less than zero";
|
|
4448
|
-
return false;
|
|
4449
|
-
}
|
|
4450
|
-
if (inputLength < 0) {
|
|
4451
|
-
baseBlock.error = "Wrong parameter: inputLength less than zero";
|
|
4452
|
-
return false;
|
|
4453
|
-
}
|
|
4454
|
-
if (inputBuffer.byteLength - inputOffset - inputLength < 0) {
|
|
4455
|
-
baseBlock.error = "End of input reached before message was fully decoded (inconsistent offset and length values)";
|
|
4456
|
-
return false;
|
|
4457
|
-
}
|
|
4458
|
-
return true;
|
|
4459
|
-
}
|
|
4460
|
-
function utilFromBase(inputBuffer, inputBase) {
|
|
4461
|
-
let result = 0;
|
|
4462
|
-
if (inputBuffer.length === 1) return inputBuffer[0];
|
|
4463
|
-
for (let i = inputBuffer.length - 1; i >= 0; i--) result += inputBuffer[inputBuffer.length - 1 - i] * Math.pow(2, inputBase * i);
|
|
4464
|
-
return result;
|
|
4465
|
-
}
|
|
4466
|
-
function utilToBase(value, base, reserved = -1) {
|
|
4467
|
-
const internalReserved = reserved;
|
|
4468
|
-
let internalValue = value;
|
|
4469
|
-
let result = 0;
|
|
4470
|
-
let biggest = Math.pow(2, base);
|
|
4471
|
-
for (let i = 1; i < 8; i++) {
|
|
4472
|
-
if (value < biggest) {
|
|
4473
|
-
let retBuf;
|
|
4474
|
-
if (internalReserved < 0) {
|
|
4475
|
-
retBuf = new ArrayBuffer(i);
|
|
4476
|
-
result = i;
|
|
4477
|
-
} else {
|
|
4478
|
-
if (internalReserved < i) return /* @__PURE__ */ new ArrayBuffer(0);
|
|
4479
|
-
retBuf = new ArrayBuffer(internalReserved);
|
|
4480
|
-
result = internalReserved;
|
|
4481
|
-
}
|
|
4482
|
-
const retView = new Uint8Array(retBuf);
|
|
4483
|
-
for (let j = i - 1; j >= 0; j--) {
|
|
4484
|
-
const basis = Math.pow(2, j * base);
|
|
4485
|
-
retView[result - j - 1] = Math.floor(internalValue / basis);
|
|
4486
|
-
internalValue -= retView[result - j - 1] * basis;
|
|
4487
|
-
}
|
|
4488
|
-
return retBuf;
|
|
4489
|
-
}
|
|
4490
|
-
biggest *= Math.pow(2, base);
|
|
4491
|
-
}
|
|
4492
|
-
return /* @__PURE__ */ new ArrayBuffer(0);
|
|
4493
|
-
}
|
|
4494
|
-
function utilConcatBuf(...buffers) {
|
|
4495
|
-
let outputLength = 0;
|
|
4496
|
-
let prevLength = 0;
|
|
4497
|
-
for (const buffer of buffers) outputLength += buffer.byteLength;
|
|
4498
|
-
const retBuf = new ArrayBuffer(outputLength);
|
|
4499
|
-
const retView = new Uint8Array(retBuf);
|
|
4500
|
-
for (const buffer of buffers) {
|
|
4501
|
-
retView.set(new Uint8Array(buffer), prevLength);
|
|
4502
|
-
prevLength += buffer.byteLength;
|
|
4503
|
-
}
|
|
4504
|
-
return retBuf;
|
|
4505
|
-
}
|
|
4506
|
-
function utilConcatView(...views) {
|
|
4507
|
-
let outputLength = 0;
|
|
4508
|
-
let prevLength = 0;
|
|
4509
|
-
for (const view of views) outputLength += view.length;
|
|
4510
|
-
const retBuf = new ArrayBuffer(outputLength);
|
|
4511
|
-
const retView = new Uint8Array(retBuf);
|
|
4512
|
-
for (const view of views) {
|
|
4513
|
-
retView.set(view, prevLength);
|
|
4514
|
-
prevLength += view.length;
|
|
4515
|
-
}
|
|
4516
|
-
return retView;
|
|
4517
|
-
}
|
|
4518
|
-
function utilDecodeTC() {
|
|
4519
|
-
const buf = new Uint8Array(this.valueHex);
|
|
4520
|
-
if (this.valueHex.byteLength >= 2) {
|
|
4521
|
-
const condition1 = buf[0] === 255 && buf[1] & 128;
|
|
4522
|
-
const condition2 = buf[0] === 0 && (buf[1] & 128) === 0;
|
|
4523
|
-
if (condition1 || condition2) this.warnings.push("Needlessly long format");
|
|
4524
|
-
}
|
|
4525
|
-
const bigIntBuffer = new ArrayBuffer(this.valueHex.byteLength);
|
|
4526
|
-
const bigIntView = new Uint8Array(bigIntBuffer);
|
|
4527
|
-
for (let i = 0; i < this.valueHex.byteLength; i++) bigIntView[i] = 0;
|
|
4528
|
-
bigIntView[0] = buf[0] & 128;
|
|
4529
|
-
const bigInt = utilFromBase(bigIntView, 8);
|
|
4530
|
-
const smallIntBuffer = new ArrayBuffer(this.valueHex.byteLength);
|
|
4531
|
-
const smallIntView = new Uint8Array(smallIntBuffer);
|
|
4532
|
-
for (let j = 0; j < this.valueHex.byteLength; j++) smallIntView[j] = buf[j];
|
|
4533
|
-
smallIntView[0] &= 127;
|
|
4534
|
-
return utilFromBase(smallIntView, 8) - bigInt;
|
|
4535
|
-
}
|
|
4536
|
-
function utilEncodeTC(value) {
|
|
4537
|
-
const modValue = value < 0 ? value * -1 : value;
|
|
4538
|
-
let bigInt = 128;
|
|
4539
|
-
for (let i = 1; i < 8; i++) {
|
|
4540
|
-
if (modValue <= bigInt) {
|
|
4541
|
-
if (value < 0) {
|
|
4542
|
-
const retBuf = utilToBase(bigInt - modValue, 8, i);
|
|
4543
|
-
const retView = new Uint8Array(retBuf);
|
|
4544
|
-
retView[0] |= 128;
|
|
4545
|
-
return retBuf;
|
|
4546
|
-
}
|
|
4547
|
-
let retBuf = utilToBase(modValue, 8, i);
|
|
4548
|
-
let retView = new Uint8Array(retBuf);
|
|
4549
|
-
if (retView[0] & 128) {
|
|
4550
|
-
const tempBuf = retBuf.slice(0);
|
|
4551
|
-
const tempView = new Uint8Array(tempBuf);
|
|
4552
|
-
retBuf = new ArrayBuffer(retBuf.byteLength + 1);
|
|
4553
|
-
retView = new Uint8Array(retBuf);
|
|
4554
|
-
for (let k = 0; k < tempBuf.byteLength; k++) retView[k + 1] = tempView[k];
|
|
4555
|
-
retView[0] = 0;
|
|
4556
|
-
}
|
|
4557
|
-
return retBuf;
|
|
4558
|
-
}
|
|
4559
|
-
bigInt *= Math.pow(2, 8);
|
|
4560
|
-
}
|
|
4561
|
-
return /* @__PURE__ */ new ArrayBuffer(0);
|
|
4562
|
-
}
|
|
4563
|
-
function isEqualBuffer(inputBuffer1, inputBuffer2) {
|
|
4564
|
-
if (inputBuffer1.byteLength !== inputBuffer2.byteLength) return false;
|
|
4565
|
-
const view1 = new Uint8Array(inputBuffer1);
|
|
4566
|
-
const view2 = new Uint8Array(inputBuffer2);
|
|
4567
|
-
for (let i = 0; i < view1.length; i++) if (view1[i] !== view2[i]) return false;
|
|
4568
|
-
return true;
|
|
4569
|
-
}
|
|
4570
|
-
function padNumber(inputNumber, fullLength) {
|
|
4571
|
-
const str = inputNumber.toString(10);
|
|
4572
|
-
if (fullLength < str.length) return "";
|
|
4573
|
-
const dif = fullLength - str.length;
|
|
4574
|
-
const padding = new Array(dif);
|
|
4575
|
-
for (let i = 0; i < dif; i++) padding[i] = "0";
|
|
4576
|
-
return padding.join("").concat(str);
|
|
4577
|
-
}
|
|
4578
|
-
const base64Template = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
|
|
4579
|
-
const base64UrlTemplate = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=";
|
|
4580
|
-
function toBase64(input, useUrlTemplate = false, skipPadding = false, skipLeadingZeros = false) {
|
|
4581
|
-
let i = 0;
|
|
4582
|
-
let flag1 = 0;
|
|
4583
|
-
let flag2 = 0;
|
|
4584
|
-
let output = "";
|
|
4585
|
-
const template = useUrlTemplate ? base64UrlTemplate : base64Template;
|
|
4586
|
-
if (skipLeadingZeros) {
|
|
4587
|
-
let nonZeroPosition = 0;
|
|
4588
|
-
for (let i = 0; i < input.length; i++) if (input.charCodeAt(i) !== 0) {
|
|
4589
|
-
nonZeroPosition = i;
|
|
4590
|
-
break;
|
|
4591
|
-
}
|
|
4592
|
-
input = input.slice(nonZeroPosition);
|
|
4593
|
-
}
|
|
4594
|
-
while (i < input.length) {
|
|
4595
|
-
const chr1 = input.charCodeAt(i++);
|
|
4596
|
-
if (i >= input.length) flag1 = 1;
|
|
4597
|
-
const chr2 = input.charCodeAt(i++);
|
|
4598
|
-
if (i >= input.length) flag2 = 1;
|
|
4599
|
-
const chr3 = input.charCodeAt(i++);
|
|
4600
|
-
const enc1 = chr1 >> 2;
|
|
4601
|
-
const enc2 = (chr1 & 3) << 4 | chr2 >> 4;
|
|
4602
|
-
let enc3 = (chr2 & 15) << 2 | chr3 >> 6;
|
|
4603
|
-
let enc4 = chr3 & 63;
|
|
4604
|
-
if (flag1 === 1) enc3 = enc4 = 64;
|
|
4605
|
-
else if (flag2 === 1) enc4 = 64;
|
|
4606
|
-
if (skipPadding) if (enc3 === 64) output += `${template.charAt(enc1)}${template.charAt(enc2)}`;
|
|
4607
|
-
else if (enc4 === 64) output += `${template.charAt(enc1)}${template.charAt(enc2)}${template.charAt(enc3)}`;
|
|
4608
|
-
else output += `${template.charAt(enc1)}${template.charAt(enc2)}${template.charAt(enc3)}${template.charAt(enc4)}`;
|
|
4609
|
-
else output += `${template.charAt(enc1)}${template.charAt(enc2)}${template.charAt(enc3)}${template.charAt(enc4)}`;
|
|
4610
|
-
}
|
|
4611
|
-
return output;
|
|
4612
|
-
}
|
|
4613
|
-
function fromBase64(input, useUrlTemplate = false, cutTailZeros = false) {
|
|
4614
|
-
const template = useUrlTemplate ? base64UrlTemplate : base64Template;
|
|
4615
|
-
function indexOf(toSearch) {
|
|
4616
|
-
for (let i = 0; i < 64; i++) if (template.charAt(i) === toSearch) return i;
|
|
4617
|
-
return 64;
|
|
4618
|
-
}
|
|
4619
|
-
function test(incoming) {
|
|
4620
|
-
return incoming === 64 ? 0 : incoming;
|
|
4621
|
-
}
|
|
4622
|
-
let i = 0;
|
|
4623
|
-
let output = "";
|
|
4624
|
-
while (i < input.length) {
|
|
4625
|
-
const enc1 = indexOf(input.charAt(i++));
|
|
4626
|
-
const enc2 = i >= input.length ? 0 : indexOf(input.charAt(i++));
|
|
4627
|
-
const enc3 = i >= input.length ? 0 : indexOf(input.charAt(i++));
|
|
4628
|
-
const enc4 = i >= input.length ? 0 : indexOf(input.charAt(i++));
|
|
4629
|
-
const chr1 = test(enc1) << 2 | test(enc2) >> 4;
|
|
4630
|
-
const chr2 = (test(enc2) & 15) << 4 | test(enc3) >> 2;
|
|
4631
|
-
const chr3 = (test(enc3) & 3) << 6 | test(enc4);
|
|
4632
|
-
output += String.fromCharCode(chr1);
|
|
4633
|
-
if (enc3 !== 64) output += String.fromCharCode(chr2);
|
|
4634
|
-
if (enc4 !== 64) output += String.fromCharCode(chr3);
|
|
4635
|
-
}
|
|
4636
|
-
if (cutTailZeros) {
|
|
4637
|
-
const outputLength = output.length;
|
|
4638
|
-
let nonZeroStart = -1;
|
|
4639
|
-
for (let i = outputLength - 1; i >= 0; i--) if (output.charCodeAt(i) !== 0) {
|
|
4640
|
-
nonZeroStart = i;
|
|
4641
|
-
break;
|
|
4642
|
-
}
|
|
4643
|
-
if (nonZeroStart !== -1) output = output.slice(0, nonZeroStart + 1);
|
|
4644
|
-
else output = "";
|
|
4645
|
-
}
|
|
4646
|
-
return output;
|
|
4647
|
-
}
|
|
4648
|
-
function arrayBufferToString(buffer) {
|
|
4649
|
-
let resultString = "";
|
|
4650
|
-
const view = new Uint8Array(buffer);
|
|
4651
|
-
for (const element of view) resultString += String.fromCharCode(element);
|
|
4652
|
-
return resultString;
|
|
4653
|
-
}
|
|
4654
|
-
function stringToArrayBuffer(str) {
|
|
4655
|
-
const stringLength = str.length;
|
|
4656
|
-
const resultBuffer = new ArrayBuffer(stringLength);
|
|
4657
|
-
const resultView = new Uint8Array(resultBuffer);
|
|
4658
|
-
for (let i = 0; i < stringLength; i++) resultView[i] = str.charCodeAt(i);
|
|
4659
|
-
return resultBuffer;
|
|
4660
|
-
}
|
|
4661
|
-
const log2 = Math.log(2);
|
|
4662
|
-
function nearestPowerOf2(length) {
|
|
4663
|
-
const base = Math.log(length) / log2;
|
|
4664
|
-
const floor = Math.floor(base);
|
|
4665
|
-
const round = Math.round(base);
|
|
4666
|
-
return floor === round ? floor : round;
|
|
4667
|
-
}
|
|
4668
|
-
function clearProps(object, propsArray) {
|
|
4669
|
-
for (const prop of propsArray) delete object[prop];
|
|
4670
|
-
}
|
|
4671
|
-
exports.arrayBufferToString = arrayBufferToString;
|
|
4672
|
-
exports.bufferToHexCodes = bufferToHexCodes;
|
|
4673
|
-
exports.checkBufferParams = checkBufferParams;
|
|
4674
|
-
exports.clearProps = clearProps;
|
|
4675
|
-
exports.fromBase64 = fromBase64;
|
|
4676
|
-
exports.getParametersValue = getParametersValue;
|
|
4677
|
-
exports.getUTCDate = getUTCDate;
|
|
4678
|
-
exports.isEqualBuffer = isEqualBuffer;
|
|
4679
|
-
exports.nearestPowerOf2 = nearestPowerOf2;
|
|
4680
|
-
exports.padNumber = padNumber;
|
|
4681
|
-
exports.stringToArrayBuffer = stringToArrayBuffer;
|
|
4682
|
-
exports.toBase64 = toBase64;
|
|
4683
|
-
exports.utilConcatBuf = utilConcatBuf;
|
|
4684
|
-
exports.utilConcatView = utilConcatView;
|
|
4685
|
-
exports.utilDecodeTC = utilDecodeTC;
|
|
4686
|
-
exports.utilEncodeTC = utilEncodeTC;
|
|
4687
|
-
exports.utilFromBase = utilFromBase;
|
|
4688
|
-
exports.utilToBase = utilToBase;
|
|
4689
|
-
}));
|
|
4690
|
-
//#endregion
|
|
4691
4413
|
//#region ../../node_modules/.pnpm/bytestreamjs@2.0.1/node_modules/bytestreamjs/build/cjs/byte_stream.js
|
|
4692
4414
|
var require_byte_stream = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4693
4415
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -26130,7 +25852,7 @@ const preloadedContexts = {
|
|
|
26130
25852
|
} }
|
|
26131
25853
|
};
|
|
26132
25854
|
var name = "@fedify/vocab-runtime";
|
|
26133
|
-
var version = "2.4.0-dev.
|
|
25855
|
+
var version = "2.4.0-dev.1666+690d9b28";
|
|
26134
25856
|
const parametersNeedLowerCase = ["rel", "type"];
|
|
26135
25857
|
const regexpLinkWhitespace = /[\n\r\s\t]/;
|
|
26136
25858
|
function validateURI(uri) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/relay",
|
|
3
|
-
"version": "2.4.0-dev.
|
|
3
|
+
"version": "2.4.0-dev.1666+690d9b28",
|
|
4
4
|
"description": "ActivityPub relay support for Fedify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Fedify",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@logtape/logtape": "^2.2.0",
|
|
49
49
|
"temporal-polyfill": "^1.0.1",
|
|
50
|
-
"@fedify/
|
|
51
|
-
"@fedify/
|
|
50
|
+
"@fedify/fedify": "^2.4.0-dev.1666+690d9b28",
|
|
51
|
+
"@fedify/vocab": "2.4.0-dev.1666+690d9b28"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"tsdown": "^0.22.0",
|
|
55
55
|
"typescript": "^6.0.0",
|
|
56
56
|
"urlpattern-polyfill": "^10.1.0",
|
|
57
|
-
"@fedify/vocab-runtime": "^2.4.0-dev.
|
|
57
|
+
"@fedify/vocab-runtime": "^2.4.0-dev.1666+690d9b28"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build:self": "tsdown",
|