@fedify/cli 2.4.0-dev.1581 → 2.4.0-dev.1599

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.
Files changed (85) hide show
  1. package/dist/bench/action.js +1 -1
  2. package/dist/bench/actor/documents.js +1 -1
  3. package/dist/bench/actor/fleet.js +1 -1
  4. package/dist/bench/actor/keys.js +1 -1
  5. package/dist/bench/command.js +1 -1
  6. package/dist/bench/compare/schema.js +1 -1
  7. package/dist/bench/compare.js +1 -1
  8. package/dist/bench/discovery/discover.js +1 -1
  9. package/dist/bench/discovery/probe.js +1 -1
  10. package/dist/bench/load/arrival.js +1 -1
  11. package/dist/bench/load/clock.js +1 -1
  12. package/dist/bench/load/generator.js +1 -1
  13. package/dist/bench/metrics/aggregate.js +1 -1
  14. package/dist/bench/metrics/histogram.js +1 -1
  15. package/dist/bench/metrics/stats-client.js +1 -1
  16. package/dist/bench/mod.js +1 -1
  17. package/dist/bench/render/format.js +1 -1
  18. package/dist/bench/render/index.js +1 -1
  19. package/dist/bench/render/json.js +1 -1
  20. package/dist/bench/render/markdown.js +1 -1
  21. package/dist/bench/render/text.js +1 -1
  22. package/dist/bench/result/build.js +1 -1
  23. package/dist/bench/result/expect/assert.js +1 -1
  24. package/dist/bench/result/expect/evaluate.js +1 -1
  25. package/dist/bench/result/expect/metrics.js +1 -1
  26. package/dist/bench/result/schema.js +1 -1
  27. package/dist/bench/safety/gate.js +1 -1
  28. package/dist/bench/safety/tiers.js +1 -1
  29. package/dist/bench/scenario/coerce.js +1 -1
  30. package/dist/bench/scenario/errors.js +1 -1
  31. package/dist/bench/scenario/load.js +1 -1
  32. package/dist/bench/scenario/normalize.js +1 -1
  33. package/dist/bench/scenario/schema.js +1 -1
  34. package/dist/bench/scenario/units.js +1 -1
  35. package/dist/bench/scenario/validate.js +1 -1
  36. package/dist/bench/scenarios/actor.js +1 -1
  37. package/dist/bench/scenarios/failure.js +1 -1
  38. package/dist/bench/scenarios/fanout.js +1 -1
  39. package/dist/bench/scenarios/inbox.js +1 -1
  40. package/dist/bench/scenarios/mixed.js +1 -1
  41. package/dist/bench/scenarios/object-discovery.js +1 -1
  42. package/dist/bench/scenarios/object.js +1 -1
  43. package/dist/bench/scenarios/read.js +1 -1
  44. package/dist/bench/scenarios/registry.js +1 -1
  45. package/dist/bench/scenarios/runner.js +1 -1
  46. package/dist/bench/scenarios/webfinger.js +1 -1
  47. package/dist/bench/server/synthetic.js +1 -1
  48. package/dist/bench/signing/activity-id.js +1 -1
  49. package/dist/bench/signing/pipeline.js +1 -1
  50. package/dist/bench/signing/signer.js +1 -1
  51. package/dist/bench/template/generate.js +1 -1
  52. package/dist/bench/template/helpers.js +1 -1
  53. package/dist/bench/template/template.js +1 -1
  54. package/dist/cache.js +1 -1
  55. package/dist/commands.js +1 -1
  56. package/dist/config.js +1 -1
  57. package/dist/deno.js +2 -2
  58. package/dist/docloader.js +1 -1
  59. package/dist/generate-vocab/action.js +1 -1
  60. package/dist/generate-vocab/command.js +1 -1
  61. package/dist/imagerenderer.js +1 -1
  62. package/dist/inbox/command.js +1 -1
  63. package/dist/inbox/rendercode.js +1 -1
  64. package/dist/inbox/view.js +1 -1
  65. package/dist/inbox.js +1 -1
  66. package/dist/kv.bun.js +1 -1
  67. package/dist/kv.node.js +1 -1
  68. package/dist/log.js +1 -1
  69. package/dist/lookup/command.js +1 -1
  70. package/dist/lookup.js +1 -1
  71. package/dist/mod.js +1 -1
  72. package/dist/nodeinfo.js +1 -1
  73. package/dist/options.js +1 -1
  74. package/dist/relay/command.js +1 -1
  75. package/dist/relay.js +1 -1
  76. package/dist/runner.js +1 -1
  77. package/dist/table.js +1 -1
  78. package/dist/tempserver.js +1 -1
  79. package/dist/tunnel.js +1 -1
  80. package/dist/utils.js +1 -1
  81. package/dist/webfinger/action.js +1 -1
  82. package/dist/webfinger/command.js +1 -1
  83. package/dist/webfinger/error.js +1 -1
  84. package/dist/webfinger/lib.js +1 -1
  85. package/package.json +10 -10
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { describeError } from "../utils.js";
3
3
  import { getContextLoader, getDocumentLoader } from "../docloader.js";
