@fedify/amqp 0.3.0 → 1.8.0-dev.924
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 +1 -1
- package/README.md +4 -0
- package/deno.json +5 -9
- package/dist/mod.d.ts +72 -0
- package/dist/mod.js +120 -0
- package/mod.ts +1 -1
- package/{src/mq.test.ts → mq.test.ts} +3 -3
- package/package.json +9 -7
- package/.github/FUNDING.yaml +0 -1
- package/.github/workflows/main.yaml +0 -93
- package/.vscode/extensions.json +0 -6
- package/.vscode/settings.json +0 -33
- package/.zed/settings.json +0 -30
- package/deno.lock +0 -664
- package/src/mod.ts +0 -1
- /package/{src/mq.ts → mq.ts} +0 -0
package/LICENSE
CHANGED
package/README.md
CHANGED
package/deno.json
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/amqp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.8.0-dev.924+159b572c",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./mod.ts",
|
|
7
|
-
"./mq": "./
|
|
7
|
+
"./mq": "./mq.ts"
|
|
8
8
|
},
|
|
9
9
|
"imports": {
|
|
10
|
-
"@fedify/fedify": "jsr:@fedify/fedify@^1.7.0",
|
|
11
10
|
"@hongminhee/suite": "jsr:@hongminhee/suite@^0.6.3",
|
|
12
|
-
"
|
|
13
|
-
"@std/async": "jsr:@std/async@^1.0.13",
|
|
14
|
-
"amqplib": "npm:amqplib@^0.10.8",
|
|
15
|
-
"tsdown": "npm:tsdown@^0.12.7"
|
|
11
|
+
"amqplib": "npm:amqplib@^0.10.8"
|
|
16
12
|
},
|
|
17
13
|
"nodeModulesDir": "auto",
|
|
18
14
|
"unstable": [
|
|
@@ -26,7 +22,7 @@
|
|
|
26
22
|
],
|
|
27
23
|
"tasks": {
|
|
28
24
|
"build": "pnpm build",
|
|
29
|
-
"check": "deno fmt --check && deno lint && deno check
|
|
25
|
+
"check": "deno fmt --check && deno lint && deno check *.ts",
|
|
30
26
|
"test": "deno test --allow-net --allow-env",
|
|
31
27
|
"test:node": {
|
|
32
28
|
"dependencies": [
|
|
@@ -48,4 +44,4 @@
|
|
|
48
44
|
]
|
|
49
45
|
}
|
|
50
46
|
}
|
|
51
|
-
}
|
|
47
|
+
}
|
package/dist/mod.d.ts
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { MessageQueue, MessageQueueEnqueueOptions, MessageQueueListenOptions } from "@fedify/fedify";
|
|
2
|
+
import { ChannelModel } from "amqplib";
|
|
3
|
+
|
|
4
|
+
//#region mq.d.ts
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Options for {@link AmqpMessageQueue}.
|
|
8
|
+
*/
|
|
9
|
+
interface AmqpMessageQueueOptions {
|
|
10
|
+
/**
|
|
11
|
+
* The name of the queue to use. Defaults to `"fedify_queue"`.
|
|
12
|
+
* @default `"fedify_queue"`
|
|
13
|
+
*/
|
|
14
|
+
queue?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The prefix to use for the delayed queue. Defaults to `"fedify_delayed_"`.
|
|
17
|
+
* Defaults to `"fedify_delayed_"`.
|
|
18
|
+
* @default `"fedify_delayed_"`
|
|
19
|
+
*/
|
|
20
|
+
delayedQueuePrefix?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Whether the queue will survive a broker restart. Defaults to `true`.
|
|
23
|
+
* @default `true`
|
|
24
|
+
*/
|
|
25
|
+
durable?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* Whether to use native retrial mechanism. If set to `true`, the queue will
|
|
28
|
+
* not acknowledge messages that are not processed successfully, allowing
|
|
29
|
+
* them to be retried later. If set to `false`, messages will be acknowledged
|
|
30
|
+
* whether they are processed successfully or not.
|
|
31
|
+
*
|
|
32
|
+
* Both approaches have their own advantages and disadvantages. With native
|
|
33
|
+
* retrials, much less chance of losing messages, but timing of retrials is
|
|
34
|
+
* less predictable. With non-native retrials, retrials are handled by Fedify
|
|
35
|
+
* itself, which allows for more control over the timing and behavior of
|
|
36
|
+
* retrials, but may result in lost messages if the process crashes before
|
|
37
|
+
* acknowledging the message.
|
|
38
|
+
* @default `false`
|
|
39
|
+
* @since 0.3.0
|
|
40
|
+
*/
|
|
41
|
+
nativeRetrial?: boolean;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* A message queue that uses AMQP.
|
|
45
|
+
*
|
|
46
|
+
* @example
|
|
47
|
+
* ``` typescript
|
|
48
|
+
* import { createFederation } from "@fedify/fedify";
|
|
49
|
+
* import { AmqpMessageQueue } from "@fedify/amqp";
|
|
50
|
+
* import { connect } from "amqplib";
|
|
51
|
+
*
|
|
52
|
+
* const federation = createFederation({
|
|
53
|
+
* queue: new AmqpMessageQueue(await connect("amqp://localhost")),
|
|
54
|
+
* // ... other configurations
|
|
55
|
+
* });
|
|
56
|
+
* ```
|
|
57
|
+
*/
|
|
58
|
+
declare class AmqpMessageQueue implements MessageQueue {
|
|
59
|
+
#private;
|
|
60
|
+
readonly nativeRetrial: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Creates a new `AmqpMessageQueue`.
|
|
63
|
+
* @param connection A connection to the AMQP server.
|
|
64
|
+
* @param options Options for the message queue.
|
|
65
|
+
*/
|
|
66
|
+
constructor(connection: ChannelModel, options?: AmqpMessageQueueOptions);
|
|
67
|
+
enqueue(message: any, options?: MessageQueueEnqueueOptions): Promise<void>;
|
|
68
|
+
enqueueMany(messages: any[], options?: MessageQueueEnqueueOptions): Promise<void>;
|
|
69
|
+
listen(handler: (message: any) => void | Promise<void>, options?: MessageQueueListenOptions): Promise<void>;
|
|
70
|
+
}
|
|
71
|
+
//#endregion
|
|
72
|
+
export { AmqpMessageQueue, AmqpMessageQueueOptions };
|
package/dist/mod.js
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { Buffer } from "node:buffer";
|
|
2
|
+
|
|
3
|
+
//#region mq.ts
|
|
4
|
+
/**
|
|
5
|
+
* A message queue that uses AMQP.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ``` typescript
|
|
9
|
+
* import { createFederation } from "@fedify/fedify";
|
|
10
|
+
* import { AmqpMessageQueue } from "@fedify/amqp";
|
|
11
|
+
* import { connect } from "amqplib";
|
|
12
|
+
*
|
|
13
|
+
* const federation = createFederation({
|
|
14
|
+
* queue: new AmqpMessageQueue(await connect("amqp://localhost")),
|
|
15
|
+
* // ... other configurations
|
|
16
|
+
* });
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
var AmqpMessageQueue = class {
|
|
20
|
+
#connection;
|
|
21
|
+
#queue;
|
|
22
|
+
#delayedQueuePrefix;
|
|
23
|
+
#durable;
|
|
24
|
+
#senderChannel;
|
|
25
|
+
nativeRetrial;
|
|
26
|
+
/**
|
|
27
|
+
* Creates a new `AmqpMessageQueue`.
|
|
28
|
+
* @param connection A connection to the AMQP server.
|
|
29
|
+
* @param options Options for the message queue.
|
|
30
|
+
*/
|
|
31
|
+
constructor(connection, options = {}) {
|
|
32
|
+
this.#connection = connection;
|
|
33
|
+
this.#queue = options.queue ?? "fedify_queue";
|
|
34
|
+
this.#delayedQueuePrefix = options.delayedQueuePrefix ?? "fedify_delayed_";
|
|
35
|
+
this.#durable = options.durable ?? true;
|
|
36
|
+
this.nativeRetrial = options.nativeRetrial ?? false;
|
|
37
|
+
}
|
|
38
|
+
async #prepareQueue(channel) {
|
|
39
|
+
await channel.assertQueue(this.#queue, { durable: this.#durable });
|
|
40
|
+
}
|
|
41
|
+
async #getSenderChannel() {
|
|
42
|
+
if (this.#senderChannel != null) return this.#senderChannel;
|
|
43
|
+
const channel = await this.#connection.createChannel();
|
|
44
|
+
this.#senderChannel = channel;
|
|
45
|
+
this.#prepareQueue(channel);
|
|
46
|
+
return channel;
|
|
47
|
+
}
|
|
48
|
+
async enqueue(message, options) {
|
|
49
|
+
const channel = await this.#getSenderChannel();
|
|
50
|
+
const delay = options?.delay?.total("millisecond");
|
|
51
|
+
let queue;
|
|
52
|
+
if (delay == null || delay <= 0) queue = this.#queue;
|
|
53
|
+
else {
|
|
54
|
+
const delayStr = delay.toLocaleString("en", { useGrouping: false });
|
|
55
|
+
queue = this.#delayedQueuePrefix + delayStr;
|
|
56
|
+
await channel.assertQueue(queue, {
|
|
57
|
+
autoDelete: true,
|
|
58
|
+
durable: this.#durable,
|
|
59
|
+
deadLetterExchange: "",
|
|
60
|
+
deadLetterRoutingKey: this.#queue,
|
|
61
|
+
messageTtl: delay
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
channel.sendToQueue(queue, Buffer.from(JSON.stringify(message), "utf-8"), {
|
|
65
|
+
persistent: this.#durable,
|
|
66
|
+
contentType: "application/json"
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
async enqueueMany(messages, options) {
|
|
70
|
+
const channel = await this.#getSenderChannel();
|
|
71
|
+
const delay = options?.delay?.total("millisecond");
|
|
72
|
+
let queue;
|
|
73
|
+
if (delay == null || delay <= 0) queue = this.#queue;
|
|
74
|
+
else {
|
|
75
|
+
const delayStr = delay.toLocaleString("en", { useGrouping: false });
|
|
76
|
+
queue = this.#delayedQueuePrefix + delayStr;
|
|
77
|
+
await channel.assertQueue(queue, {
|
|
78
|
+
autoDelete: true,
|
|
79
|
+
durable: this.#durable,
|
|
80
|
+
deadLetterExchange: "",
|
|
81
|
+
deadLetterRoutingKey: this.#queue,
|
|
82
|
+
messageTtl: delay
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
for (const message of messages) channel.sendToQueue(queue, Buffer.from(JSON.stringify(message), "utf-8"), {
|
|
86
|
+
persistent: this.#durable,
|
|
87
|
+
contentType: "application/json"
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
async listen(handler, options = {}) {
|
|
91
|
+
const channel = await this.#connection.createChannel();
|
|
92
|
+
await this.#prepareQueue(channel);
|
|
93
|
+
await channel.prefetch(1);
|
|
94
|
+
const reply = await channel.consume(this.#queue, (msg) => {
|
|
95
|
+
if (msg == null) return;
|
|
96
|
+
const message = JSON.parse(msg.content.toString("utf-8"));
|
|
97
|
+
try {
|
|
98
|
+
const result = handler(message);
|
|
99
|
+
if (result instanceof Promise) if (this.nativeRetrial) result.then(() => channel.ack(msg)).catch(() => channel.nack(msg, void 0, true));
|
|
100
|
+
else result.finally(() => channel.ack(msg));
|
|
101
|
+
else if (this.nativeRetrial) channel.ack(msg);
|
|
102
|
+
} catch {
|
|
103
|
+
if (this.nativeRetrial) channel.nack(msg, void 0, true);
|
|
104
|
+
} finally {
|
|
105
|
+
if (!this.nativeRetrial) channel.ack(msg);
|
|
106
|
+
}
|
|
107
|
+
}, { noAck: false });
|
|
108
|
+
return await new Promise((resolve) => {
|
|
109
|
+
if (options.signal?.aborted) resolve();
|
|
110
|
+
options.signal?.addEventListener("abort", () => {
|
|
111
|
+
channel.cancel(reply.consumerTag).then(() => {
|
|
112
|
+
channel.close().then(() => resolve());
|
|
113
|
+
});
|
|
114
|
+
});
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
//#endregion
|
|
120
|
+
export { AmqpMessageQueue };
|
package/mod.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./
|
|
1
|
+
export * from "./mq.ts";
|
|
@@ -14,11 +14,11 @@ if ("Temporal" in globalThis) {
|
|
|
14
14
|
Temporal = temporal.Temporal;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
const
|
|
17
|
+
const AMQP_URL = process.env.AMQP_URL;
|
|
18
|
+
const test = AMQP_URL ? suite(import.meta) : suite(import.meta).skip;
|
|
18
19
|
|
|
19
20
|
function getConnection(): Promise<ChannelModel> {
|
|
20
|
-
|
|
21
|
-
return connect(url ?? "amqp://localhost");
|
|
21
|
+
return connect(AMQP_URL!);
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
test("AmqpMessageQueue", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/amqp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.8.0-dev.924+159b572c",
|
|
4
4
|
"description": "AMQP/RabbitMQ driver for Fedify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fedify",
|
|
@@ -13,15 +13,17 @@
|
|
|
13
13
|
"email": "hong@minhee.org",
|
|
14
14
|
"url": "https://hongminhee.org/"
|
|
15
15
|
},
|
|
16
|
-
"homepage": "https://
|
|
16
|
+
"homepage": "https://fedify.dev/",
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/fedify-dev/
|
|
19
|
+
"url": "git+https://github.com/fedify-dev/fedify.git",
|
|
20
|
+
"directory": "amqp"
|
|
20
21
|
},
|
|
21
22
|
"bugs": {
|
|
22
|
-
"url": "https://github.com/fedify-dev/
|
|
23
|
+
"url": "https://github.com/fedify-dev/fedify/issues"
|
|
23
24
|
},
|
|
24
25
|
"funding": [
|
|
26
|
+
"https://opencollective.com/fedify",
|
|
25
27
|
"https://github.com/sponsors/dahlia"
|
|
26
28
|
],
|
|
27
29
|
"type": "module",
|
|
@@ -36,8 +38,8 @@
|
|
|
36
38
|
"./package.json": "./package.json"
|
|
37
39
|
},
|
|
38
40
|
"peerDependencies": {
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
+
"amqplib": "^0.10.8",
|
|
42
|
+
"@fedify/fedify": "1.8.0-dev.924+159b572c"
|
|
41
43
|
},
|
|
42
44
|
"devDependencies": {
|
|
43
45
|
"@hongminhee/suite": "^0.6.3",
|
|
@@ -45,7 +47,7 @@
|
|
|
45
47
|
"@std/assert": "npm:@jsr/std__assert@^1.0.13",
|
|
46
48
|
"@std/async": "npm:@jsr/std__async@^1.0.13",
|
|
47
49
|
"@types/amqplib": "^0.10.7",
|
|
48
|
-
"tsdown": "^0.12.
|
|
50
|
+
"tsdown": "^0.12.9",
|
|
49
51
|
"typescript": "^5.8.3"
|
|
50
52
|
},
|
|
51
53
|
"scripts": {
|
package/.github/FUNDING.yaml
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
github: dahlia
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
name: main
|
|
2
|
-
on: [push, pull_request]
|
|
3
|
-
|
|
4
|
-
jobs:
|
|
5
|
-
test:
|
|
6
|
-
runs-on: ubuntu-latest
|
|
7
|
-
permissions:
|
|
8
|
-
checks: write
|
|
9
|
-
pull-requests: write
|
|
10
|
-
services:
|
|
11
|
-
rabbitmq:
|
|
12
|
-
image: rabbitmq
|
|
13
|
-
env:
|
|
14
|
-
RABBITMQ_DEFAULT_USER: guest
|
|
15
|
-
RABBITMQ_DEFAULT_PASS: guest
|
|
16
|
-
ports:
|
|
17
|
-
- 5672:5672
|
|
18
|
-
env:
|
|
19
|
-
AMQP_URL: amqp://guest:guest@localhost:5672
|
|
20
|
-
steps:
|
|
21
|
-
- uses: actions/checkout@v4
|
|
22
|
-
- uses: denoland/setup-deno@v1
|
|
23
|
-
with:
|
|
24
|
-
deno-version: v2.x
|
|
25
|
-
- uses: actions/setup-node@v4
|
|
26
|
-
with:
|
|
27
|
-
node-version: latest
|
|
28
|
-
- uses: oven-sh/setup-bun@v1
|
|
29
|
-
with:
|
|
30
|
-
bun-version: latest
|
|
31
|
-
- uses: pnpm/action-setup@v4
|
|
32
|
-
with:
|
|
33
|
-
version: latest
|
|
34
|
-
- run: deno task test --junit-path=.test-report.xml
|
|
35
|
-
- uses: EnricoMi/publish-unit-test-result-action@v2
|
|
36
|
-
if: always()
|
|
37
|
-
with:
|
|
38
|
-
files: .test-report.xml
|
|
39
|
-
- run: deno task check
|
|
40
|
-
- run: pnpm install
|
|
41
|
-
- run: pnpm test
|
|
42
|
-
- run: pnpm test:bun
|
|
43
|
-
|
|
44
|
-
publish:
|
|
45
|
-
if: github.event_name == 'push'
|
|
46
|
-
needs: [test]
|
|
47
|
-
runs-on: ubuntu-latest
|
|
48
|
-
permissions:
|
|
49
|
-
contents: read
|
|
50
|
-
id-token: write
|
|
51
|
-
steps:
|
|
52
|
-
- uses: actions/checkout@v4
|
|
53
|
-
- uses: denoland/setup-deno@v1
|
|
54
|
-
with:
|
|
55
|
-
deno-version: v2.x
|
|
56
|
-
- uses: actions/setup-node@v4
|
|
57
|
-
with:
|
|
58
|
-
node-version: latest
|
|
59
|
-
- uses: pnpm/action-setup@v4
|
|
60
|
-
with:
|
|
61
|
-
version: latest
|
|
62
|
-
- if: github.ref_type == 'branch'
|
|
63
|
-
run: |
|
|
64
|
-
jq \
|
|
65
|
-
--arg build "$GITHUB_RUN_NUMBER" \
|
|
66
|
-
--arg commit "${GITHUB_SHA::8}" \
|
|
67
|
-
'.version = .version + "-dev." + $build + "+" + $commit' \
|
|
68
|
-
deno.json > deno.json.tmp
|
|
69
|
-
mv deno.json.tmp deno.json
|
|
70
|
-
jq \
|
|
71
|
-
--arg build "$GITHUB_RUN_NUMBER" \
|
|
72
|
-
--arg commit "${GITHUB_SHA::8}" \
|
|
73
|
-
'.version = .version + "-dev." + $build + "+" + $commit' \
|
|
74
|
-
package.json > package.json.tmp
|
|
75
|
-
mv package.json.tmp package.json
|
|
76
|
-
- if: github.ref_type == 'tag'
|
|
77
|
-
run: |
|
|
78
|
-
set -ex
|
|
79
|
-
[[ "$(jq -r .version deno.json)" = "$GITHUB_REF_NAME" ]]
|
|
80
|
-
[[ "$(jq -r .version package.json)" = "$GITHUB_REF_NAME" ]]
|
|
81
|
-
- run: pnpm install && pnpm build
|
|
82
|
-
- run: |
|
|
83
|
-
set -ex
|
|
84
|
-
pnpm config set //registry.npmjs.org/:_authToken "$NPM_AUTH_TOKEN"
|
|
85
|
-
if [[ "$GITHUB_REF_TYPE" = "tag" ]]; then
|
|
86
|
-
pnpm publish --no-git-checks --access public
|
|
87
|
-
else
|
|
88
|
-
pnpm publish --no-git-checks --access public --tag dev
|
|
89
|
-
fi
|
|
90
|
-
env:
|
|
91
|
-
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
92
|
-
NPM_CONFIG_PROVENANCE: "true"
|
|
93
|
-
- run: deno publish --allow-dirty
|
package/.vscode/extensions.json
DELETED
package/.vscode/settings.json
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cSpell.enabled": false,
|
|
3
|
-
"deno.enable": true,
|
|
4
|
-
"deno.unstable": [
|
|
5
|
-
"temporal"
|
|
6
|
-
],
|
|
7
|
-
"editor.detectIndentation": false,
|
|
8
|
-
"editor.indentSize": 2,
|
|
9
|
-
"editor.insertSpaces": true,
|
|
10
|
-
"files.eol": "\n",
|
|
11
|
-
"files.insertFinalNewline": true,
|
|
12
|
-
"files.trimFinalNewlines": true,
|
|
13
|
-
"[json]": {
|
|
14
|
-
"editor.defaultFormatter": "vscode.json-language-features",
|
|
15
|
-
"editor.formatOnSave": true
|
|
16
|
-
},
|
|
17
|
-
"[jsonc]": {
|
|
18
|
-
"editor.defaultFormatter": "vscode.json-language-features",
|
|
19
|
-
"editor.formatOnSave": true
|
|
20
|
-
},
|
|
21
|
-
"[typescript]": {
|
|
22
|
-
"editor.defaultFormatter": "denoland.vscode-deno",
|
|
23
|
-
"editor.formatOnSave": true,
|
|
24
|
-
"editor.codeActionsOnSave": {
|
|
25
|
-
"source.sortImports": "always"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"cSpell.words": [
|
|
29
|
-
"fedify",
|
|
30
|
-
"unlisten",
|
|
31
|
-
"UNLOGGED"
|
|
32
|
-
]
|
|
33
|
-
}
|
package/.zed/settings.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"deno": {
|
|
3
|
-
"enable": true
|
|
4
|
-
},
|
|
5
|
-
"ensure_final_newline_on_save": true,
|
|
6
|
-
"format_on_save": "on",
|
|
7
|
-
"formatter": "language_server",
|
|
8
|
-
"languages": {
|
|
9
|
-
"TypeScript": {
|
|
10
|
-
"language_servers": [
|
|
11
|
-
"deno",
|
|
12
|
-
"!typescript-language-server",
|
|
13
|
-
"!vtsls",
|
|
14
|
-
"!eslint",
|
|
15
|
-
"..."
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
|
-
"TSX": {
|
|
19
|
-
"language_servers": [
|
|
20
|
-
"deno",
|
|
21
|
-
"!typescript-language-server",
|
|
22
|
-
"!vtsls",
|
|
23
|
-
"!eslint",
|
|
24
|
-
"..."
|
|
25
|
-
]
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"show_wrap_guides": true,
|
|
29
|
-
"wrap_guides": [80]
|
|
30
|
-
}
|
package/deno.lock
DELETED
|
@@ -1,664 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "5",
|
|
3
|
-
"specifiers": {
|
|
4
|
-
"jsr:@es-toolkit/es-toolkit@^1.38.0": "1.39.5",
|
|
5
|
-
"jsr:@fedify/fedify@^1.7.0": "1.7.0",
|
|
6
|
-
"jsr:@hugoalh/http-header-link@^1.0.2": "1.0.3",
|
|
7
|
-
"jsr:@hugoalh/is-string-singleline@^1.0.4": "1.0.5",
|
|
8
|
-
"jsr:@logtape/logtape@1": "1.0.0",
|
|
9
|
-
"npm:@hongminhee/suite@~0.6.3": "0.6.3",
|
|
10
|
-
"npm:@js-temporal/polyfill@~0.5.1": "0.5.1",
|
|
11
|
-
"npm:@multiformats/base-x@^4.0.1": "4.0.1",
|
|
12
|
-
"npm:@opentelemetry/api@^1.9.0": "1.9.0",
|
|
13
|
-
"npm:@opentelemetry/semantic-conventions@^1.27.0": "1.34.0",
|
|
14
|
-
"npm:@phensley/language-tag@^1.9.0": "1.12.2",
|
|
15
|
-
"npm:@types/amqplib@~0.10.7": "0.10.7",
|
|
16
|
-
"npm:@types/node@*": "22.15.15",
|
|
17
|
-
"npm:amqplib@~0.10.8": "0.10.8",
|
|
18
|
-
"npm:asn1js@^3.0.5": "3.0.6",
|
|
19
|
-
"npm:byte-encodings@^1.0.11": "1.0.11",
|
|
20
|
-
"npm:json-canon@^1.0.1": "1.0.1",
|
|
21
|
-
"npm:jsonld@^8.3.2": "8.3.3",
|
|
22
|
-
"npm:multicodec@^3.2.1": "3.2.1",
|
|
23
|
-
"npm:pkijs@^3.2.4": "3.2.5",
|
|
24
|
-
"npm:structured-field-values@^2.0.4": "2.0.4",
|
|
25
|
-
"npm:tsdown@~0.12.7": "0.12.8_typescript@5.8.3_rolldown@1.0.0-beta.15",
|
|
26
|
-
"npm:typescript@^5.8.3": "5.8.3",
|
|
27
|
-
"npm:uri-template-router@^0.0.17": "0.0.17",
|
|
28
|
-
"npm:url-template@^3.1.1": "3.1.1"
|
|
29
|
-
},
|
|
30
|
-
"jsr": {
|
|
31
|
-
"@es-toolkit/es-toolkit@1.39.5": {
|
|
32
|
-
"integrity": "f16bef4e1eff94f74981d8ad04dab27d35568bc7088454a0a0269d6c36b215c0"
|
|
33
|
-
},
|
|
34
|
-
"@fedify/fedify@1.7.0": {
|
|
35
|
-
"integrity": "fe79edc603b21dfb0400bb7c4d9e3d5cab3117f7701ad1d30ace6a60b3f0451a",
|
|
36
|
-
"dependencies": [
|
|
37
|
-
"jsr:@es-toolkit/es-toolkit",
|
|
38
|
-
"jsr:@hugoalh/http-header-link",
|
|
39
|
-
"jsr:@logtape/logtape",
|
|
40
|
-
"npm:@multiformats/base-x",
|
|
41
|
-
"npm:@opentelemetry/api",
|
|
42
|
-
"npm:@opentelemetry/semantic-conventions",
|
|
43
|
-
"npm:@phensley/language-tag",
|
|
44
|
-
"npm:asn1js",
|
|
45
|
-
"npm:byte-encodings",
|
|
46
|
-
"npm:json-canon",
|
|
47
|
-
"npm:jsonld",
|
|
48
|
-
"npm:multicodec",
|
|
49
|
-
"npm:pkijs",
|
|
50
|
-
"npm:structured-field-values",
|
|
51
|
-
"npm:uri-template-router",
|
|
52
|
-
"npm:url-template"
|
|
53
|
-
]
|
|
54
|
-
},
|
|
55
|
-
"@hugoalh/http-header-link@1.0.3": {
|
|
56
|
-
"integrity": "3372096a73d755e3351f7fbd7155db7725874c2682a594a655580e3866563024",
|
|
57
|
-
"dependencies": [
|
|
58
|
-
"jsr:@hugoalh/is-string-singleline"
|
|
59
|
-
]
|
|
60
|
-
},
|
|
61
|
-
"@hugoalh/is-string-singleline@1.0.5": {
|
|
62
|
-
"integrity": "3409f64eaad51e4afccea0f21853cedf7b0b5b147e3606e585e5e88ba2b03b32"
|
|
63
|
-
},
|
|
64
|
-
"@logtape/logtape@1.0.0": {
|
|
65
|
-
"integrity": "30e23091ed75daac9eaff83688a90ccfbb7e75e79d0344d5a6e9585e6f653f92"
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
"npm": {
|
|
69
|
-
"@babel/generator@7.27.5": {
|
|
70
|
-
"integrity": "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==",
|
|
71
|
-
"dependencies": [
|
|
72
|
-
"@babel/parser",
|
|
73
|
-
"@babel/types",
|
|
74
|
-
"@jridgewell/gen-mapping",
|
|
75
|
-
"@jridgewell/trace-mapping",
|
|
76
|
-
"jsesc"
|
|
77
|
-
]
|
|
78
|
-
},
|
|
79
|
-
"@babel/helper-string-parser@7.27.1": {
|
|
80
|
-
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="
|
|
81
|
-
},
|
|
82
|
-
"@babel/helper-validator-identifier@7.27.1": {
|
|
83
|
-
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="
|
|
84
|
-
},
|
|
85
|
-
"@babel/parser@7.27.5": {
|
|
86
|
-
"integrity": "sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==",
|
|
87
|
-
"dependencies": [
|
|
88
|
-
"@babel/types"
|
|
89
|
-
],
|
|
90
|
-
"bin": true
|
|
91
|
-
},
|
|
92
|
-
"@babel/types@7.27.6": {
|
|
93
|
-
"integrity": "sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==",
|
|
94
|
-
"dependencies": [
|
|
95
|
-
"@babel/helper-string-parser",
|
|
96
|
-
"@babel/helper-validator-identifier"
|
|
97
|
-
]
|
|
98
|
-
},
|
|
99
|
-
"@digitalbazaar/http-client@3.4.1_ky@0.33.3": {
|
|
100
|
-
"integrity": "sha512-Ahk1N+s7urkgj7WvvUND5f8GiWEPfUw0D41hdElaqLgu8wZScI8gdI0q+qWw5N1d35x7GCRH2uk9mi+Uzo9M3g==",
|
|
101
|
-
"dependencies": [
|
|
102
|
-
"ky",
|
|
103
|
-
"ky-universal",
|
|
104
|
-
"undici"
|
|
105
|
-
]
|
|
106
|
-
},
|
|
107
|
-
"@emnapi/core@1.4.3": {
|
|
108
|
-
"integrity": "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==",
|
|
109
|
-
"dependencies": [
|
|
110
|
-
"@emnapi/wasi-threads",
|
|
111
|
-
"tslib"
|
|
112
|
-
]
|
|
113
|
-
},
|
|
114
|
-
"@emnapi/runtime@1.4.3": {
|
|
115
|
-
"integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==",
|
|
116
|
-
"dependencies": [
|
|
117
|
-
"tslib"
|
|
118
|
-
]
|
|
119
|
-
},
|
|
120
|
-
"@emnapi/wasi-threads@1.0.2": {
|
|
121
|
-
"integrity": "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==",
|
|
122
|
-
"dependencies": [
|
|
123
|
-
"tslib"
|
|
124
|
-
]
|
|
125
|
-
},
|
|
126
|
-
"@fastify/busboy@2.1.1": {
|
|
127
|
-
"integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA=="
|
|
128
|
-
},
|
|
129
|
-
"@hongminhee/suite@0.6.3": {
|
|
130
|
-
"integrity": "sha512-jW0scPczSP5Mksq49c9stYIApHGijodCFvpKRcFAWImn5WRs4kVlzNwz9QpblaAvoErN8UsfP7OZl3mIk0VoLA=="
|
|
131
|
-
},
|
|
132
|
-
"@jridgewell/gen-mapping@0.3.8": {
|
|
133
|
-
"integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
|
|
134
|
-
"dependencies": [
|
|
135
|
-
"@jridgewell/set-array",
|
|
136
|
-
"@jridgewell/sourcemap-codec",
|
|
137
|
-
"@jridgewell/trace-mapping"
|
|
138
|
-
]
|
|
139
|
-
},
|
|
140
|
-
"@jridgewell/resolve-uri@3.1.2": {
|
|
141
|
-
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="
|
|
142
|
-
},
|
|
143
|
-
"@jridgewell/set-array@1.2.1": {
|
|
144
|
-
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="
|
|
145
|
-
},
|
|
146
|
-
"@jridgewell/sourcemap-codec@1.5.0": {
|
|
147
|
-
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
|
|
148
|
-
},
|
|
149
|
-
"@jridgewell/trace-mapping@0.3.25": {
|
|
150
|
-
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
|
|
151
|
-
"dependencies": [
|
|
152
|
-
"@jridgewell/resolve-uri",
|
|
153
|
-
"@jridgewell/sourcemap-codec"
|
|
154
|
-
]
|
|
155
|
-
},
|
|
156
|
-
"@js-temporal/polyfill@0.5.1": {
|
|
157
|
-
"integrity": "sha512-hloP58zRVCRSpgDxmqCWJNlizAlUgJFqG2ypq79DCvyv9tHjRYMDOcPFjzfl/A1/YxDvRCZz8wvZvmapQnKwFQ==",
|
|
158
|
-
"dependencies": [
|
|
159
|
-
"jsbi"
|
|
160
|
-
]
|
|
161
|
-
},
|
|
162
|
-
"@multiformats/base-x@4.0.1": {
|
|
163
|
-
"integrity": "sha512-eMk0b9ReBbV23xXU693TAIrLyeO5iTgBZGSJfpqriG8UkYvr/hC9u9pyMlAakDNHWmbhMZCDs6KQO0jzKD8OTw=="
|
|
164
|
-
},
|
|
165
|
-
"@napi-rs/wasm-runtime@0.2.11": {
|
|
166
|
-
"integrity": "sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA==",
|
|
167
|
-
"dependencies": [
|
|
168
|
-
"@emnapi/core",
|
|
169
|
-
"@emnapi/runtime",
|
|
170
|
-
"@tybys/wasm-util"
|
|
171
|
-
]
|
|
172
|
-
},
|
|
173
|
-
"@noble/hashes@1.8.0": {
|
|
174
|
-
"integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A=="
|
|
175
|
-
},
|
|
176
|
-
"@opentelemetry/api@1.9.0": {
|
|
177
|
-
"integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg=="
|
|
178
|
-
},
|
|
179
|
-
"@opentelemetry/semantic-conventions@1.34.0": {
|
|
180
|
-
"integrity": "sha512-aKcOkyrorBGlajjRdVoJWHTxfxO1vCNHLJVlSDaRHDIdjU+pX8IYQPvPDkYiujKLbRnWU+1TBwEt0QRgSm4SGA=="
|
|
181
|
-
},
|
|
182
|
-
"@oxc-project/runtime@0.72.3": {
|
|
183
|
-
"integrity": "sha512-FtOS+0v7rZcnjXzYTTqv1vu/KDptD1UztFgoZkYBGe/6TcNFm+SP/jQoLvzau1SPir95WgDOBOUm2Gmsm+bQag=="
|
|
184
|
-
},
|
|
185
|
-
"@oxc-project/types@0.72.3": {
|
|
186
|
-
"integrity": "sha512-CfAC4wrmMkUoISpQkFAIfMVvlPfQV3xg7ZlcqPXPOIMQhdKIId44G8W0mCPgtpWdFFAyJ+SFtiM+9vbyCkoVng=="
|
|
187
|
-
},
|
|
188
|
-
"@phensley/language-tag@1.12.2": {
|
|
189
|
-
"integrity": "sha512-jCtgmqZ7+32FgPaDB/j/uFTFv/kU+1Xk/QiUxusTPVP1geDCXmrkJgzSipipiBH3Ln8tPOzmbVJEF0HHd03vzg==",
|
|
190
|
-
"dependencies": [
|
|
191
|
-
"tslib"
|
|
192
|
-
]
|
|
193
|
-
},
|
|
194
|
-
"@quansync/fs@0.1.3": {
|
|
195
|
-
"integrity": "sha512-G0OnZbMWEs5LhDyqy2UL17vGhSVHkQIfVojMtEWVenvj0V5S84VBgy86kJIuNsGDp2p7sTKlpSIpBUWdC35OKg==",
|
|
196
|
-
"dependencies": [
|
|
197
|
-
"quansync"
|
|
198
|
-
]
|
|
199
|
-
},
|
|
200
|
-
"@rolldown/binding-darwin-arm64@1.0.0-beta.15": {
|
|
201
|
-
"integrity": "sha512-YInZppDBLp5DadbJZGc7xBfDrMCSj3P6i2rPlvOCMlvjBQxJi2kX8Jquh+LufsWUiHD3JsvvH5EuUUc/tF5fkA==",
|
|
202
|
-
"os": ["darwin"],
|
|
203
|
-
"cpu": ["arm64"]
|
|
204
|
-
},
|
|
205
|
-
"@rolldown/binding-darwin-x64@1.0.0-beta.15": {
|
|
206
|
-
"integrity": "sha512-Zwv8KHU/XdVwLseHG6slJ0FAFklPpiO0sjNvhrcMp1X3F2ajPzUdIO8Cnu3KLmX1GWVSvu6q1kyARLUqPvlh7Q==",
|
|
207
|
-
"os": ["darwin"],
|
|
208
|
-
"cpu": ["x64"]
|
|
209
|
-
},
|
|
210
|
-
"@rolldown/binding-freebsd-x64@1.0.0-beta.15": {
|
|
211
|
-
"integrity": "sha512-FwhNC23Fz9ldHW1/rX4QaoQe4kyOybCgxO9eglue3cbb3ol28KWpQl3xJfvXc9+O6PDefAs4oFBCbtTh8seiUw==",
|
|
212
|
-
"os": ["freebsd"],
|
|
213
|
-
"cpu": ["x64"]
|
|
214
|
-
},
|
|
215
|
-
"@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.15": {
|
|
216
|
-
"integrity": "sha512-E60pNliWl4j7EFEVX2oeJZ5VzR+NG6fvDJoqfqRfCl8wtKIf9E1WPWVQIrT+zkz+Fhc5op8g7h25z6rtxsDy9g==",
|
|
217
|
-
"os": ["linux"],
|
|
218
|
-
"cpu": ["arm"]
|
|
219
|
-
},
|
|
220
|
-
"@rolldown/binding-linux-arm64-gnu@1.0.0-beta.15": {
|
|
221
|
-
"integrity": "sha512-d+qo1LZ/a3EcQW08byIIZy0PBthmG/7dr69pifmNIet/azWR8jbceQaRFFczVc/NwVV3fsZDCmjG8mgJzsNEAg==",
|
|
222
|
-
"os": ["linux"],
|
|
223
|
-
"cpu": ["arm64"]
|
|
224
|
-
},
|
|
225
|
-
"@rolldown/binding-linux-arm64-musl@1.0.0-beta.15": {
|
|
226
|
-
"integrity": "sha512-P1hbtYF+5ftJI2Ergs4iARbAk6Xd6WnTQb3CF9kjN3KfJTsRYdo5/fvU8Lz/gzhZVvkCXXH3NxDd9308UBO8cw==",
|
|
227
|
-
"os": ["linux"],
|
|
228
|
-
"cpu": ["arm64"]
|
|
229
|
-
},
|
|
230
|
-
"@rolldown/binding-linux-x64-gnu@1.0.0-beta.15": {
|
|
231
|
-
"integrity": "sha512-Q9NM9uMFN9cjcrW7gd9U087B5WzkEj9dQQHOgoENZSy+vYJYS2fINCIG40ljEVC6jXmVrJgUhJKv7elRZM1nng==",
|
|
232
|
-
"os": ["linux"],
|
|
233
|
-
"cpu": ["x64"]
|
|
234
|
-
},
|
|
235
|
-
"@rolldown/binding-linux-x64-musl@1.0.0-beta.15": {
|
|
236
|
-
"integrity": "sha512-1tuCWuR8gx9PyW2pxAx2ZqnOnwhoY6NWBVP6ZmrjCKQ16NclYc61BzegFXSdugCy8w1QpBPT8/c5oh2W4E5aeA==",
|
|
237
|
-
"os": ["linux"],
|
|
238
|
-
"cpu": ["x64"]
|
|
239
|
-
},
|
|
240
|
-
"@rolldown/binding-wasm32-wasi@1.0.0-beta.15": {
|
|
241
|
-
"integrity": "sha512-zrSeYrpTf27hRxMLh0qpkCoWgzRKG8EyR6o09Zt9xkqCOeE5tEK/S3jV1Nii9WSqVCWFRA+OYxKzMNoykV590g==",
|
|
242
|
-
"dependencies": [
|
|
243
|
-
"@napi-rs/wasm-runtime"
|
|
244
|
-
],
|
|
245
|
-
"cpu": ["wasm32"]
|
|
246
|
-
},
|
|
247
|
-
"@rolldown/binding-win32-arm64-msvc@1.0.0-beta.15": {
|
|
248
|
-
"integrity": "sha512-diR41DsMUnkvb9hvW8vuIrA0WaacAN1fu6lPseXhYifAOZN6kvxEwKn7Xib8i0zjdrYErLv7GNSQ48W+xiNOnA==",
|
|
249
|
-
"os": ["win32"],
|
|
250
|
-
"cpu": ["arm64"]
|
|
251
|
-
},
|
|
252
|
-
"@rolldown/binding-win32-ia32-msvc@1.0.0-beta.15": {
|
|
253
|
-
"integrity": "sha512-oCbbcDC3Lk8YgdxCkG23UqVrvXVvllIBgmmwq89bhq5okPP899OI/P+oTTDsUTbhljzNq1pH8a+mR6YBxAFfvw==",
|
|
254
|
-
"os": ["win32"],
|
|
255
|
-
"cpu": ["ia32"]
|
|
256
|
-
},
|
|
257
|
-
"@rolldown/binding-win32-x64-msvc@1.0.0-beta.15": {
|
|
258
|
-
"integrity": "sha512-w5hVsOv3dzKo10wAXizmnDvUo1yasn/ps+mcn9H9TiJ/GeRE5/15Y6hG6vUQYRQNLVbYRHUt2qG0MyOoasPcHg==",
|
|
259
|
-
"os": ["win32"],
|
|
260
|
-
"cpu": ["x64"]
|
|
261
|
-
},
|
|
262
|
-
"@rolldown/pluginutils@1.0.0-beta.15": {
|
|
263
|
-
"integrity": "sha512-lvFtIbidq5EqyAAeiVk41ZNjGRgUoGRBIuqpe1VRJ7R8Av7TLAgGWAwGlHNhO7MFkl7MNRX350CsTtIWIYkNIQ=="
|
|
264
|
-
},
|
|
265
|
-
"@tybys/wasm-util@0.9.0": {
|
|
266
|
-
"integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==",
|
|
267
|
-
"dependencies": [
|
|
268
|
-
"tslib"
|
|
269
|
-
]
|
|
270
|
-
},
|
|
271
|
-
"@types/amqplib@0.10.7": {
|
|
272
|
-
"integrity": "sha512-IVj3avf9AQd2nXCx0PGk/OYq7VmHiyNxWFSb5HhU9ATh+i+gHWvVcljFTcTWQ/dyHJCTrzCixde+r/asL2ErDA==",
|
|
273
|
-
"dependencies": [
|
|
274
|
-
"@types/node"
|
|
275
|
-
]
|
|
276
|
-
},
|
|
277
|
-
"@types/node@22.15.15": {
|
|
278
|
-
"integrity": "sha512-R5muMcZob3/Jjchn5LcO8jdKwSCbzqmPB6ruBxMcf9kbxtniZHP327s6C37iOfuw8mbKK3cAQa7sEl7afLrQ8A==",
|
|
279
|
-
"dependencies": [
|
|
280
|
-
"undici-types"
|
|
281
|
-
]
|
|
282
|
-
},
|
|
283
|
-
"abort-controller@3.0.0": {
|
|
284
|
-
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
|
|
285
|
-
"dependencies": [
|
|
286
|
-
"event-target-shim"
|
|
287
|
-
]
|
|
288
|
-
},
|
|
289
|
-
"amqplib@0.10.8": {
|
|
290
|
-
"integrity": "sha512-Tfn1O9sFgAP8DqeMEpt2IacsVTENBpblB3SqLdn0jK2AeX8iyCvbptBc8lyATT9bQ31MsjVwUSQ1g8f4jHOUfw==",
|
|
291
|
-
"dependencies": [
|
|
292
|
-
"buffer-more-ints",
|
|
293
|
-
"url-parse"
|
|
294
|
-
]
|
|
295
|
-
},
|
|
296
|
-
"ansis@4.1.0": {
|
|
297
|
-
"integrity": "sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w=="
|
|
298
|
-
},
|
|
299
|
-
"asn1js@3.0.6": {
|
|
300
|
-
"integrity": "sha512-UOCGPYbl0tv8+006qks/dTgV9ajs97X2p0FAbyS2iyCRrmLSRolDaHdp+v/CLgnzHc3fVB+CwYiUmei7ndFcgA==",
|
|
301
|
-
"dependencies": [
|
|
302
|
-
"pvtsutils",
|
|
303
|
-
"pvutils",
|
|
304
|
-
"tslib"
|
|
305
|
-
]
|
|
306
|
-
},
|
|
307
|
-
"ast-kit@2.1.0": {
|
|
308
|
-
"integrity": "sha512-ROM2LlXbZBZVk97crfw8PGDOBzzsJvN2uJCmwswvPUNyfH14eg90mSN3xNqsri1JS1G9cz0VzeDUhxJkTrr4Ew==",
|
|
309
|
-
"dependencies": [
|
|
310
|
-
"@babel/parser",
|
|
311
|
-
"pathe"
|
|
312
|
-
]
|
|
313
|
-
},
|
|
314
|
-
"birpc@2.4.0": {
|
|
315
|
-
"integrity": "sha512-5IdNxTyhXHv2UlgnPHQ0h+5ypVmkrYHzL8QT+DwFZ//2N/oNV8Ch+BCRmTJ3x6/z9Axo/cXYBc9eprsUVK/Jsg=="
|
|
316
|
-
},
|
|
317
|
-
"buffer-more-ints@1.0.0": {
|
|
318
|
-
"integrity": "sha512-EMetuGFz5SLsT0QTnXzINh4Ksr+oo4i+UGTXEshiGCQWnsgSs7ZhJ8fzlwQ+OzEMs0MpDAMr1hxnblp5a4vcHg=="
|
|
319
|
-
},
|
|
320
|
-
"byte-encodings@1.0.11": {
|
|
321
|
-
"integrity": "sha512-+/xR2+ySc2yKGtud3DGkGSH1DNwHfRVK0KTnMhoeH36/KwG+tHQ4d9B3jxJFq7dW27YcfudkywaYJRPA2dmxzg=="
|
|
322
|
-
},
|
|
323
|
-
"bytestreamjs@2.0.1": {
|
|
324
|
-
"integrity": "sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ=="
|
|
325
|
-
},
|
|
326
|
-
"cac@6.7.14": {
|
|
327
|
-
"integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ=="
|
|
328
|
-
},
|
|
329
|
-
"canonicalize@1.0.8": {
|
|
330
|
-
"integrity": "sha512-0CNTVCLZggSh7bc5VkX5WWPWO+cyZbNd07IHIsSXLia/eAq+r836hgk+8BKoEh7949Mda87VUOitx5OddVj64A=="
|
|
331
|
-
},
|
|
332
|
-
"chokidar@4.0.3": {
|
|
333
|
-
"integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
|
|
334
|
-
"dependencies": [
|
|
335
|
-
"readdirp"
|
|
336
|
-
]
|
|
337
|
-
},
|
|
338
|
-
"data-uri-to-buffer@4.0.1": {
|
|
339
|
-
"integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A=="
|
|
340
|
-
},
|
|
341
|
-
"debug@4.4.1": {
|
|
342
|
-
"integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
|
|
343
|
-
"dependencies": [
|
|
344
|
-
"ms"
|
|
345
|
-
]
|
|
346
|
-
},
|
|
347
|
-
"defu@6.1.4": {
|
|
348
|
-
"integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg=="
|
|
349
|
-
},
|
|
350
|
-
"diff@8.0.2": {
|
|
351
|
-
"integrity": "sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg=="
|
|
352
|
-
},
|
|
353
|
-
"dts-resolver@2.1.1": {
|
|
354
|
-
"integrity": "sha512-3BiGFhB6mj5Kv+W2vdJseQUYW+SKVzAFJL6YNP6ursbrwy1fXHRotfHi3xLNxe4wZl/K8qbAFeCDjZLjzqxxRw=="
|
|
355
|
-
},
|
|
356
|
-
"empathic@1.1.0": {
|
|
357
|
-
"integrity": "sha512-rsPft6CK3eHtrlp9Y5ALBb+hfK+DWnA4WFebbazxjWyx8vSm3rZeoM3z9irsjcqO3PYRzlfv27XIB4tz2DV7RA=="
|
|
358
|
-
},
|
|
359
|
-
"event-target-shim@5.0.1": {
|
|
360
|
-
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
|
|
361
|
-
},
|
|
362
|
-
"fdir@6.4.6_picomatch@4.0.2": {
|
|
363
|
-
"integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
|
|
364
|
-
"dependencies": [
|
|
365
|
-
"picomatch"
|
|
366
|
-
],
|
|
367
|
-
"optionalPeers": [
|
|
368
|
-
"picomatch"
|
|
369
|
-
]
|
|
370
|
-
},
|
|
371
|
-
"fetch-blob@3.2.0": {
|
|
372
|
-
"integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
|
|
373
|
-
"dependencies": [
|
|
374
|
-
"node-domexception",
|
|
375
|
-
"web-streams-polyfill"
|
|
376
|
-
]
|
|
377
|
-
},
|
|
378
|
-
"formdata-polyfill@4.0.10": {
|
|
379
|
-
"integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
|
|
380
|
-
"dependencies": [
|
|
381
|
-
"fetch-blob"
|
|
382
|
-
]
|
|
383
|
-
},
|
|
384
|
-
"get-tsconfig@4.10.1": {
|
|
385
|
-
"integrity": "sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==",
|
|
386
|
-
"dependencies": [
|
|
387
|
-
"resolve-pkg-maps"
|
|
388
|
-
]
|
|
389
|
-
},
|
|
390
|
-
"hookable@5.5.3": {
|
|
391
|
-
"integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ=="
|
|
392
|
-
},
|
|
393
|
-
"jiti@2.4.2": {
|
|
394
|
-
"integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
|
|
395
|
-
"bin": true
|
|
396
|
-
},
|
|
397
|
-
"jsbi@4.3.2": {
|
|
398
|
-
"integrity": "sha512-9fqMSQbhJykSeii05nxKl4m6Eqn2P6rOlYiS+C5Dr/HPIU/7yZxu5qzbs40tgaFORiw2Amd0mirjxatXYMkIew=="
|
|
399
|
-
},
|
|
400
|
-
"jsesc@3.1.0": {
|
|
401
|
-
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
|
402
|
-
"bin": true
|
|
403
|
-
},
|
|
404
|
-
"json-canon@1.0.1": {
|
|
405
|
-
"integrity": "sha512-PQcj4PFOTAQxE8PgoQ4KrM0DcKWZd7S3ELOON8rmysl9I8JuFMgxu1H9v+oZsTPjjkpeS3IHPwLjr7d+gKygnw=="
|
|
406
|
-
},
|
|
407
|
-
"jsonld@8.3.3": {
|
|
408
|
-
"integrity": "sha512-9YcilrF+dLfg9NTEof/mJLMtbdX1RJ8dbWtJgE00cMOIohb1lIyJl710vFiTaiHTl6ZYODJuBd32xFvUhmv3kg==",
|
|
409
|
-
"dependencies": [
|
|
410
|
-
"@digitalbazaar/http-client",
|
|
411
|
-
"canonicalize",
|
|
412
|
-
"lru-cache",
|
|
413
|
-
"rdf-canonize"
|
|
414
|
-
]
|
|
415
|
-
},
|
|
416
|
-
"ky-universal@0.11.0_ky@0.33.3": {
|
|
417
|
-
"integrity": "sha512-65KyweaWvk+uKKkCrfAf+xqN2/epw1IJDtlyCPxYffFCMR8u1sp2U65NtWpnozYfZxQ6IUzIlvUcw+hQ82U2Xw==",
|
|
418
|
-
"dependencies": [
|
|
419
|
-
"abort-controller",
|
|
420
|
-
"ky",
|
|
421
|
-
"node-fetch"
|
|
422
|
-
]
|
|
423
|
-
},
|
|
424
|
-
"ky@0.33.3": {
|
|
425
|
-
"integrity": "sha512-CasD9OCEQSFIam2U8efFK81Yeg8vNMTBUqtMOHlrcWQHqUX3HeCl9Dr31u4toV7emlH8Mymk5+9p0lL6mKb/Xw=="
|
|
426
|
-
},
|
|
427
|
-
"lru-cache@6.0.0": {
|
|
428
|
-
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
429
|
-
"dependencies": [
|
|
430
|
-
"yallist"
|
|
431
|
-
]
|
|
432
|
-
},
|
|
433
|
-
"ms@2.1.3": {
|
|
434
|
-
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
|
|
435
|
-
},
|
|
436
|
-
"multicodec@3.2.1": {
|
|
437
|
-
"integrity": "sha512-+expTPftro8VAW8kfvcuNNNBgb9gPeNYV9dn+z1kJRWF2vih+/S79f2RVeIwmrJBUJ6NT9IUPWnZDQvegEh5pw==",
|
|
438
|
-
"dependencies": [
|
|
439
|
-
"uint8arrays",
|
|
440
|
-
"varint"
|
|
441
|
-
],
|
|
442
|
-
"deprecated": true
|
|
443
|
-
},
|
|
444
|
-
"multiformats@9.9.0": {
|
|
445
|
-
"integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg=="
|
|
446
|
-
},
|
|
447
|
-
"node-domexception@1.0.0": {
|
|
448
|
-
"integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
|
|
449
|
-
"deprecated": true
|
|
450
|
-
},
|
|
451
|
-
"node-fetch@3.3.2": {
|
|
452
|
-
"integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
|
|
453
|
-
"dependencies": [
|
|
454
|
-
"data-uri-to-buffer",
|
|
455
|
-
"fetch-blob",
|
|
456
|
-
"formdata-polyfill"
|
|
457
|
-
]
|
|
458
|
-
},
|
|
459
|
-
"pathe@2.0.3": {
|
|
460
|
-
"integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="
|
|
461
|
-
},
|
|
462
|
-
"picomatch@4.0.2": {
|
|
463
|
-
"integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="
|
|
464
|
-
},
|
|
465
|
-
"pkijs@3.2.5": {
|
|
466
|
-
"integrity": "sha512-WX0la7n7CbnguuaIQoT4Fc0IJckPDOUldzOwlZ0nwpOcySS+Six/tXBdc0RX17J5o1To0SAr3xDJjDLsOfDFQA==",
|
|
467
|
-
"dependencies": [
|
|
468
|
-
"@noble/hashes",
|
|
469
|
-
"asn1js",
|
|
470
|
-
"bytestreamjs",
|
|
471
|
-
"pvtsutils",
|
|
472
|
-
"pvutils",
|
|
473
|
-
"tslib"
|
|
474
|
-
]
|
|
475
|
-
},
|
|
476
|
-
"pvtsutils@1.3.6": {
|
|
477
|
-
"integrity": "sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==",
|
|
478
|
-
"dependencies": [
|
|
479
|
-
"tslib"
|
|
480
|
-
]
|
|
481
|
-
},
|
|
482
|
-
"pvutils@1.1.3": {
|
|
483
|
-
"integrity": "sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="
|
|
484
|
-
},
|
|
485
|
-
"quansync@0.2.10": {
|
|
486
|
-
"integrity": "sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A=="
|
|
487
|
-
},
|
|
488
|
-
"querystringify@2.2.0": {
|
|
489
|
-
"integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="
|
|
490
|
-
},
|
|
491
|
-
"rdf-canonize@3.4.0": {
|
|
492
|
-
"integrity": "sha512-fUeWjrkOO0t1rg7B2fdyDTvngj+9RlUyL92vOdiB7c0FPguWVsniIMjEtHH+meLBO9rzkUlUzBVXgWrjI8P9LA==",
|
|
493
|
-
"dependencies": [
|
|
494
|
-
"setimmediate"
|
|
495
|
-
]
|
|
496
|
-
},
|
|
497
|
-
"readdirp@4.1.2": {
|
|
498
|
-
"integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg=="
|
|
499
|
-
},
|
|
500
|
-
"requires-port@1.0.0": {
|
|
501
|
-
"integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="
|
|
502
|
-
},
|
|
503
|
-
"resolve-pkg-maps@1.0.0": {
|
|
504
|
-
"integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw=="
|
|
505
|
-
},
|
|
506
|
-
"rolldown-plugin-dts@0.13.11_rolldown@1.0.0-beta.15_typescript@5.8.3": {
|
|
507
|
-
"integrity": "sha512-1TScN31JImk8xcq9kdm52z2W8/QX3zeDpEjFkyZmK+GcD0u8QqSWWARBsCEdfS99NyI6D9NIbUpsABXlcpZhig==",
|
|
508
|
-
"dependencies": [
|
|
509
|
-
"@babel/generator",
|
|
510
|
-
"@babel/parser",
|
|
511
|
-
"@babel/types",
|
|
512
|
-
"ast-kit",
|
|
513
|
-
"birpc",
|
|
514
|
-
"debug",
|
|
515
|
-
"dts-resolver",
|
|
516
|
-
"get-tsconfig",
|
|
517
|
-
"rolldown",
|
|
518
|
-
"typescript"
|
|
519
|
-
],
|
|
520
|
-
"optionalPeers": [
|
|
521
|
-
"typescript"
|
|
522
|
-
]
|
|
523
|
-
},
|
|
524
|
-
"rolldown@1.0.0-beta.15": {
|
|
525
|
-
"integrity": "sha512-ep788NsIGl0W5gT+99hBrSGe4Hdhcwc55PqM3O0mR5H0C4ZpGpDGgu9YzTJ8a6mFDLnFnc/LYC+Dszb7oWK/dg==",
|
|
526
|
-
"dependencies": [
|
|
527
|
-
"@oxc-project/runtime",
|
|
528
|
-
"@oxc-project/types",
|
|
529
|
-
"@rolldown/pluginutils",
|
|
530
|
-
"ansis"
|
|
531
|
-
],
|
|
532
|
-
"optionalDependencies": [
|
|
533
|
-
"@rolldown/binding-darwin-arm64",
|
|
534
|
-
"@rolldown/binding-darwin-x64",
|
|
535
|
-
"@rolldown/binding-freebsd-x64",
|
|
536
|
-
"@rolldown/binding-linux-arm-gnueabihf",
|
|
537
|
-
"@rolldown/binding-linux-arm64-gnu",
|
|
538
|
-
"@rolldown/binding-linux-arm64-musl",
|
|
539
|
-
"@rolldown/binding-linux-x64-gnu",
|
|
540
|
-
"@rolldown/binding-linux-x64-musl",
|
|
541
|
-
"@rolldown/binding-wasm32-wasi",
|
|
542
|
-
"@rolldown/binding-win32-arm64-msvc",
|
|
543
|
-
"@rolldown/binding-win32-ia32-msvc",
|
|
544
|
-
"@rolldown/binding-win32-x64-msvc"
|
|
545
|
-
],
|
|
546
|
-
"bin": true
|
|
547
|
-
},
|
|
548
|
-
"semver@7.7.2": {
|
|
549
|
-
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
|
|
550
|
-
"bin": true
|
|
551
|
-
},
|
|
552
|
-
"setimmediate@1.0.5": {
|
|
553
|
-
"integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="
|
|
554
|
-
},
|
|
555
|
-
"structured-field-values@2.0.4": {
|
|
556
|
-
"integrity": "sha512-5zpJXYLPwW3WYUD/D58tQjIBs10l3Yx64jZfcKGs/RH79E2t9Xm/b9+ydwdMNVSksnsIY+HR/2IlQmgo0AcTAg=="
|
|
557
|
-
},
|
|
558
|
-
"tinyexec@1.0.1": {
|
|
559
|
-
"integrity": "sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw=="
|
|
560
|
-
},
|
|
561
|
-
"tinyglobby@0.2.14_picomatch@4.0.2": {
|
|
562
|
-
"integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
|
|
563
|
-
"dependencies": [
|
|
564
|
-
"fdir",
|
|
565
|
-
"picomatch"
|
|
566
|
-
]
|
|
567
|
-
},
|
|
568
|
-
"tsdown@0.12.8_typescript@5.8.3_rolldown@1.0.0-beta.15": {
|
|
569
|
-
"integrity": "sha512-niHeVcFCNjvVZYVGTeoM4BF+/DWxP8pFH2tUs71sEKYdcKtJIbkSdEmtxByaRZeMgwVbVgPb8nv9i9okVwFLAA==",
|
|
570
|
-
"dependencies": [
|
|
571
|
-
"ansis",
|
|
572
|
-
"cac",
|
|
573
|
-
"chokidar",
|
|
574
|
-
"debug",
|
|
575
|
-
"diff",
|
|
576
|
-
"empathic",
|
|
577
|
-
"hookable",
|
|
578
|
-
"rolldown",
|
|
579
|
-
"rolldown-plugin-dts",
|
|
580
|
-
"semver",
|
|
581
|
-
"tinyexec",
|
|
582
|
-
"tinyglobby",
|
|
583
|
-
"typescript",
|
|
584
|
-
"unconfig"
|
|
585
|
-
],
|
|
586
|
-
"optionalPeers": [
|
|
587
|
-
"typescript"
|
|
588
|
-
],
|
|
589
|
-
"bin": true
|
|
590
|
-
},
|
|
591
|
-
"tslib@2.8.1": {
|
|
592
|
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
|
|
593
|
-
},
|
|
594
|
-
"typescript@5.8.3": {
|
|
595
|
-
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
|
|
596
|
-
"bin": true
|
|
597
|
-
},
|
|
598
|
-
"uint8arrays@3.1.1": {
|
|
599
|
-
"integrity": "sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==",
|
|
600
|
-
"dependencies": [
|
|
601
|
-
"multiformats"
|
|
602
|
-
]
|
|
603
|
-
},
|
|
604
|
-
"unconfig@7.3.2": {
|
|
605
|
-
"integrity": "sha512-nqG5NNL2wFVGZ0NA/aCFw0oJ2pxSf1lwg4Z5ill8wd7K4KX/rQbHlwbh+bjctXL5Ly1xtzHenHGOK0b+lG6JVg==",
|
|
606
|
-
"dependencies": [
|
|
607
|
-
"@quansync/fs",
|
|
608
|
-
"defu",
|
|
609
|
-
"jiti",
|
|
610
|
-
"quansync"
|
|
611
|
-
]
|
|
612
|
-
},
|
|
613
|
-
"undici-types@6.21.0": {
|
|
614
|
-
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="
|
|
615
|
-
},
|
|
616
|
-
"undici@5.29.0": {
|
|
617
|
-
"integrity": "sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==",
|
|
618
|
-
"dependencies": [
|
|
619
|
-
"@fastify/busboy"
|
|
620
|
-
]
|
|
621
|
-
},
|
|
622
|
-
"uri-template-router@0.0.17": {
|
|
623
|
-
"integrity": "sha512-5h2I/eSN+XFRAFaSR72KTFWg5rf8GB6Ur5+yWHjtwEqmn6cfZqoWsoWTh6NhxW8pIlFq144G2J23OCg3CeAaSg=="
|
|
624
|
-
},
|
|
625
|
-
"url-parse@1.5.10": {
|
|
626
|
-
"integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==",
|
|
627
|
-
"dependencies": [
|
|
628
|
-
"querystringify",
|
|
629
|
-
"requires-port"
|
|
630
|
-
]
|
|
631
|
-
},
|
|
632
|
-
"url-template@3.1.1": {
|
|
633
|
-
"integrity": "sha512-4oszoaEKE/mQOtAmdMWqIRHmkxWkUZMnXFnjQ5i01CuRSK3uluxcH1MRVVVWmhlnzT1SCDfKxxficm2G37qzCA=="
|
|
634
|
-
},
|
|
635
|
-
"varint@6.0.0": {
|
|
636
|
-
"integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg=="
|
|
637
|
-
},
|
|
638
|
-
"web-streams-polyfill@3.3.3": {
|
|
639
|
-
"integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw=="
|
|
640
|
-
},
|
|
641
|
-
"yallist@4.0.0": {
|
|
642
|
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
|
|
643
|
-
}
|
|
644
|
-
},
|
|
645
|
-
"workspace": {
|
|
646
|
-
"dependencies": [
|
|
647
|
-
"jsr:@fedify/fedify@^1.7.0",
|
|
648
|
-
"jsr:@hongminhee/suite@~0.6.3",
|
|
649
|
-
"jsr:@std/assert@^1.0.13",
|
|
650
|
-
"jsr:@std/async@^1.0.13",
|
|
651
|
-
"npm:amqplib@~0.10.8",
|
|
652
|
-
"npm:tsdown@~0.12.7"
|
|
653
|
-
],
|
|
654
|
-
"packageJson": {
|
|
655
|
-
"dependencies": [
|
|
656
|
-
"npm:@hongminhee/suite@~0.6.3",
|
|
657
|
-
"npm:@js-temporal/polyfill@~0.5.1",
|
|
658
|
-
"npm:@types/amqplib@~0.10.7",
|
|
659
|
-
"npm:tsdown@~0.12.7",
|
|
660
|
-
"npm:typescript@^5.8.3"
|
|
661
|
-
]
|
|
662
|
-
}
|
|
663
|
-
}
|
|
664
|
-
}
|
package/src/mod.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./mq.ts";
|
/package/{src/mq.ts → mq.ts}
RENAMED
|
File without changes
|