4
4
  import { buildFleet } from "./actor/fleet.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { Application, CryptographicKey, Multikey } from "@fedify/vocab";
3
3
  //#region src/bench/actor/documents.ts
4
4
  /**
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { generateActorKeys } from "./keys.js";
3
3
  //#region src/bench/actor/fleet.ts
4
4
  function httpStandardOf(standards) {
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { generateCryptoKeyPair } from "@fedify/fedify";
3
3
  //#region src/bench/actor/keys.ts
4
4
  /**
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { configContext } from "../config.js";
3
3
  import { userAgentOption } from "../options.js";
4
4
  import { argument, choice, command, constant, flag, group, merge, message, object, option, optional, or, string, withDefault } from "@optique/core";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/compare/schema.ts
3
3
  /**
4
4
  * The embedded JSON Schema (draft 2020-12) for benchmark comparison output.
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { describeError } from "../utils.js";
3
3
  import { metricUnit } from "./result/expect/metrics.js";
4
4
  import { parseDuration } from "./scenario/units.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { getContextLoader, getDocumentLoader } from "../../docloader.js";
3
3
  import { convertUrlIfHandle } from "../../webfinger/lib.js";
4
4
  import { isActor, lookupObject } from "@fedify/vocab";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/discovery/probe.ts
3
3
  /** The path of the cooperative benchmark stats endpoint. */
4
4
  const STATS_PATH = "/.well-known/fedify/bench/stats";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/load/arrival.ts
3
3
  /**
4
4
  * Lazily yields the scheduled arrival offsets (milliseconds from the start) for
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/load/clock.ts
3
3
  /** Returns a clock backed by `performance.now()` and `setTimeout`. */
4
4
  function systemClock() {
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { scheduleArrivals } from "./arrival.js";
3
3
  import { systemClock } from "./clock.js";
4
4
  //#region src/bench/load/generator.ts
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { LogLinearHistogram } from "./histogram.js";
3
3
  //#region src/bench/metrics/aggregate.ts
4
4
  /**
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  /**
3
3
  * A sparse log-linear histogram.
4
4
  * @since 2.3.0
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { STATS_PATH } from "../discovery/probe.js";
3
3
  //#region src/bench/metrics/stats-client.ts
4
4
  /**
package/dist/bench/mod.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import "./command.js";
3
3
  import runBench$1 from "./action.js";
4
4
  import { runBenchCompare } from "./compare.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/render/format.ts
3
3
  const OP_SYMBOLS = {
4
4
  lt: "<",
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { renderJson } from "./json.js";
3
3
  import { renderMarkdown } from "./markdown.js";
4
4
  import { renderText } from "./text.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/render/json.ts
3
3
  /**
4
4
  * Renders a report as pretty-printed canonical JSON.
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { metricDisplayUnit } from "../result/expect/metrics.js";
3
3
  import { formatActual, formatNumber, formatPercent, formatThreshold, opSymbol } from "./format.js";
4
4
  //#region src/bench/render/markdown.ts
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { metricDisplayUnit } from "../result/expect/metrics.js";
3
3
  import { formatActual, formatNumber, formatPercent, formatThreshold, opSymbol } from "./format.js";
4
4
  //#region src/bench/render/text.ts
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { version } from "../../deno.js";
3
3
  import { evaluateExpect } from "./expect/evaluate.js";
4
4
  import { REPORT_SCHEMA_ID } from "./schema.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/result/expect/assert.ts
3
3
  const ASSERT_RE = /^\s*(<=|>=|==|=|<|>)\s*(\d+(?:\.\d+)?)\s*(%|ms|s|\/s)?\s*$/;
4
4
  const OP_MAP = {
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { AssertionParseError, compare, parseAssertion } from "./assert.js";
3
3
  import { metricUnit } from "./metrics.js";
4
4
  //#region src/bench/result/expect/evaluate.ts
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/result/expect/metrics.ts
3
3
  /**
4
4
  * Returns the natural unit class of a metric, or `null` if the metric name is
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/result/schema.ts
3
3
  /**
4
4
  * The embedded JSON Schema (draft 2020-12) for benchmark report output.
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/safety/gate.ts
3
3
  /** An error raised when a target is refused by the safety gate. */
4
4
  var UnsafeTargetError = class extends Error {};
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { lookup } from "node:dns/promises";
3
3
  //#region src/bench/safety/tiers.ts
4
4
  /**
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/scenario/coerce.ts
3
3
  /**
4
4
  * Scalar-or-list coercion used throughout the scenario format, where many
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/scenario/errors.ts
3
3
  /** An error raised when a scenario suite fails schema validation. */
4
4
  var SuiteValidationError = class extends Error {
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { defaultHelpers } from "../template/helpers.js";
3
3
  import { renderTemplates } from "../template/template.js";
4
4
  import { readFile } from "node:fs/promises";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { asList } from "./coerce.js";
3
3
  import { parseDuration, parseRate } from "./units.js";
4
4
  //#region src/bench/scenario/normalize.ts
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/scenario/schema.ts
3
3
  /**
4
4
  * The embedded JSON Schema (draft 2020-12) for benchmark scenario suite files.
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/scenario/units.ts
3
3
  /**
4
4
  * Parsers for the human-friendly duration and rate units used in scenario
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { scenarioSchemaV2 } from "./schema.js";
3
3
  import { SuiteValidationError } from "./errors.js";
4
4
  import { Validator } from "@cfworker/json-schema";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { convertUrlIfHandle } from "../../webfinger/lib.js";
3
3
  import { actorUrlsFromRecipients } from "./object-discovery.js";
4
4
  import { isBareHttpUrl } from "./runner.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { discoverInbox, selectInbox } from "../discovery/discover.js";
3
3
  import { systemClock } from "../load/clock.js";
4
4
  import { runLoad } from "../load/generator.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { parseDuration } from "../scenario/units.js";
3
3
  import { systemClock } from "../load/clock.js";
4
4
  import { runLoad } from "../load/generator.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { discoverInbox, selectInbox } from "../discovery/discover.js";
3
3
  import { asList } from "../scenario/coerce.js";
4
4
  import { runLoad } from "../load/generator.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { LogLinearHistogram } from "../metrics/histogram.js";
3
3
  import { actorRunner } from "./actor.js";
4
4
  import { fanoutRunner } from "./fanout.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { convertUrlIfHandle } from "../../webfinger/lib.js";
3
3
  import { asList } from "../scenario/coerce.js";
4
4
  //#region src/bench/scenarios/object-discovery.ts
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { convertUrlIfHandle } from "../../webfinger/lib.js";
3
3
  import { asList } from "../scenario/coerce.js";
4
4
  import { objectUrlsFromSource } from "./object-discovery.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { runLoad } from "../load/generator.js";
3
3
  import { aggregateSamples } from "../metrics/aggregate.js";
4
4
  import { diffSnapshots, fetchServerSnapshot, snapshotToMetrics } from "../metrics/stats-client.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { actorRunner } from "./actor.js";
3
3
  import { fanoutRunner } from "./fanout.js";
4
4
  import { failureRunner } from "./failure.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/scenarios/runner.ts
3
3
  /** Performs one HTTP send and classifies the result as a send outcome. */
4
4
  async function sendRequest(request, fetchImpl) {
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { convertUrlIfHandle } from "../../webfinger/lib.js";
3
3
  import { runLoad } from "../load/generator.js";
4
4
  import { aggregateSamples } from "../metrics/aggregate.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { getContextLoader } from "../../docloader.js";
3
3
  import { actorDocument } from "../actor/documents.js";
4
4
  import { serve } from "srvx";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/signing/activity-id.ts
3
3
  /**
4
4
  * Creates a minter that produces unique activity ids under a base URL. Ids
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/signing/pipeline.ts
3
3
  /** An error used to release consumers waiting on a closed pipeline. */
4
4
  var PipelineClosedError = class extends Error {};
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { signJsonLd, signObject, signRequest } from "@fedify/fedify";
3
3
  //#region src/bench/signing/signer.ts
4
4
  /**
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/template/generate.ts
3
3
  /**
4
4
  * Typed payload-generation directives for the scenario format.
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/template/helpers.ts
3
3
  /**
4
4
  * Returns a fresh registry of the default template helpers:
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/bench/template/template.ts
3
3
  /** An error raised while rendering a `${{ ... }}` template expression. */
4
4
  var TemplateError = class extends Error {};
package/dist/cache.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import process from "node:process";
3
3
  import { homedir } from "node:os";
4
4
  import { join } from "node:path";
package/dist/commands.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { benchMetadata, benchOptions } from "./bench/command.js";
3
3
  import { generateVocabMetadata, generateVocabOptions } from "./generate-vocab/command.js";
4
4
  import { inboxMetadata, inboxOptions } from "./inbox/command.js";
package/dist/config.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { message } from "@optique/core";
3
3
  import { printError } from "@optique/run";
4
4
  import { readFileSync } from "node:fs";
package/dist/deno.js CHANGED
@@ -1,5 +1,5 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region deno.json
3
- var version = "2.4.0-dev.1581+2c99806d";
3
+ var version = "2.4.0-dev.1599+7b19967f";
4
4
  //#endregion
5
5
  export { version };
package/dist/docloader.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { getDocumentLoader } from "@fedify/vocab-runtime";
3
3
  import { kvCache } from "@fedify/fedify";
4
4
  import { getKvStore } from "#kv";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import process from "node:process";
3
3
  import { printError } from "@optique/run";
4
4
  import { stat } from "node:fs/promises";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { argument, command, constant, message, object, option, withDefault } from "@optique/core";
3
3
  import { path } from "@optique/run";
4
4
  //#region src/generate-vocab/command.ts
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { Jimp } from "./nodeinfo.js";
3
3
  import process from "node:process";
4
4
  import os from "node:os";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { configContext } from "../config.js";
3
3
  import { createTunnelOption } from "../options.js";
4
4
  import { command, constant, group, merge, message, multiple, object, option, string } from "@optique/core";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { getContextLoader } from "../docloader.js";
3
3
  import { getStatusText } from "@poppanator/http-constants";
4
4
  //#region src/inbox/rendercode.ts
@@ -1,4 +1,4 @@
1
- import { Temporal } from "@js-temporal/polyfill";
1
+ import { Temporal } from "temporal-polyfill";
2
2
  import { renderActivity, renderRawActivity, renderRequest, renderResponse } from "./rendercode.js";
3
3
  import util from "node:util";
4
4
  import { getStatusText } from "@poppanator/http-constants";
package/dist/inbox.js CHANGED
@@ -1,4 +1,4 @@
1
- import { Temporal } from "@js-temporal/polyfill";
1
+ import { Temporal } from "temporal-polyfill";
2
2
  import { colors, matchesActor } from "./utils.js";
3
3
  import { configureLogging, recordingSink } from "./log.js";
4
4
  import { version } from "./deno.js";
package/dist/kv.bun.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { getCacheDir } from "./cache.js";
3
3
  import { join } from "node:path";
4
4
  import { SqliteKvStore } from "@fedify/sqlite";
package/dist/kv.node.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { getCacheDir } from "./cache.js";
3
3
  import { join } from "node:path";
4
4
  import { SqliteKvStore } from "@fedify/sqlite";
package/dist/log.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import process from "node:process";
3
3
  import { dirname } from "node:path";
4
4
  import { configure, getConsoleSink } from "@logtape/logtape";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { configContext } from "../config.js";
3
3
  import { createTunnelServiceOption, userAgentOption } from "../options.js";
4
4
  import { argument, choice, command, constant, flag, float, integer, map, merge, message, multiple, object, option, optionNames, optional, or, string, withDefault } from "@optique/core";
package/dist/lookup.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { FEDIBIRD_QUOTE_IRI, IN_REPLY_TO_IRI, MISSKEY_QUOTE_IRI, QUOTE_IRI, QUOTE_URL_IRI } from "./lookup/command.js";
3
3
  import { colorEnabled, colors, describeError, formatObject } from "./utils.js";
4
4
  import { configureLogging } from "./log.js";
package/dist/mod.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env -S node --disable-warning=ExperimentalWarning
2
- import "@js-temporal/polyfill";
2
+ import "temporal-polyfill";
3
3
  import { parseCliProgram } from "./runner.js";
4
4
  import process from "node:process";
5
5
  //#region src/mod.ts
package/dist/nodeinfo.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { configContext } from "./config.js";
3
3
  import { userAgentOption } from "./options.js";
4
4
  import { colors, formatObject } from "./utils.js";
package/dist/options.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { configContext } from "./config.js";
3
3
  import { choice, constant, flag, map, merge, message, object, option, optional, or, string, withDefault } from "@optique/core";
4
4
  import { bindConfig } from "@optique/config";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { configContext } from "../config.js";
3
3
  import { createTunnelOption } from "../options.js";
4
4
  import { command, constant, group, integer, merge, message, multiple, object, option, optionName, optional, string, value } from "@optique/core";
package/dist/relay.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { colors, matchesActor } from "./utils.js";
3
3
  import { configureLogging } from "./log.js";
4
4
  import { tableStyle } from "./table.js";
package/dist/runner.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { configContext, tryLoadToml } from "./config.js";
3
3
  import { globalOptions } from "./options.js";
4
4
  import { describeError } from "./utils.js";
package/dist/table.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  //#region src/table.ts
3
3
  const tableStyle = {
4
4
  top: "─",
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { getLogger } from "@logtape/logtape";
3
3
  import { openTunnel } from "@hongminhee/localtunnel";
4
4
  import { serve } from "srvx";
package/dist/tunnel.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { createTunnelServiceOption } from "./options.js";
3
3
  import { configureLogging } from "./log.js";
4
4
  import process from "node:process";
package/dist/utils.js CHANGED
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import process from "node:process";
3
3
  import { message } from "@optique/core";
4
4
  import { print, printError } from "@optique/run";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { formatObject } from "../utils.js";
3
3
  import { NotFoundError, getErrorMessage } from "./error.js";
4
4
  import { convertUrlIfHandle } from "./lib.js";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { configContext } from "../config.js";
3
3
  import { userAgentOption } from "../options.js";
4
4
  import { argument, command, constant, flag, group, integer, merge, message, multiple, object, option, string } from "@optique/core";
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { message } from "@optique/core";
3
3
  //#region src/webfinger/error.ts
4
4
  /**
@@ -1,4 +1,4 @@
1
- import "@js-temporal/polyfill";
1
+ import "temporal-polyfill";
2
2
  import { InvalidHandleError } from "./error.js";
3
3
  import { getLogger } from "@logtape/logtape";
4
4
  import { toAcctUrl } from "@fedify/vocab";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/cli",
3
- "version": "2.4.0-dev.1581+2c99806d",
3
+ "version": "2.4.0-dev.1599+7b19967f",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "README.md",
@@ -65,7 +65,6 @@
65
65
  "@inquirer/prompts": "^7.8.4",
66
66
  "@jimp/core": "^1.6.1",
67
67
  "@jimp/wasm-webp": "^1.6.1",
68
- "@js-temporal/polyfill": "^0.5.1",
69
68
  "@logtape/file": "^2.2.0",
70
69
  "@logtape/logtape": "^2.2.0",
71
70
  "@poppanator/http-constants": "^1.1.1",
@@ -86,16 +85,17 @@
86
85
  "shiki": "^1.6.4",
87
86
  "smol-toml": "^1.6.1",
88
87
  "srvx": "^0.8.7",
88
+ "temporal-polyfill": "^1.0.1",
89
89
  "valibot": "^1.4.0",
90
90
  "yaml": "^2.9.0",
91
- "@fedify/fedify": "2.4.0-dev.1581+2c99806d",
92
- "@fedify/relay": "2.4.0-dev.1581+2c99806d",
93
- "@fedify/vocab": "2.4.0-dev.1581+2c99806d",
94
- "@fedify/init": "2.4.0-dev.1581+2c99806d",
95
- "@fedify/vocab-tools": "2.4.0-dev.1581+2c99806d",
96
- "@fedify/webfinger": "2.4.0-dev.1581+2c99806d",
97
- "@fedify/sqlite": "2.4.0-dev.1581+2c99806d",
98
- "@fedify/vocab-runtime": "2.4.0-dev.1581+2c99806d"
91
+ "@fedify/fedify": "2.4.0-dev.1599+7b19967f",
92
+ "@fedify/init": "2.4.0-dev.1599+7b19967f",
93
+ "@fedify/relay": "2.4.0-dev.1599+7b19967f",
94
+ "@fedify/sqlite": "2.4.0-dev.1599+7b19967f",
95
+ "@fedify/vocab": "2.4.0-dev.1599+7b19967f",
96
+ "@fedify/vocab-runtime": "2.4.0-dev.1599+7b19967f",
97
+ "@fedify/vocab-tools": "2.4.0-dev.1599+7b19967f",
98
+ "@fedify/webfinger": "2.4.0-dev.1599+7b19967f"
99
99
  },
100
100
  "devDependencies": {
101
101
  "@types/bun": "^1.2.23",