├── app ├── globals.css ├── favicon.ico ├── layout.tsx └── page.tsx ├── .envrc ├── .eslintrc.json ├── .env ├── database ├── db.sqlite ├── db.sqlite-shm ├── db.sqlite-wal └── migrate.ts ├── .vscode └── settings.json ├── postcss.config.js ├── next.config.js ├── migrations ├── 00002_add_todos.ts └── 00001_create_todos.ts ├── services ├── Sql.ts ├── Runtime.ts ├── Tracing.ts └── TodoRepo.ts ├── actions ├── deleteTodo.tsx ├── updateTodo.tsx └── createTodo.tsx ├── .gitignore ├── tailwind.config.ts ├── public ├── vercel.svg └── next.svg ├── lib ├── otel.ts └── effect.ts ├── components ├── AddTodoForm.tsx └── TodoRow.tsx ├── flake.nix ├── tsconfig.json ├── server.js ├── README.md ├── flake.lock ├── package.json └── pnpm-lock.yaml /app/globals.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake; 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | HONEYCOMB_API_KEY=JbN1lUcQCJB1LPsgd1DfTH 2 | HONEYCOMB_SERVICE_NAME=next-effect -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikearnaldi/next-effect/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /database/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikearnaldi/next-effect/HEAD/database/db.sqlite -------------------------------------------------------------------------------- /database/db.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikearnaldi/next-effect/HEAD/database/db.sqlite-shm -------------------------------------------------------------------------------- /database/db.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikearnaldi/next-effect/HEAD/database/db.sqlite-wal -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "typescript.tsdk": "node_modules/typescript/lib" 4 | } -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | //output: "standalone", 4 | }; 5 | 6 | module.exports = nextConfig; 7 | -------------------------------------------------------------------------------- /database/migrate.ts: -------------------------------------------------------------------------------- 1 | import { SqlLive } from "@/services/Sql"; 2 | import * as Migrator from "@sqlfx/sqlite/Migrator/Node"; 3 | import { Effect, Layer } from "effect"; 4 | 5 | Effect.log("Migrations Complete").pipe( 6 | Effect.provide( 7 | Migrator.makeLayer({ 8 | loader: Migrator.fromDisk(`${__dirname}/../migrations`), 9 | }).pipe(Layer.provide(SqlLive)) 10 | ), 11 | Effect.runFork 12 | ); 13 | -------------------------------------------------------------------------------- /migrations/00002_add_todos.ts: -------------------------------------------------------------------------------- 1 | import * as Effect from "effect/Effect"; 2 | import * as Sql from "@sqlfx/sqlite/Client"; 3 | 4 | export default Effect.gen(function* ($) { 5 | const sql = yield* $(Sql.tag); 6 | 7 | yield* $(sql`INSERT INTO todos (title) VALUES ('Try Next.js with RSC')`); 8 | yield* $(sql`INSERT INTO todos (title) VALUES ('Integrate Effect')`); 9 | yield* $(sql`INSERT INTO todos (title) VALUES ('Integrate OpenTelemetry')`); 10 | }); 11 | -------------------------------------------------------------------------------- /services/Sql.ts: -------------------------------------------------------------------------------- 1 | import * as Sqlfx from "@sqlfx/sqlite/node"; 2 | import { Config } from "effect"; 3 | 4 | export const Sql = Sqlfx.tag; 5 | 6 | export const SqlLive = Sqlfx.makeLayer({ 7 | filename: Config.succeed( 8 | process.cwd().replace(".next/standalone", "") + "/database/db.sqlite" 9 | ), 10 | transformQueryNames: Config.succeed(Sqlfx.transform.camelToSnake), 11 | transformResultNames: Config.succeed(Sqlfx.transform.snakeToCamel), 12 | }); 13 | -------------------------------------------------------------------------------- /actions/deleteTodo.tsx: -------------------------------------------------------------------------------- 1 | "use server"; 2 | 3 | import { effectAction } from "@/services/Runtime"; 4 | import { TodoRepo } from "@/services/TodoRepo"; 5 | import { Schema } from "@effect/schema"; 6 | import { Effect } from "effect"; 7 | import { revalidatePath } from "next/cache"; 8 | 9 | export const deleteTodo = effectAction(Schema.number)((id) => 10 | Effect.gen(function* ($) { 11 | const todos = yield* $(TodoRepo); 12 | yield* $(todos.deleteTodo(id)); 13 | revalidatePath("/"); 14 | }) 15 | ); 16 | -------------------------------------------------------------------------------- /actions/updateTodo.tsx: -------------------------------------------------------------------------------- 1 | "use server"; 2 | 3 | import { effectAction } from "@/services/Runtime"; 4 | import { TodoRepo, TodoStatus } from "@/services/TodoRepo"; 5 | import { Schema } from "@effect/schema"; 6 | import { Effect } from "effect"; 7 | import { revalidatePath } from "next/cache"; 8 | 9 | export const updateTodo = effectAction( 10 | Schema.number, 11 | TodoStatus 12 | )((id, status) => 13 | Effect.gen(function* ($) { 14 | const todos = yield* $(TodoRepo); 15 | yield* $(todos.updateTodo(id, status)); 16 | revalidatePath("/"); 17 | }) 18 | ); 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | 38 | ## direnv 39 | .direnv 40 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- 1 | import type { Config } from 'tailwindcss' 2 | 3 | const config: Config = { 4 | content: [ 5 | './pages/**/*.{js,ts,jsx,tsx,mdx}', 6 | './components/**/*.{js,ts,jsx,tsx,mdx}', 7 | './app/**/*.{js,ts,jsx,tsx,mdx}', 8 | ], 9 | theme: { 10 | extend: { 11 | backgroundImage: { 12 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 13 | 'gradient-conic': 14 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 15 | }, 16 | }, 17 | }, 18 | plugins: [], 19 | } 20 | export default config 21 | -------------------------------------------------------------------------------- /migrations/00001_create_todos.ts: -------------------------------------------------------------------------------- 1 | import * as Effect from "effect/Effect"; 2 | import * as Sql from "@sqlfx/sqlite/Client"; 3 | 4 | export default Effect.gen(function* ($) { 5 | const sql = yield* $(Sql.tag); 6 | 7 | yield* $(sql` 8 | CREATE TABLE todos ( 9 | id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, 10 | title VARCHAR(255) NOT NULL, 11 | status TEXT CHECK( status IN ('COMPLETED','CREATED') ) DEFAULT 'CREATED', 12 | created_at datetime NOT NULL DEFAULT current_timestamp, 13 | updated_at datetime NOT NULL DEFAULT current_timestamp 14 | )`); 15 | }); 16 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next"; 2 | import { Inter } from "next/font/google"; 3 | 4 | import "todomvc-common/base.css"; 5 | import "todomvc-app-css/index.css"; 6 | import "./globals.css"; 7 | 8 | const inter = Inter({ subsets: ["latin"] }); 9 | 10 | export const metadata: Metadata = { 11 | title: "Create Next App", 12 | description: "Generated by create next app", 13 | }; 14 | 15 | export default function RootLayout({ 16 | children, 17 | }: { 18 | children: React.ReactNode; 19 | }) { 20 | return ( 21 | 22 | {children} 23 | 24 | ); 25 | } 26 | -------------------------------------------------------------------------------- /lib/otel.ts: -------------------------------------------------------------------------------- 1 | import Module from "node:module"; 2 | 3 | const require = Module.createRequire(import.meta.url); 4 | 5 | export const { OTLPTraceExporter } = 6 | require("@opentelemetry/exporter-trace-otlp-proto") as typeof import("@opentelemetry/exporter-trace-otlp-proto"); 7 | 8 | export const { OTLPMetricExporter } = 9 | require("@opentelemetry/exporter-metrics-otlp-proto") as typeof import("@opentelemetry/exporter-metrics-otlp-proto"); 10 | 11 | export const { BatchSpanProcessor } = 12 | require("@opentelemetry/sdk-trace-base") as typeof import("@opentelemetry/sdk-trace-base"); 13 | 14 | export const { PeriodicExportingMetricReader } = 15 | require("@opentelemetry/sdk-metrics") as typeof import("@opentelemetry/sdk-metrics"); 16 | -------------------------------------------------------------------------------- /actions/createTodo.tsx: -------------------------------------------------------------------------------- 1 | "use server"; 2 | 3 | import { formData } from "@/lib/effect"; 4 | import { effectAction } from "@/services/Runtime"; 5 | import { TodoRepo } from "@/services/TodoRepo"; 6 | import { Schema } from "@effect/schema"; 7 | import { Effect } from "effect"; 8 | import { revalidatePath } from "next/cache"; 9 | 10 | export const createTodo = effectAction( 11 | Schema.string, 12 | formData(Schema.struct({ title: Schema.string })) 13 | )((_state, { title }) => 14 | Effect.gen(function* ($) { 15 | const todos = yield* $(TodoRepo); 16 | if (title.length === 0) { 17 | return "invalid title"; 18 | } 19 | yield* $(todos.addTodo(title)); 20 | revalidatePath("/"); 21 | return "ok"; 22 | }) 23 | ); 24 | -------------------------------------------------------------------------------- /components/AddTodoForm.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import { createTodo } from "@/actions/createTodo"; 4 | import { useEffect, useRef } from "react"; 5 | import { useFormState, useFormStatus } from "react-dom"; 6 | 7 | export const AddTodoForm = () => { 8 | const ref = useRef(null); 9 | const [state, formAction] = useFormState(createTodo, "initial"); 10 | const { pending } = useFormStatus(); 11 | useEffect(() => { 12 | if (!pending && state !== "initial") { 13 | ref.current?.reset(); 14 | } 15 | }); 16 | return ( 17 |
18 | 24 |
25 | ); 26 | }; 27 | -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- 1 | { 2 | inputs = { 3 | nixpkgs = { 4 | url = "github:nixos/nixpkgs/nixpkgs-unstable"; 5 | }; 6 | 7 | flake-utils = { 8 | url = "github:numtide/flake-utils"; 9 | }; 10 | }; 11 | 12 | outputs = { 13 | self, 14 | nixpkgs, 15 | flake-utils, 16 | ... 17 | }: 18 | flake-utils.lib.eachDefaultSystem (system: let 19 | pkgs = nixpkgs.legacyPackages.${system}; 20 | corepackEnable = pkgs.runCommand "corepack-enable" {} '' 21 | mkdir -p $out/bin 22 | ${pkgs.nodejs-18_x}/bin/corepack enable --install-directory $out/bin 23 | ''; 24 | in { 25 | formatter = pkgs.alejandra; 26 | 27 | devShells = { 28 | default = pkgs.mkShell { 29 | buildInputs = with pkgs; [ 30 | bun 31 | nodejs-18_x 32 | corepackEnable 33 | ]; 34 | }; 35 | }; 36 | }); 37 | } 38 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "lib": [ 5 | "dom", 6 | "dom.iterable", 7 | "esnext" 8 | ], 9 | "allowJs": true, 10 | "skipLibCheck": true, 11 | "strict": true, 12 | "noEmit": true, 13 | "esModuleInterop": true, 14 | "module": "esnext", 15 | "moduleResolution": "bundler", 16 | "resolveJsonModule": true, 17 | "isolatedModules": true, 18 | "jsx": "preserve", 19 | "incremental": true, 20 | "plugins": [ 21 | { 22 | "name": "next" 23 | }, 24 | { 25 | "name": "@effect/language-service" 26 | } 27 | ], 28 | "paths": { 29 | "@/*": [ 30 | "./*" 31 | ] 32 | } 33 | }, 34 | "include": [ 35 | "next-env.d.ts", 36 | "**/*.ts", 37 | "**/*.tsx", 38 | ".next/types/**/*.ts" 39 | ], 40 | "exclude": [ 41 | "node_modules" 42 | ] 43 | } -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | const { createServer } = require("http"); 2 | const { parse } = require("url"); 3 | const next = require("next"); 4 | 5 | const dev = process.env.NODE_ENV !== "production"; 6 | const hostname = "localhost"; 7 | const port = 3000; 8 | 9 | const app = next({ dev, hostname, port }); 10 | const handle = app.getRequestHandler(); 11 | 12 | app.prepare().then(() => { 13 | createServer(async (req, res) => { 14 | try { 15 | const parsedUrl = parse(req.url, true); 16 | await handle(req, res, parsedUrl); 17 | } catch (err) { 18 | console.error("Error occurred handling", req.url, err); 19 | res.statusCode = 500; 20 | res.end("internal server error"); 21 | } 22 | }) 23 | .once("error", (err) => { 24 | console.error(err); 25 | process.exit(1); 26 | }) 27 | .listen(port, () => { 28 | console.log(`> Ready on http://${hostname}:${port}`); 29 | }); 30 | }); 31 | -------------------------------------------------------------------------------- /services/Runtime.ts: -------------------------------------------------------------------------------- 1 | import { integrate } from "@/lib/effect"; 2 | import { Layer } from "effect"; 3 | import { SqlLive } from "./Sql"; 4 | import { TodoRepoLive } from "./TodoRepo"; 5 | import { TracingLive } from "./Tracing"; 6 | 7 | /** 8 | * The following layer may contain resources such as database connections, 9 | * the resources allocated via this layer will be cleared on process exit. 10 | * 11 | * Note: this layer will not reload during development 12 | */ 13 | const GlobalLive = SqlLive.pipe(Layer.provide(TracingLive)); 14 | 15 | /** 16 | * The following layer can't contain resources such as database connections, 17 | * the resources allocated via this layer will never be cleared. 18 | * 19 | * Note: this layer will reload during development 20 | */ 21 | const LocalLive = Layer.mergeAll(TodoRepoLive); 22 | 23 | /** 24 | * The utilities exported here are meant to be used to create server components 25 | * and server actions with native support for effect 26 | */ 27 | export const { effectComponent, effectAction } = integrate( 28 | GlobalLive, 29 | LocalLive 30 | ); 31 | -------------------------------------------------------------------------------- /components/TodoRow.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import { deleteTodo } from "@/actions/deleteTodo"; 4 | import { updateTodo } from "@/actions/updateTodo"; 5 | import { Todo } from "@/services/TodoRepo"; 6 | import { Schema } from "@effect/schema"; 7 | import { useEffect, useRef } from "react"; 8 | 9 | export const TodoRow = ({ 10 | todo, 11 | }: { 12 | todo: Schema.Schema.From; 13 | }) => { 14 | const ref = useRef(null); 15 | useEffect(() => { 16 | ref.current?.reset(); 17 | }); 18 | const isCompleted = todo.status === "COMPLETED"; 19 | return ( 20 |
  • 21 |
    22 | 28 | updateTodo(todo.id, isCompleted ? "CREATED" : "COMPLETED") 29 | } 30 | /> 31 | 32 |
    34 |
  • 35 | ); 36 | }; 37 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import { AddTodoForm } from "@/components/AddTodoForm"; 2 | import { TodoRow } from "@/components/TodoRow"; 3 | import { effectComponent } from "@/services/Runtime"; 4 | import { TodoArray, TodoRepo } from "@/services/TodoRepo"; 5 | import { Schema } from "@effect/schema"; 6 | import { Effect } from "effect"; 7 | 8 | const getAllTodos = Effect.gen(function* ($) { 9 | const todoRepo = yield* $(TodoRepo); 10 | const todos = yield* $(todoRepo.getAllTodos); 11 | return yield* $(Schema.encode(TodoArray)(todos)); 12 | }); 13 | 14 | export default effectComponent( 15 | Effect.gen(function* ($) { 16 | const todos = yield* $(getAllTodos); 17 | return ( 18 |
    19 |
    20 |

    todos

    21 | 22 |
    23 |
    24 | 25 | 26 |
      27 | {todos.map((todo) => ( 28 | 29 | ))} 30 |
    31 |
    32 |
    33 | ); 34 | }).pipe(Effect.withSpan("indexPage")) 35 | ); 36 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). 2 | 3 | ## Getting Started 4 | 5 | First, run the development server: 6 | 7 | ```bash 8 | npm run dev 9 | # or 10 | yarn dev 11 | # or 12 | pnpm dev 13 | # or 14 | bun dev 15 | ``` 16 | 17 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 18 | 19 | You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. 20 | 21 | This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. 22 | 23 | ## Learn More 24 | 25 | To learn more about Next.js, take a look at the following resources: 26 | 27 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 28 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 29 | 30 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 31 | 32 | ## Deploy on Vercel 33 | 34 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 35 | 36 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 37 | -------------------------------------------------------------------------------- /services/Tracing.ts: -------------------------------------------------------------------------------- 1 | import * as NodeSdk from "@effect/opentelemetry/NodeSdk"; 2 | import { Config, Secret, Context, Duration, Effect, Layer } from "effect"; 3 | import { 4 | BatchSpanProcessor, 5 | OTLPMetricExporter, 6 | OTLPTraceExporter, 7 | PeriodicExportingMetricReader, 8 | } from "../lib/otel"; 9 | 10 | export const HoneycombConfig = Config.nested("HONEYCOMB")( 11 | Config.all({ 12 | apiKey: Config.secret("API_KEY"), 13 | serviceName: Config.string("SERVICE_NAME"), 14 | }) 15 | ); 16 | 17 | export const TracingLive = Layer.unwrapEffect( 18 | Effect.gen(function* ($) { 19 | const { apiKey, serviceName } = yield* $(HoneycombConfig); 20 | const headers = { 21 | "x-honeycomb-team": Secret.value(apiKey), 22 | "x-honeycomb-dataset": serviceName, 23 | }; 24 | const traceExporter = new OTLPTraceExporter({ 25 | url: "https://api.honeycomb.io/v1/traces", 26 | headers, 27 | }); 28 | const metricExporter = new OTLPMetricExporter({ 29 | url: "https://api.honeycomb.io/v1/metrics", 30 | headers, 31 | }); 32 | return NodeSdk.layer(() => ({ 33 | resource: { serviceName }, 34 | spanProcessor: new BatchSpanProcessor(traceExporter, { 35 | scheduledDelayMillis: Duration.toMillis("1 seconds"), 36 | }), 37 | metricReader: new PeriodicExportingMetricReader({ 38 | exporter: metricExporter, 39 | exportIntervalMillis: Duration.toMillis("5 seconds"), 40 | }), 41 | })); 42 | }).pipe(Effect.orElseSucceed(() => Layer.succeedContext(Context.empty()))) 43 | ); 44 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- 1 | { 2 | "nodes": { 3 | "flake-utils": { 4 | "inputs": { 5 | "systems": "systems" 6 | }, 7 | "locked": { 8 | "lastModified": 1694529238, 9 | "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", 10 | "owner": "numtide", 11 | "repo": "flake-utils", 12 | "rev": "ff7b65b44d01cf9ba6a71320833626af21126384", 13 | "type": "github" 14 | }, 15 | "original": { 16 | "owner": "numtide", 17 | "repo": "flake-utils", 18 | "type": "github" 19 | } 20 | }, 21 | "nixpkgs": { 22 | "locked": { 23 | "lastModified": 1698855203, 24 | "narHash": "sha256-I9Vrh2ZXBZciGjgIXVhlHNc9XxRt0+bGlUGLGDXQ2r8=", 25 | "owner": "nixos", 26 | "repo": "nixpkgs", 27 | "rev": "39d2f0847ebbb57beb8fe3b992b043ad39afa0af", 28 | "type": "github" 29 | }, 30 | "original": { 31 | "owner": "nixos", 32 | "ref": "nixpkgs-unstable", 33 | "repo": "nixpkgs", 34 | "type": "github" 35 | } 36 | }, 37 | "root": { 38 | "inputs": { 39 | "flake-utils": "flake-utils", 40 | "nixpkgs": "nixpkgs" 41 | } 42 | }, 43 | "systems": { 44 | "locked": { 45 | "lastModified": 1681028828, 46 | "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 47 | "owner": "nix-systems", 48 | "repo": "default", 49 | "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 50 | "type": "github" 51 | }, 52 | "original": { 53 | "owner": "nix-systems", 54 | "repo": "default", 55 | "type": "github" 56 | } 57 | } 58 | }, 59 | "root": "root", 60 | "version": 7 61 | } 62 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "next-effect", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "node server.js", 7 | "build": "next build", 8 | "start": "NODE_ENV=production node server.js", 9 | "lint": "next lint", 10 | "check": "tsc -p tsconfig.json --noEmit", 11 | "migrate": "tsx database/migrate.ts", 12 | "clean": "rm -rf .next" 13 | }, 14 | "dependencies": { 15 | "@effect/opentelemetry": "^0.30.5", 16 | "@effect/schema": "^0.60.1", 17 | "@opentelemetry/api": "^1.7.0", 18 | "@opentelemetry/context-async-hooks": "^1.19.0", 19 | "@opentelemetry/exporter-metrics-otlp-proto": "^0.46.0", 20 | "@opentelemetry/exporter-trace-otlp-http": "^0.46.0", 21 | "@opentelemetry/exporter-trace-otlp-proto": "^0.46.0", 22 | "@opentelemetry/otlp-exporter-base": "^0.46.0", 23 | "@opentelemetry/otlp-transformer": "^0.46.0", 24 | "@opentelemetry/propagator-b3": "^1.19.0", 25 | "@opentelemetry/resources": "^1.19.0", 26 | "@opentelemetry/sdk-metrics": "^1.19.0", 27 | "@opentelemetry/sdk-node": "^0.46.0", 28 | "@opentelemetry/sdk-trace-base": "^1.19.0", 29 | "@sqlfx/sqlite": "^0.40.0", 30 | "better-sqlite3": "^9.2.2", 31 | "dotenv": "^16.3.1", 32 | "effect": "2.0.5", 33 | "next": "14.0.4", 34 | "react": "^18.2.0", 35 | "react-dom": "^18.2.0", 36 | "todomvc-app-css": "^2.4.3", 37 | "todomvc-common": "^1.0.5", 38 | "ts-node": "^10.9.2" 39 | }, 40 | "devDependencies": { 41 | "@effect/language-service": "^0.0.21", 42 | "@types/node": "^20.11.1", 43 | "@types/react": "18.2.48", 44 | "@types/react-dom": "18.2.18", 45 | "autoprefixer": "^10.4.16", 46 | "eslint": "^8.56.0", 47 | "eslint-config-next": "14.0.4", 48 | "postcss": "^8.4.33", 49 | "tailwindcss": "^3.4.1", 50 | "tsx": "^4.7.0", 51 | "typescript": "^5.3.3" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /services/TodoRepo.ts: -------------------------------------------------------------------------------- 1 | import { Schema } from "@effect/schema"; 2 | import { Context, Effect, Layer, Metric, Schedule } from "effect"; 3 | import { Sql, SqlLive } from "./Sql"; 4 | 5 | // 6 | // Data Model 7 | // 8 | 9 | export const TodoStatus = Schema.literal("COMPLETED", "CREATED"); 10 | 11 | export class Todo extends Schema.Class()({ 12 | id: Schema.number, 13 | title: Schema.string, 14 | status: TodoStatus, 15 | createdAt: Schema.DateFromString, 16 | updatedAt: Schema.DateFromString, 17 | }) {} 18 | 19 | export const TodoArray = Schema.array(Todo); 20 | 21 | export class GetAllTodosError extends Schema.TaggedError()( 22 | "GetAllTodosError", 23 | { message: Schema.string } 24 | ) {} 25 | 26 | // 27 | // Metrics 28 | // 29 | 30 | const getAllTodosErrorCount = Metric.counter("getAllTodosErrorCount"); 31 | const addTodoErrorCount = Metric.counter("addTodoErrorCount"); 32 | const deleteTodoErrorCount = Metric.counter("deleteTodoErrorCount"); 33 | const completeTodoErrorCount = Metric.counter("completeTodoErrorCount"); 34 | 35 | // 36 | // Service Definition 37 | // 38 | 39 | export interface TodoRepo { 40 | readonly _: unique symbol; 41 | } 42 | 43 | export const TodoRepo = Context.Tag< 44 | TodoRepo, 45 | Effect.Effect.Success 46 | >("@context/Todos"); 47 | 48 | // 49 | // Service Implementation 50 | // 51 | 52 | export const makeTodoRepo = Effect.gen(function* ($) { 53 | const sql = yield* $(Sql); 54 | 55 | const addTodo = (title: string) => 56 | Effect.gen(function* ($) { 57 | const rows = yield* $( 58 | Effect.orDie( 59 | sql`INSERT INTO todos ${sql.insert([{ title }])} RETURNING *` 60 | ), 61 | Effect.withSpan("addTodoToDb") 62 | ); 63 | const [todo] = yield* $( 64 | Effect.orDie(Schema.parse(Schema.tuple(Todo))(rows)), 65 | Effect.withSpan("parseResponse") 66 | ); 67 | return todo; 68 | }).pipe( 69 | sql.withTransaction, 70 | Metric.trackErrorWith(addTodoErrorCount, () => 1), 71 | Effect.withSpan("addTodo") 72 | ); 73 | 74 | const deleteTodo = (id: number) => 75 | Effect.gen(function* ($) { 76 | yield* $( 77 | Effect.orDie(sql`DELETE FROM todos WHERE id = ${id}`), 78 | Effect.withSpan("deleteFromDb") 79 | ); 80 | }).pipe( 81 | sql.withTransaction, 82 | Metric.trackErrorWith(deleteTodoErrorCount, () => 1), 83 | Effect.withSpan("deleteTodo") 84 | ); 85 | 86 | const updateTodo = (id: number, status: Todo["status"]) => 87 | Effect.gen(function* ($) { 88 | yield* $( 89 | Effect.orDie(sql`UPDATE todos SET status = ${status} WHERE id = ${id}`), 90 | Effect.withSpan("updateTodosStatement") 91 | ); 92 | }).pipe( 93 | sql.withTransaction, 94 | Metric.trackErrorWith(completeTodoErrorCount, () => 1), 95 | Effect.withSpan("updateTodo") 96 | ); 97 | 98 | const getAllTodos = Effect.gen(function* ($) { 99 | if (Math.random() > 0.5) { 100 | return yield* $(new GetAllTodosError({ message: "My Random Error..." })); 101 | } 102 | const rows = yield* $( 103 | Effect.orDie(sql`SELECT * from todos;`), 104 | Effect.withSpan("selectTodosStatement") 105 | ); 106 | const todos = yield* $( 107 | Effect.orDie(Schema.parse(TodoArray)(rows)), 108 | Effect.withSpan("parseTodos") 109 | ); 110 | return todos; 111 | }).pipe( 112 | Metric.trackErrorWith(getAllTodosErrorCount, () => 1), 113 | Effect.withSpan("getAllTodos"), 114 | Effect.retry(Schedule.exponential("10 millis")) 115 | ); 116 | 117 | return { 118 | getAllTodos, 119 | addTodo, 120 | deleteTodo, 121 | updateTodo, 122 | }; 123 | }); 124 | 125 | export const TodoRepoLive = Layer.effect(TodoRepo, makeTodoRepo).pipe( 126 | Layer.provide(SqlLive) 127 | ); 128 | -------------------------------------------------------------------------------- /lib/effect.ts: -------------------------------------------------------------------------------- 1 | import { ParseResult, Schema } from "@effect/schema"; 2 | import { Effect, Exit, Layer, Runtime, Scope } from "effect"; 3 | import { pretty } from "effect/Cause"; 4 | import { globalValue } from "effect/GlobalValue"; 5 | import { defaultRuntime, makeFiberFailure } from "effect/Runtime"; 6 | import { CloseableScope } from "effect/Scope"; 7 | 8 | const FormDataSchema = Schema.unknown.pipe( 9 | Schema.filter((u): u is FormData => u instanceof FormData) 10 | ); 11 | 12 | export const formData = ( 13 | schema: Schema.Schema 14 | ) => 15 | Schema.transformOrFail( 16 | Schema.to(FormDataSchema), 17 | schema, 18 | (_) => Schema.parse(Schema.from(schema))(Object.fromEntries(_)), 19 | (_) => 20 | ParseResult.map(Schema.encode(Schema.from(schema))(_), (i) => { 21 | const data = new FormData(); 22 | Object.keys(i as any).map((k) => { 23 | data.append(k, i[k]); 24 | }); 25 | return data; 26 | }) 27 | ); 28 | 29 | export interface NextRuntime { 30 | cleanup: Effect.Effect; 31 | runEffect: (body: Effect.Effect) => Promise; 32 | runtime: Promise & { scope: CloseableScope }>; 33 | childRuntime: { 34 | (layer: Layer.Layer): NextRuntime; 35 | }; 36 | effectComponent: (body: Effect.Effect) => () => Promise; 37 | effectAction: []>( 38 | ...schemas: Schemas 39 | ) => < 40 | E, 41 | A, 42 | Args extends { [k in keyof Schemas]: Schema.Schema.To } 43 | >( 44 | body: (...args: Args) => Effect.Effect 45 | ) => ( 46 | ...args: { 47 | [k in keyof Args]: k extends keyof Schemas 48 | ? Schemas[k] extends Schema.Schema 49 | ? Schema.Schema.From 50 | : never 51 | : never; 52 | } extends infer X extends ReadonlyArray 53 | ? X 54 | : [] 55 | ) => Promise; 56 | } 57 | 58 | const nextRuntime: { 59 | ( 60 | parent: Promise>, 61 | layer: Layer.Layer 62 | ): NextRuntime; 63 | (layer: Layer.Layer): NextRuntime; 64 | } = function () { 65 | const layer: Layer.Layer = 66 | arguments.length === 1 ? arguments[0] : arguments[1]; 67 | 68 | const parent: Promise> = 69 | arguments.length === 1 ? Promise.resolve(defaultRuntime) : arguments[0]; 70 | 71 | const makeRuntime = parent.then((runtime: Runtime.Runtime) => 72 | Runtime.runPromise(runtime)( 73 | Effect.gen(function* ($) { 74 | const scope = yield* $(Scope.make()); 75 | const runtime = yield* $(Layer.toRuntime(layer), Scope.extend(scope)); 76 | return { 77 | ...runtime, 78 | scope, 79 | }; 80 | }) 81 | ) 82 | ); 83 | 84 | const run = async ( 85 | body: Effect.Effect, E, A> 86 | ) => { 87 | const runtime = await makeRuntime; 88 | return await new Promise((res, rej) => { 89 | const fiber = Runtime.runFork(runtime)(body); 90 | fiber.addObserver((exit) => { 91 | if (Exit.isSuccess(exit)) { 92 | res(exit.value); 93 | } else { 94 | const failure = makeFiberFailure(exit.cause); 95 | const error = new Error(); 96 | error.message = failure.message; 97 | error.name = failure.name; 98 | error.stack = pretty(exit.cause); 99 | rej(error); 100 | } 101 | }); 102 | }); 103 | }; 104 | 105 | return { 106 | cleanup: Effect.flatMap( 107 | Effect.promise(() => makeRuntime), 108 | ({ scope }) => Scope.close(scope, Exit.unit) 109 | ), 110 | runEffect: run, 111 | runtime: makeRuntime, 112 | childRuntime: (layer: any) => nextRuntime(makeRuntime, layer), 113 | effectComponent: (self: any) => () => run(self), 114 | effectAction: 115 | []>(...schemas: Schemas) => 116 | ( 117 | body: ( 118 | ...args: { [k in keyof Schemas]: Schema.Schema.To } 119 | ) => Effect.Effect 120 | ) => 121 | ( 122 | ...args: { [k in keyof Schemas]: Schema.Schema.From } 123 | ): Promise => { 124 | return Effect.all( 125 | schemas.map((schema, i) => Schema.parse(schema)(args[i])) 126 | ).pipe( 127 | Effect.orDie, 128 | Effect.flatMap((decoded) => body(...(decoded as any))), 129 | run 130 | ); 131 | }, 132 | } as any; 133 | }; 134 | 135 | export const integrate = ( 136 | globalLayer: Layer.Layer, 137 | localLayer: Layer.Layer 138 | ) => { 139 | const { childRuntime } = globalValue("@app/GlobalRuntime", () => { 140 | const runtime = nextRuntime(globalLayer); 141 | const hook = () => { 142 | const cleanupId = "runtime/cleanup"; 143 | if (cleanupId in globalThis) { 144 | return; 145 | } 146 | Object.assign(globalThis, { cleanupId: true }); 147 | Effect.runFork( 148 | Effect.tap(runtime.cleanup, () => 149 | Effect.sync(() => { 150 | process.exit(0); 151 | }) 152 | ) 153 | ); 154 | }; 155 | process.once("SIGTERM", hook); 156 | process.once("SIGINT", hook); 157 | return runtime; 158 | }); 159 | 160 | const { effectComponent, effectAction } = childRuntime(localLayer); 161 | 162 | return { effectComponent, effectAction }; 163 | }; 164 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | dependencies: 8 | '@effect/opentelemetry': 9 | specifier: ^0.30.5 10 | version: 0.30.5(@opentelemetry/api@1.7.0)(@opentelemetry/resources@1.19.0)(@opentelemetry/sdk-metrics@1.19.0)(@opentelemetry/sdk-trace-base@1.19.0)(@opentelemetry/semantic-conventions@1.19.0)(effect@2.0.5) 11 | '@effect/schema': 12 | specifier: ^0.60.1 13 | version: 0.60.1(effect@2.0.5)(fast-check@3.15.0) 14 | '@opentelemetry/api': 15 | specifier: ^1.7.0 16 | version: 1.7.0 17 | '@opentelemetry/context-async-hooks': 18 | specifier: ^1.19.0 19 | version: 1.19.0(@opentelemetry/api@1.7.0) 20 | '@opentelemetry/exporter-metrics-otlp-proto': 21 | specifier: ^0.46.0 22 | version: 0.46.0(@opentelemetry/api@1.7.0) 23 | '@opentelemetry/exporter-trace-otlp-http': 24 | specifier: ^0.46.0 25 | version: 0.46.0(@opentelemetry/api@1.7.0) 26 | '@opentelemetry/exporter-trace-otlp-proto': 27 | specifier: ^0.46.0 28 | version: 0.46.0(@opentelemetry/api@1.7.0) 29 | '@opentelemetry/otlp-exporter-base': 30 | specifier: ^0.46.0 31 | version: 0.46.0(@opentelemetry/api@1.7.0) 32 | '@opentelemetry/otlp-transformer': 33 | specifier: ^0.46.0 34 | version: 0.46.0(@opentelemetry/api@1.7.0) 35 | '@opentelemetry/propagator-b3': 36 | specifier: ^1.19.0 37 | version: 1.19.0(@opentelemetry/api@1.7.0) 38 | '@opentelemetry/resources': 39 | specifier: ^1.19.0 40 | version: 1.19.0(@opentelemetry/api@1.7.0) 41 | '@opentelemetry/sdk-metrics': 42 | specifier: ^1.19.0 43 | version: 1.19.0(@opentelemetry/api@1.7.0) 44 | '@opentelemetry/sdk-node': 45 | specifier: ^0.46.0 46 | version: 0.46.0(@opentelemetry/api@1.7.0) 47 | '@opentelemetry/sdk-trace-base': 48 | specifier: ^1.19.0 49 | version: 1.19.0(@opentelemetry/api@1.7.0) 50 | '@sqlfx/sqlite': 51 | specifier: ^0.40.0 52 | version: 0.40.0(@effect/schema@0.60.1)(better-sqlite3@9.2.2)(effect@2.0.5) 53 | better-sqlite3: 54 | specifier: ^9.2.2 55 | version: 9.2.2 56 | dotenv: 57 | specifier: ^16.3.1 58 | version: 16.3.1 59 | effect: 60 | specifier: 2.0.5 61 | version: 2.0.5 62 | next: 63 | specifier: 14.0.4 64 | version: 14.0.4(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0) 65 | react: 66 | specifier: ^18.2.0 67 | version: 18.2.0 68 | react-dom: 69 | specifier: ^18.2.0 70 | version: 18.2.0(react@18.2.0) 71 | todomvc-app-css: 72 | specifier: ^2.4.3 73 | version: 2.4.3 74 | todomvc-common: 75 | specifier: ^1.0.5 76 | version: 1.0.5 77 | ts-node: 78 | specifier: ^10.9.2 79 | version: 10.9.2(@types/node@20.11.1)(typescript@5.3.3) 80 | 81 | devDependencies: 82 | '@effect/language-service': 83 | specifier: ^0.0.21 84 | version: 0.0.21 85 | '@types/node': 86 | specifier: ^20.11.1 87 | version: 20.11.1 88 | '@types/react': 89 | specifier: 18.2.48 90 | version: 18.2.48 91 | '@types/react-dom': 92 | specifier: 18.2.18 93 | version: 18.2.18 94 | autoprefixer: 95 | specifier: ^10.4.16 96 | version: 10.4.16(postcss@8.4.33) 97 | eslint: 98 | specifier: ^8.56.0 99 | version: 8.56.0 100 | eslint-config-next: 101 | specifier: 14.0.4 102 | version: 14.0.4(eslint@8.56.0)(typescript@5.3.3) 103 | postcss: 104 | specifier: ^8.4.33 105 | version: 8.4.33 106 | tailwindcss: 107 | specifier: ^3.4.1 108 | version: 3.4.1(ts-node@10.9.2) 109 | tsx: 110 | specifier: ^4.7.0 111 | version: 4.7.0 112 | typescript: 113 | specifier: ^5.3.3 114 | version: 5.3.3 115 | 116 | packages: 117 | 118 | /@aashutoshrathi/word-wrap@1.2.6: 119 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 120 | engines: {node: '>=0.10.0'} 121 | dev: true 122 | 123 | /@alloc/quick-lru@5.2.0: 124 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 125 | engines: {node: '>=10'} 126 | dev: true 127 | 128 | /@babel/runtime@7.23.8: 129 | resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==} 130 | engines: {node: '>=6.9.0'} 131 | dependencies: 132 | regenerator-runtime: 0.14.1 133 | dev: true 134 | 135 | /@cspotcode/source-map-support@0.8.1: 136 | resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} 137 | engines: {node: '>=12'} 138 | dependencies: 139 | '@jridgewell/trace-mapping': 0.3.9 140 | 141 | /@effect/language-service@0.0.21: 142 | resolution: {integrity: sha512-e8vfKbjnbYiyneBincEFS0tzXluopGK77OkVFbPRtUbNDS5tJfb+jiwOQEiqASDsadcZmd+9J9+Q6v/z7GuN2g==} 143 | dev: true 144 | 145 | /@effect/opentelemetry@0.30.5(@opentelemetry/api@1.7.0)(@opentelemetry/resources@1.19.0)(@opentelemetry/sdk-metrics@1.19.0)(@opentelemetry/sdk-trace-base@1.19.0)(@opentelemetry/semantic-conventions@1.19.0)(effect@2.0.5): 146 | resolution: {integrity: sha512-2FRco9i3UeDLboFSliVJL/Xvdk3z3oUHrVt9DLK6L9Q7LN0IrcyVsludLft+nPBVS6VtqNTqOxcAt8yIXHkDcg==} 147 | peerDependencies: 148 | '@opentelemetry/api': ^1.6 149 | '@opentelemetry/resources': ^1.17 150 | '@opentelemetry/sdk-metrics': ^1.17 151 | '@opentelemetry/sdk-trace-base': ^1.17 152 | '@opentelemetry/sdk-trace-node': ^1.17 153 | '@opentelemetry/sdk-trace-web': ^1.17 154 | '@opentelemetry/semantic-conventions': ^1.17 155 | effect: ^2.0.5 156 | peerDependenciesMeta: 157 | '@opentelemetry/sdk-metrics': 158 | optional: true 159 | '@opentelemetry/sdk-trace-base': 160 | optional: true 161 | '@opentelemetry/sdk-trace-node': 162 | optional: true 163 | '@opentelemetry/sdk-trace-web': 164 | optional: true 165 | dependencies: 166 | '@opentelemetry/api': 1.7.0 167 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 168 | '@opentelemetry/sdk-metrics': 1.19.0(@opentelemetry/api@1.7.0) 169 | '@opentelemetry/sdk-trace-base': 1.19.0(@opentelemetry/api@1.7.0) 170 | '@opentelemetry/semantic-conventions': 1.19.0 171 | effect: 2.0.5 172 | dev: false 173 | 174 | /@effect/schema@0.60.1(effect@2.0.5)(fast-check@3.15.0): 175 | resolution: {integrity: sha512-akzHdUrja0qI9B9k+eUyfC4dM5EmDclG9LULnA4D5DlsAdnkSj5wz/EgDrq4QdtmP2ZZ/lBFw1yUzxdZ7UWauw==} 176 | peerDependencies: 177 | effect: ^2.0.5 178 | fast-check: ^3.13.2 179 | dependencies: 180 | effect: 2.0.5 181 | fast-check: 3.15.0 182 | dev: false 183 | 184 | /@esbuild/aix-ppc64@0.19.11: 185 | resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} 186 | engines: {node: '>=12'} 187 | cpu: [ppc64] 188 | os: [aix] 189 | requiresBuild: true 190 | dev: true 191 | optional: true 192 | 193 | /@esbuild/android-arm64@0.19.11: 194 | resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} 195 | engines: {node: '>=12'} 196 | cpu: [arm64] 197 | os: [android] 198 | requiresBuild: true 199 | dev: true 200 | optional: true 201 | 202 | /@esbuild/android-arm@0.19.11: 203 | resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} 204 | engines: {node: '>=12'} 205 | cpu: [arm] 206 | os: [android] 207 | requiresBuild: true 208 | dev: true 209 | optional: true 210 | 211 | /@esbuild/android-x64@0.19.11: 212 | resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} 213 | engines: {node: '>=12'} 214 | cpu: [x64] 215 | os: [android] 216 | requiresBuild: true 217 | dev: true 218 | optional: true 219 | 220 | /@esbuild/darwin-arm64@0.19.11: 221 | resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} 222 | engines: {node: '>=12'} 223 | cpu: [arm64] 224 | os: [darwin] 225 | requiresBuild: true 226 | dev: true 227 | optional: true 228 | 229 | /@esbuild/darwin-x64@0.19.11: 230 | resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} 231 | engines: {node: '>=12'} 232 | cpu: [x64] 233 | os: [darwin] 234 | requiresBuild: true 235 | dev: true 236 | optional: true 237 | 238 | /@esbuild/freebsd-arm64@0.19.11: 239 | resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} 240 | engines: {node: '>=12'} 241 | cpu: [arm64] 242 | os: [freebsd] 243 | requiresBuild: true 244 | dev: true 245 | optional: true 246 | 247 | /@esbuild/freebsd-x64@0.19.11: 248 | resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} 249 | engines: {node: '>=12'} 250 | cpu: [x64] 251 | os: [freebsd] 252 | requiresBuild: true 253 | dev: true 254 | optional: true 255 | 256 | /@esbuild/linux-arm64@0.19.11: 257 | resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} 258 | engines: {node: '>=12'} 259 | cpu: [arm64] 260 | os: [linux] 261 | requiresBuild: true 262 | dev: true 263 | optional: true 264 | 265 | /@esbuild/linux-arm@0.19.11: 266 | resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} 267 | engines: {node: '>=12'} 268 | cpu: [arm] 269 | os: [linux] 270 | requiresBuild: true 271 | dev: true 272 | optional: true 273 | 274 | /@esbuild/linux-ia32@0.19.11: 275 | resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} 276 | engines: {node: '>=12'} 277 | cpu: [ia32] 278 | os: [linux] 279 | requiresBuild: true 280 | dev: true 281 | optional: true 282 | 283 | /@esbuild/linux-loong64@0.19.11: 284 | resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} 285 | engines: {node: '>=12'} 286 | cpu: [loong64] 287 | os: [linux] 288 | requiresBuild: true 289 | dev: true 290 | optional: true 291 | 292 | /@esbuild/linux-mips64el@0.19.11: 293 | resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} 294 | engines: {node: '>=12'} 295 | cpu: [mips64el] 296 | os: [linux] 297 | requiresBuild: true 298 | dev: true 299 | optional: true 300 | 301 | /@esbuild/linux-ppc64@0.19.11: 302 | resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} 303 | engines: {node: '>=12'} 304 | cpu: [ppc64] 305 | os: [linux] 306 | requiresBuild: true 307 | dev: true 308 | optional: true 309 | 310 | /@esbuild/linux-riscv64@0.19.11: 311 | resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} 312 | engines: {node: '>=12'} 313 | cpu: [riscv64] 314 | os: [linux] 315 | requiresBuild: true 316 | dev: true 317 | optional: true 318 | 319 | /@esbuild/linux-s390x@0.19.11: 320 | resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} 321 | engines: {node: '>=12'} 322 | cpu: [s390x] 323 | os: [linux] 324 | requiresBuild: true 325 | dev: true 326 | optional: true 327 | 328 | /@esbuild/linux-x64@0.19.11: 329 | resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} 330 | engines: {node: '>=12'} 331 | cpu: [x64] 332 | os: [linux] 333 | requiresBuild: true 334 | dev: true 335 | optional: true 336 | 337 | /@esbuild/netbsd-x64@0.19.11: 338 | resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} 339 | engines: {node: '>=12'} 340 | cpu: [x64] 341 | os: [netbsd] 342 | requiresBuild: true 343 | dev: true 344 | optional: true 345 | 346 | /@esbuild/openbsd-x64@0.19.11: 347 | resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} 348 | engines: {node: '>=12'} 349 | cpu: [x64] 350 | os: [openbsd] 351 | requiresBuild: true 352 | dev: true 353 | optional: true 354 | 355 | /@esbuild/sunos-x64@0.19.11: 356 | resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} 357 | engines: {node: '>=12'} 358 | cpu: [x64] 359 | os: [sunos] 360 | requiresBuild: true 361 | dev: true 362 | optional: true 363 | 364 | /@esbuild/win32-arm64@0.19.11: 365 | resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} 366 | engines: {node: '>=12'} 367 | cpu: [arm64] 368 | os: [win32] 369 | requiresBuild: true 370 | dev: true 371 | optional: true 372 | 373 | /@esbuild/win32-ia32@0.19.11: 374 | resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} 375 | engines: {node: '>=12'} 376 | cpu: [ia32] 377 | os: [win32] 378 | requiresBuild: true 379 | dev: true 380 | optional: true 381 | 382 | /@esbuild/win32-x64@0.19.11: 383 | resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} 384 | engines: {node: '>=12'} 385 | cpu: [x64] 386 | os: [win32] 387 | requiresBuild: true 388 | dev: true 389 | optional: true 390 | 391 | /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): 392 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 393 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 394 | peerDependencies: 395 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 396 | dependencies: 397 | eslint: 8.56.0 398 | eslint-visitor-keys: 3.4.3 399 | dev: true 400 | 401 | /@eslint-community/regexpp@4.10.0: 402 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} 403 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 404 | dev: true 405 | 406 | /@eslint/eslintrc@2.1.4: 407 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 408 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 409 | dependencies: 410 | ajv: 6.12.6 411 | debug: 4.3.4 412 | espree: 9.6.1 413 | globals: 13.24.0 414 | ignore: 5.3.0 415 | import-fresh: 3.3.0 416 | js-yaml: 4.1.0 417 | minimatch: 3.1.2 418 | strip-json-comments: 3.1.1 419 | transitivePeerDependencies: 420 | - supports-color 421 | dev: true 422 | 423 | /@eslint/js@8.56.0: 424 | resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} 425 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 426 | dev: true 427 | 428 | /@grpc/grpc-js@1.9.13: 429 | resolution: {integrity: sha512-OEZZu9v9AA+7/tghMDE8o5DAMD5THVnwSqDWuh7PPYO5287rTyqy0xEHT6/e4pbqSrhyLPdQFsam4TwFQVVIIw==} 430 | engines: {node: ^8.13.0 || >=10.10.0} 431 | dependencies: 432 | '@grpc/proto-loader': 0.7.10 433 | '@types/node': 20.11.1 434 | dev: false 435 | 436 | /@grpc/proto-loader@0.7.10: 437 | resolution: {integrity: sha512-CAqDfoaQ8ykFd9zqBDn4k6iWT9loLAlc2ETmDFS9JCD70gDcnA4L3AFEo2iV7KyAtAAHFW9ftq1Fz+Vsgq80RQ==} 438 | engines: {node: '>=6'} 439 | hasBin: true 440 | dependencies: 441 | lodash.camelcase: 4.3.0 442 | long: 5.2.3 443 | protobufjs: 7.2.5 444 | yargs: 17.7.2 445 | dev: false 446 | 447 | /@humanwhocodes/config-array@0.11.14: 448 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} 449 | engines: {node: '>=10.10.0'} 450 | dependencies: 451 | '@humanwhocodes/object-schema': 2.0.2 452 | debug: 4.3.4 453 | minimatch: 3.1.2 454 | transitivePeerDependencies: 455 | - supports-color 456 | dev: true 457 | 458 | /@humanwhocodes/module-importer@1.0.1: 459 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 460 | engines: {node: '>=12.22'} 461 | dev: true 462 | 463 | /@humanwhocodes/object-schema@2.0.2: 464 | resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} 465 | dev: true 466 | 467 | /@isaacs/cliui@8.0.2: 468 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 469 | engines: {node: '>=12'} 470 | dependencies: 471 | string-width: 5.1.2 472 | string-width-cjs: /string-width@4.2.3 473 | strip-ansi: 7.1.0 474 | strip-ansi-cjs: /strip-ansi@6.0.1 475 | wrap-ansi: 8.1.0 476 | wrap-ansi-cjs: /wrap-ansi@7.0.0 477 | dev: true 478 | 479 | /@jridgewell/gen-mapping@0.3.3: 480 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 481 | engines: {node: '>=6.0.0'} 482 | dependencies: 483 | '@jridgewell/set-array': 1.1.2 484 | '@jridgewell/sourcemap-codec': 1.4.15 485 | '@jridgewell/trace-mapping': 0.3.21 486 | dev: true 487 | 488 | /@jridgewell/resolve-uri@3.1.1: 489 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 490 | engines: {node: '>=6.0.0'} 491 | 492 | /@jridgewell/set-array@1.1.2: 493 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 494 | engines: {node: '>=6.0.0'} 495 | dev: true 496 | 497 | /@jridgewell/sourcemap-codec@1.4.15: 498 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 499 | 500 | /@jridgewell/trace-mapping@0.3.21: 501 | resolution: {integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==} 502 | dependencies: 503 | '@jridgewell/resolve-uri': 3.1.1 504 | '@jridgewell/sourcemap-codec': 1.4.15 505 | dev: true 506 | 507 | /@jridgewell/trace-mapping@0.3.9: 508 | resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} 509 | dependencies: 510 | '@jridgewell/resolve-uri': 3.1.1 511 | '@jridgewell/sourcemap-codec': 1.4.15 512 | 513 | /@next/env@14.0.4: 514 | resolution: {integrity: sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==} 515 | dev: false 516 | 517 | /@next/eslint-plugin-next@14.0.4: 518 | resolution: {integrity: sha512-U3qMNHmEZoVmHA0j/57nRfi3AscXNvkOnxDmle/69Jz/G0o/gWjXTDdlgILZdrxQ0Lw/jv2mPW8PGy0EGIHXhQ==} 519 | dependencies: 520 | glob: 7.1.7 521 | dev: true 522 | 523 | /@next/swc-darwin-arm64@14.0.4: 524 | resolution: {integrity: sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==} 525 | engines: {node: '>= 10'} 526 | cpu: [arm64] 527 | os: [darwin] 528 | requiresBuild: true 529 | dev: false 530 | optional: true 531 | 532 | /@next/swc-darwin-x64@14.0.4: 533 | resolution: {integrity: sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==} 534 | engines: {node: '>= 10'} 535 | cpu: [x64] 536 | os: [darwin] 537 | requiresBuild: true 538 | dev: false 539 | optional: true 540 | 541 | /@next/swc-linux-arm64-gnu@14.0.4: 542 | resolution: {integrity: sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==} 543 | engines: {node: '>= 10'} 544 | cpu: [arm64] 545 | os: [linux] 546 | requiresBuild: true 547 | dev: false 548 | optional: true 549 | 550 | /@next/swc-linux-arm64-musl@14.0.4: 551 | resolution: {integrity: sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==} 552 | engines: {node: '>= 10'} 553 | cpu: [arm64] 554 | os: [linux] 555 | requiresBuild: true 556 | dev: false 557 | optional: true 558 | 559 | /@next/swc-linux-x64-gnu@14.0.4: 560 | resolution: {integrity: sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==} 561 | engines: {node: '>= 10'} 562 | cpu: [x64] 563 | os: [linux] 564 | requiresBuild: true 565 | dev: false 566 | optional: true 567 | 568 | /@next/swc-linux-x64-musl@14.0.4: 569 | resolution: {integrity: sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==} 570 | engines: {node: '>= 10'} 571 | cpu: [x64] 572 | os: [linux] 573 | requiresBuild: true 574 | dev: false 575 | optional: true 576 | 577 | /@next/swc-win32-arm64-msvc@14.0.4: 578 | resolution: {integrity: sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==} 579 | engines: {node: '>= 10'} 580 | cpu: [arm64] 581 | os: [win32] 582 | requiresBuild: true 583 | dev: false 584 | optional: true 585 | 586 | /@next/swc-win32-ia32-msvc@14.0.4: 587 | resolution: {integrity: sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==} 588 | engines: {node: '>= 10'} 589 | cpu: [ia32] 590 | os: [win32] 591 | requiresBuild: true 592 | dev: false 593 | optional: true 594 | 595 | /@next/swc-win32-x64-msvc@14.0.4: 596 | resolution: {integrity: sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==} 597 | engines: {node: '>= 10'} 598 | cpu: [x64] 599 | os: [win32] 600 | requiresBuild: true 601 | dev: false 602 | optional: true 603 | 604 | /@nodelib/fs.scandir@2.1.5: 605 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 606 | engines: {node: '>= 8'} 607 | dependencies: 608 | '@nodelib/fs.stat': 2.0.5 609 | run-parallel: 1.2.0 610 | dev: true 611 | 612 | /@nodelib/fs.stat@2.0.5: 613 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 614 | engines: {node: '>= 8'} 615 | dev: true 616 | 617 | /@nodelib/fs.walk@1.2.8: 618 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 619 | engines: {node: '>= 8'} 620 | dependencies: 621 | '@nodelib/fs.scandir': 2.1.5 622 | fastq: 1.16.0 623 | dev: true 624 | 625 | /@opentelemetry/api-logs@0.46.0: 626 | resolution: {integrity: sha512-+9BcqfiEDGPXEIo+o3tso/aqGM5dGbGwAkGVp3FPpZ8GlkK1YlaKRd9gMVyPaeRATwvO5wYGGnCsAc/sMMM9Qw==} 627 | engines: {node: '>=14'} 628 | dependencies: 629 | '@opentelemetry/api': 1.7.0 630 | dev: false 631 | 632 | /@opentelemetry/api@1.7.0: 633 | resolution: {integrity: sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==} 634 | engines: {node: '>=8.0.0'} 635 | dev: false 636 | 637 | /@opentelemetry/context-async-hooks@1.19.0(@opentelemetry/api@1.7.0): 638 | resolution: {integrity: sha512-0i1ECOc9daKK3rjUgDDXf0GDD5XfCou5lXnt2DALIc2qKoruPPcesobNKE54laSVUWnC3jX26RzuOa31g0V32A==} 639 | engines: {node: '>=14'} 640 | peerDependencies: 641 | '@opentelemetry/api': '>=1.0.0 <1.8.0' 642 | dependencies: 643 | '@opentelemetry/api': 1.7.0 644 | dev: false 645 | 646 | /@opentelemetry/core@1.19.0(@opentelemetry/api@1.7.0): 647 | resolution: {integrity: sha512-w42AukJh3TP8R0IZZOVJVM/kMWu8g+lm4LzT70WtuKqhwq7KVhcDzZZuZinWZa6TtQCl7Smt2wolEYzpHabOgw==} 648 | engines: {node: '>=14'} 649 | peerDependencies: 650 | '@opentelemetry/api': '>=1.0.0 <1.8.0' 651 | dependencies: 652 | '@opentelemetry/api': 1.7.0 653 | '@opentelemetry/semantic-conventions': 1.19.0 654 | dev: false 655 | 656 | /@opentelemetry/exporter-metrics-otlp-http@0.46.0(@opentelemetry/api@1.7.0): 657 | resolution: {integrity: sha512-7dyNATgM1LCKv4RGf3zsbHZMQNILQ6bxZ5/a56ptGDgg6Bz8Iz8jghonBx/K++A4QNMnu7Ppamm5qL2xlWEYjg==} 658 | engines: {node: '>=14'} 659 | peerDependencies: 660 | '@opentelemetry/api': ^1.3.0 661 | dependencies: 662 | '@opentelemetry/api': 1.7.0 663 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 664 | '@opentelemetry/otlp-exporter-base': 0.46.0(@opentelemetry/api@1.7.0) 665 | '@opentelemetry/otlp-transformer': 0.46.0(@opentelemetry/api@1.7.0) 666 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 667 | '@opentelemetry/sdk-metrics': 1.19.0(@opentelemetry/api@1.7.0) 668 | dev: false 669 | 670 | /@opentelemetry/exporter-metrics-otlp-proto@0.46.0(@opentelemetry/api@1.7.0): 671 | resolution: {integrity: sha512-2nj4YoTMcx/PixfTp+Zj7G7uJm9twzlq50TVy9rCRLRC30qSuvNYcEXymNYI1GtOZmQT6FQB1AHE9+JZNetVNg==} 672 | engines: {node: '>=14'} 673 | peerDependencies: 674 | '@opentelemetry/api': ^1.3.0 675 | dependencies: 676 | '@opentelemetry/api': 1.7.0 677 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 678 | '@opentelemetry/exporter-metrics-otlp-http': 0.46.0(@opentelemetry/api@1.7.0) 679 | '@opentelemetry/otlp-exporter-base': 0.46.0(@opentelemetry/api@1.7.0) 680 | '@opentelemetry/otlp-proto-exporter-base': 0.46.0(@opentelemetry/api@1.7.0) 681 | '@opentelemetry/otlp-transformer': 0.46.0(@opentelemetry/api@1.7.0) 682 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 683 | '@opentelemetry/sdk-metrics': 1.19.0(@opentelemetry/api@1.7.0) 684 | dev: false 685 | 686 | /@opentelemetry/exporter-trace-otlp-grpc@0.46.0(@opentelemetry/api@1.7.0): 687 | resolution: {integrity: sha512-kR4kehnfIhv7v/2MuNYfrlh9A/ZtQofwCzurTIplornUjdzhKDGgjui1NkNTqTfM1QkqfCiavGsf5hwocx29bA==} 688 | engines: {node: '>=14'} 689 | peerDependencies: 690 | '@opentelemetry/api': ^1.0.0 691 | dependencies: 692 | '@grpc/grpc-js': 1.9.13 693 | '@opentelemetry/api': 1.7.0 694 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 695 | '@opentelemetry/otlp-grpc-exporter-base': 0.46.0(@opentelemetry/api@1.7.0) 696 | '@opentelemetry/otlp-transformer': 0.46.0(@opentelemetry/api@1.7.0) 697 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 698 | '@opentelemetry/sdk-trace-base': 1.19.0(@opentelemetry/api@1.7.0) 699 | dev: false 700 | 701 | /@opentelemetry/exporter-trace-otlp-http@0.46.0(@opentelemetry/api@1.7.0): 702 | resolution: {integrity: sha512-vZ2pYOB+qrQ+jnKPY6Gnd58y1k/Ti//Ny6/XsSX7/jED0X77crtSVgC6N5UA0JiGJOh6QB2KE9gaH99010XHzg==} 703 | engines: {node: '>=14'} 704 | peerDependencies: 705 | '@opentelemetry/api': ^1.0.0 706 | dependencies: 707 | '@opentelemetry/api': 1.7.0 708 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 709 | '@opentelemetry/otlp-exporter-base': 0.46.0(@opentelemetry/api@1.7.0) 710 | '@opentelemetry/otlp-transformer': 0.46.0(@opentelemetry/api@1.7.0) 711 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 712 | '@opentelemetry/sdk-trace-base': 1.19.0(@opentelemetry/api@1.7.0) 713 | dev: false 714 | 715 | /@opentelemetry/exporter-trace-otlp-proto@0.46.0(@opentelemetry/api@1.7.0): 716 | resolution: {integrity: sha512-A7PftDM57w1TLiirrhi8ceAnCpYkpUBObELdn239IyYF67zwngImGfBLf5Yo3TTAOA2Oj1TL76L8zWVL8W+Suw==} 717 | engines: {node: '>=14'} 718 | peerDependencies: 719 | '@opentelemetry/api': ^1.0.0 720 | dependencies: 721 | '@opentelemetry/api': 1.7.0 722 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 723 | '@opentelemetry/otlp-exporter-base': 0.46.0(@opentelemetry/api@1.7.0) 724 | '@opentelemetry/otlp-proto-exporter-base': 0.46.0(@opentelemetry/api@1.7.0) 725 | '@opentelemetry/otlp-transformer': 0.46.0(@opentelemetry/api@1.7.0) 726 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 727 | '@opentelemetry/sdk-trace-base': 1.19.0(@opentelemetry/api@1.7.0) 728 | dev: false 729 | 730 | /@opentelemetry/exporter-zipkin@1.19.0(@opentelemetry/api@1.7.0): 731 | resolution: {integrity: sha512-TY1fy4JiOBN5a8T9fknqTMcz0DXIeFBr6sklaLCgwtj+G699a5R4CekNwpeM7DHSwC44UMX7gljO2I6dYsTS3A==} 732 | engines: {node: '>=14'} 733 | peerDependencies: 734 | '@opentelemetry/api': ^1.0.0 735 | dependencies: 736 | '@opentelemetry/api': 1.7.0 737 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 738 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 739 | '@opentelemetry/sdk-trace-base': 1.19.0(@opentelemetry/api@1.7.0) 740 | '@opentelemetry/semantic-conventions': 1.19.0 741 | dev: false 742 | 743 | /@opentelemetry/instrumentation@0.46.0(@opentelemetry/api@1.7.0): 744 | resolution: {integrity: sha512-a9TijXZZbk0vI5TGLZl+0kxyFfrXHhX6Svtz7Pp2/VBlCSKrazuULEyoJQrOknJyFWNMEmbbJgOciHCCpQcisw==} 745 | engines: {node: '>=14'} 746 | peerDependencies: 747 | '@opentelemetry/api': ^1.3.0 748 | dependencies: 749 | '@opentelemetry/api': 1.7.0 750 | '@types/shimmer': 1.0.5 751 | import-in-the-middle: 1.7.1 752 | require-in-the-middle: 7.2.0 753 | semver: 7.5.4 754 | shimmer: 1.2.1 755 | transitivePeerDependencies: 756 | - supports-color 757 | dev: false 758 | 759 | /@opentelemetry/otlp-exporter-base@0.46.0(@opentelemetry/api@1.7.0): 760 | resolution: {integrity: sha512-hfkh7cG17l77ZSLRAogz19SIJzr0KeC7xv5PDyTFbHFpwwoxV/bEViO49CqUFH6ckXB63NrltASP9R7po+ahTQ==} 761 | engines: {node: '>=14'} 762 | peerDependencies: 763 | '@opentelemetry/api': ^1.0.0 764 | dependencies: 765 | '@opentelemetry/api': 1.7.0 766 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 767 | dev: false 768 | 769 | /@opentelemetry/otlp-grpc-exporter-base@0.46.0(@opentelemetry/api@1.7.0): 770 | resolution: {integrity: sha512-/KB/xfZZiWIY2JknvCoT/e9paIzQO3QCBN5gR6RyxpXM/AGx3YTAOKvB/Ts9Va19jo5aE74gB7emhFaCNy4Rmw==} 771 | engines: {node: '>=14'} 772 | peerDependencies: 773 | '@opentelemetry/api': ^1.0.0 774 | dependencies: 775 | '@grpc/grpc-js': 1.9.13 776 | '@opentelemetry/api': 1.7.0 777 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 778 | '@opentelemetry/otlp-exporter-base': 0.46.0(@opentelemetry/api@1.7.0) 779 | protobufjs: 7.2.5 780 | dev: false 781 | 782 | /@opentelemetry/otlp-proto-exporter-base@0.46.0(@opentelemetry/api@1.7.0): 783 | resolution: {integrity: sha512-rEJBA8U2AxfEzrdIUcyyjOweyVFkO6V1XAxwP161JkxpvNuVDdULHAfRVnGtoZhiVA1XsJKcpIIq2MEKAqq4cg==} 784 | engines: {node: '>=14'} 785 | peerDependencies: 786 | '@opentelemetry/api': ^1.0.0 787 | dependencies: 788 | '@opentelemetry/api': 1.7.0 789 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 790 | '@opentelemetry/otlp-exporter-base': 0.46.0(@opentelemetry/api@1.7.0) 791 | protobufjs: 7.2.5 792 | dev: false 793 | 794 | /@opentelemetry/otlp-transformer@0.46.0(@opentelemetry/api@1.7.0): 795 | resolution: {integrity: sha512-Fj9hZwr6xuqgsaERn667Uf6kuDG884puWhyrai2Jen2Fq+bGf4/5BzEJp/8xvty0VSU4EfXOto/ys3KpSz2UHg==} 796 | engines: {node: '>=14'} 797 | peerDependencies: 798 | '@opentelemetry/api': '>=1.3.0 <1.8.0' 799 | dependencies: 800 | '@opentelemetry/api': 1.7.0 801 | '@opentelemetry/api-logs': 0.46.0 802 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 803 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 804 | '@opentelemetry/sdk-logs': 0.46.0(@opentelemetry/api-logs@0.46.0)(@opentelemetry/api@1.7.0) 805 | '@opentelemetry/sdk-metrics': 1.19.0(@opentelemetry/api@1.7.0) 806 | '@opentelemetry/sdk-trace-base': 1.19.0(@opentelemetry/api@1.7.0) 807 | dev: false 808 | 809 | /@opentelemetry/propagator-b3@1.19.0(@opentelemetry/api@1.7.0): 810 | resolution: {integrity: sha512-v7y5IBOKBm0vP3yf0DHzlw4L2gL6tZ0KeeMTaxfO5IuomMffDbrGWcvYFp0Dt4LdZctTSK523rVLBB9FBHBciQ==} 811 | engines: {node: '>=14'} 812 | peerDependencies: 813 | '@opentelemetry/api': '>=1.0.0 <1.8.0' 814 | dependencies: 815 | '@opentelemetry/api': 1.7.0 816 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 817 | dev: false 818 | 819 | /@opentelemetry/propagator-jaeger@1.19.0(@opentelemetry/api@1.7.0): 820 | resolution: {integrity: sha512-dedkOoTzKg+nYoLWCMp0Im+wo+XkTRW6aXhi8VQRtMW/9SNJGOllCJSu8llToLxMDF0+6zu7OCrKkevAof2tew==} 821 | engines: {node: '>=14'} 822 | peerDependencies: 823 | '@opentelemetry/api': '>=1.0.0 <1.8.0' 824 | dependencies: 825 | '@opentelemetry/api': 1.7.0 826 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 827 | dev: false 828 | 829 | /@opentelemetry/resources@1.19.0(@opentelemetry/api@1.7.0): 830 | resolution: {integrity: sha512-RgxvKuuMOf7nctOeOvpDjt2BpZvZGr9Y0vf7eGtY5XYZPkh2p7e2qub1S2IArdBMf9kEbz0SfycqCviOu9isqg==} 831 | engines: {node: '>=14'} 832 | peerDependencies: 833 | '@opentelemetry/api': '>=1.0.0 <1.8.0' 834 | dependencies: 835 | '@opentelemetry/api': 1.7.0 836 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 837 | '@opentelemetry/semantic-conventions': 1.19.0 838 | dev: false 839 | 840 | /@opentelemetry/sdk-logs@0.46.0(@opentelemetry/api-logs@0.46.0)(@opentelemetry/api@1.7.0): 841 | resolution: {integrity: sha512-Knlyk4+G72uEzNh6GRN1Fhmrj+/rkATI5/lOrevN7zRDLgp4kfyZBGGoWk7w+qQjlYvwhIIdPVxlIcipivdZIg==} 842 | engines: {node: '>=14'} 843 | peerDependencies: 844 | '@opentelemetry/api': '>=1.4.0 <1.8.0' 845 | '@opentelemetry/api-logs': '>=0.39.1' 846 | dependencies: 847 | '@opentelemetry/api': 1.7.0 848 | '@opentelemetry/api-logs': 0.46.0 849 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 850 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 851 | dev: false 852 | 853 | /@opentelemetry/sdk-metrics@1.19.0(@opentelemetry/api@1.7.0): 854 | resolution: {integrity: sha512-FiMii40zr0Fmys4F1i8gmuCvbinBnBsDeGBr4FQemOf0iPCLytYQm5AZJ/nn4xSc71IgKBQwTFQRAGJI7JvZ4Q==} 855 | engines: {node: '>=14'} 856 | peerDependencies: 857 | '@opentelemetry/api': '>=1.3.0 <1.8.0' 858 | dependencies: 859 | '@opentelemetry/api': 1.7.0 860 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 861 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 862 | lodash.merge: 4.6.2 863 | dev: false 864 | 865 | /@opentelemetry/sdk-node@0.46.0(@opentelemetry/api@1.7.0): 866 | resolution: {integrity: sha512-BQhzdCRZXchhKjZaFkgxlgoowjOt/QXekJ1CZgfvFO9Yg5GV15LyJFUEyQkDyD8XbshGo3Cnj0WZMBnDWtWY1A==} 867 | engines: {node: '>=14'} 868 | peerDependencies: 869 | '@opentelemetry/api': '>=1.3.0 <1.8.0' 870 | dependencies: 871 | '@opentelemetry/api': 1.7.0 872 | '@opentelemetry/api-logs': 0.46.0 873 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 874 | '@opentelemetry/exporter-trace-otlp-grpc': 0.46.0(@opentelemetry/api@1.7.0) 875 | '@opentelemetry/exporter-trace-otlp-http': 0.46.0(@opentelemetry/api@1.7.0) 876 | '@opentelemetry/exporter-trace-otlp-proto': 0.46.0(@opentelemetry/api@1.7.0) 877 | '@opentelemetry/exporter-zipkin': 1.19.0(@opentelemetry/api@1.7.0) 878 | '@opentelemetry/instrumentation': 0.46.0(@opentelemetry/api@1.7.0) 879 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 880 | '@opentelemetry/sdk-logs': 0.46.0(@opentelemetry/api-logs@0.46.0)(@opentelemetry/api@1.7.0) 881 | '@opentelemetry/sdk-metrics': 1.19.0(@opentelemetry/api@1.7.0) 882 | '@opentelemetry/sdk-trace-base': 1.19.0(@opentelemetry/api@1.7.0) 883 | '@opentelemetry/sdk-trace-node': 1.19.0(@opentelemetry/api@1.7.0) 884 | '@opentelemetry/semantic-conventions': 1.19.0 885 | transitivePeerDependencies: 886 | - supports-color 887 | dev: false 888 | 889 | /@opentelemetry/sdk-trace-base@1.19.0(@opentelemetry/api@1.7.0): 890 | resolution: {integrity: sha512-+IRvUm+huJn2KqfFW3yW/cjvRwJ8Q7FzYHoUNx5Fr0Lws0LxjMJG1uVB8HDpLwm7mg5XXH2M5MF+0jj5cM8BpQ==} 891 | engines: {node: '>=14'} 892 | peerDependencies: 893 | '@opentelemetry/api': '>=1.0.0 <1.8.0' 894 | dependencies: 895 | '@opentelemetry/api': 1.7.0 896 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 897 | '@opentelemetry/resources': 1.19.0(@opentelemetry/api@1.7.0) 898 | '@opentelemetry/semantic-conventions': 1.19.0 899 | dev: false 900 | 901 | /@opentelemetry/sdk-trace-node@1.19.0(@opentelemetry/api@1.7.0): 902 | resolution: {integrity: sha512-TCiEq/cUjM15RFqBRwWomTVbOqzndWL4ILa7ZCu0zbjU1/XY6AgHkgrgAc7vGP6TjRqH4Xryuglol8tcIfbBUQ==} 903 | engines: {node: '>=14'} 904 | peerDependencies: 905 | '@opentelemetry/api': '>=1.0.0 <1.8.0' 906 | dependencies: 907 | '@opentelemetry/api': 1.7.0 908 | '@opentelemetry/context-async-hooks': 1.19.0(@opentelemetry/api@1.7.0) 909 | '@opentelemetry/core': 1.19.0(@opentelemetry/api@1.7.0) 910 | '@opentelemetry/propagator-b3': 1.19.0(@opentelemetry/api@1.7.0) 911 | '@opentelemetry/propagator-jaeger': 1.19.0(@opentelemetry/api@1.7.0) 912 | '@opentelemetry/sdk-trace-base': 1.19.0(@opentelemetry/api@1.7.0) 913 | semver: 7.5.4 914 | dev: false 915 | 916 | /@opentelemetry/semantic-conventions@1.19.0: 917 | resolution: {integrity: sha512-14jRpC8f5c0gPSwoZ7SbEJni1PqI+AhAE8m1bMz6v+RPM4OlP1PT2UHBJj5Qh/ALLPjhVU/aZUK3YyjTUqqQVg==} 918 | engines: {node: '>=14'} 919 | dev: false 920 | 921 | /@pkgjs/parseargs@0.11.0: 922 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 923 | engines: {node: '>=14'} 924 | requiresBuild: true 925 | dev: true 926 | optional: true 927 | 928 | /@protobufjs/aspromise@1.1.2: 929 | resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} 930 | dev: false 931 | 932 | /@protobufjs/base64@1.1.2: 933 | resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} 934 | dev: false 935 | 936 | /@protobufjs/codegen@2.0.4: 937 | resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} 938 | dev: false 939 | 940 | /@protobufjs/eventemitter@1.1.0: 941 | resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} 942 | dev: false 943 | 944 | /@protobufjs/fetch@1.1.0: 945 | resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} 946 | dependencies: 947 | '@protobufjs/aspromise': 1.1.2 948 | '@protobufjs/inquire': 1.1.0 949 | dev: false 950 | 951 | /@protobufjs/float@1.0.2: 952 | resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} 953 | dev: false 954 | 955 | /@protobufjs/inquire@1.1.0: 956 | resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} 957 | dev: false 958 | 959 | /@protobufjs/path@1.1.2: 960 | resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} 961 | dev: false 962 | 963 | /@protobufjs/pool@1.1.0: 964 | resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} 965 | dev: false 966 | 967 | /@protobufjs/utf8@1.1.0: 968 | resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} 969 | dev: false 970 | 971 | /@rushstack/eslint-patch@1.6.1: 972 | resolution: {integrity: sha512-UY+FGM/2jjMkzQLn8pxcHGMaVLh9aEitG3zY2CiY7XHdLiz3bZOwa6oDxNqEMv7zZkV+cj5DOdz0cQ1BP5Hjgw==} 973 | dev: true 974 | 975 | /@sqlfx/sql@0.40.0(@effect/schema@0.60.1)(effect@2.0.5): 976 | resolution: {integrity: sha512-MHJQbZs9qOaiC3qnY6V4trW1GWrKqUQXYvPY99CVCwGCPhgNmEem8Ly/EQXoTM7TJm7J5j3GPO63/CdZ0nE2Ww==} 977 | peerDependencies: 978 | '@effect/schema': ^0.60.0 979 | effect: ^2.0.4 980 | dependencies: 981 | '@effect/schema': 0.60.1(effect@2.0.5)(fast-check@3.15.0) 982 | effect: 2.0.5 983 | dev: false 984 | 985 | /@sqlfx/sqlite@0.40.0(@effect/schema@0.60.1)(better-sqlite3@9.2.2)(effect@2.0.5): 986 | resolution: {integrity: sha512-1NVvYScv2dfkjXDEEebOOlp6i/JaP1svkrXilVXuv1D83quq/1tb/BkwuBB9ScjM47SRAWyJ4vvCCKFWhTHbuA==} 987 | peerDependencies: 988 | '@sqlite.org/sqlite-wasm': 3.44.2-build3 989 | better-sqlite3: ^9 990 | effect: ^2.0.4 991 | expo-sqlite: ^11 992 | react-native-quick-sqlite: ^8 993 | peerDependenciesMeta: 994 | '@sqlite.org/sqlite-wasm': 995 | optional: true 996 | better-sqlite3: 997 | optional: true 998 | expo-sqlite: 999 | optional: true 1000 | react-native-quick-sqlite: 1001 | optional: true 1002 | dependencies: 1003 | '@sqlfx/sql': 0.40.0(@effect/schema@0.60.1)(effect@2.0.5) 1004 | better-sqlite3: 9.2.2 1005 | effect: 2.0.5 1006 | transitivePeerDependencies: 1007 | - '@effect/schema' 1008 | dev: false 1009 | 1010 | /@swc/helpers@0.5.2: 1011 | resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} 1012 | dependencies: 1013 | tslib: 2.6.2 1014 | dev: false 1015 | 1016 | /@tsconfig/node10@1.0.9: 1017 | resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} 1018 | 1019 | /@tsconfig/node12@1.0.11: 1020 | resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} 1021 | 1022 | /@tsconfig/node14@1.0.3: 1023 | resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} 1024 | 1025 | /@tsconfig/node16@1.0.4: 1026 | resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} 1027 | 1028 | /@types/json5@0.0.29: 1029 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 1030 | dev: true 1031 | 1032 | /@types/node@20.11.1: 1033 | resolution: {integrity: sha512-DsXojJUES2M+FE8CpptJTKpg+r54moV9ZEncPstni1WHFmTcCzeFLnMFfyhCVS8XNOy/OQG+8lVxRLRrVHmV5A==} 1034 | dependencies: 1035 | undici-types: 5.26.5 1036 | 1037 | /@types/prop-types@15.7.11: 1038 | resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} 1039 | dev: true 1040 | 1041 | /@types/react-dom@18.2.18: 1042 | resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} 1043 | dependencies: 1044 | '@types/react': 18.2.48 1045 | dev: true 1046 | 1047 | /@types/react@18.2.48: 1048 | resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==} 1049 | dependencies: 1050 | '@types/prop-types': 15.7.11 1051 | '@types/scheduler': 0.16.8 1052 | csstype: 3.1.3 1053 | dev: true 1054 | 1055 | /@types/scheduler@0.16.8: 1056 | resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} 1057 | dev: true 1058 | 1059 | /@types/shimmer@1.0.5: 1060 | resolution: {integrity: sha512-9Hp0ObzwwO57DpLFF0InUjUm/II8GmKAvzbefxQTihCb7KI6yc9yzf0nLc4mVdby5N4DRCgQM2wCup9KTieeww==} 1061 | dev: false 1062 | 1063 | /@typescript-eslint/parser@6.18.1(eslint@8.56.0)(typescript@5.3.3): 1064 | resolution: {integrity: sha512-zct/MdJnVaRRNy9e84XnVtRv9Vf91/qqe+hZJtKanjojud4wAVy/7lXxJmMyX6X6J+xc6c//YEWvpeif8cAhWA==} 1065 | engines: {node: ^16.0.0 || >=18.0.0} 1066 | peerDependencies: 1067 | eslint: ^7.0.0 || ^8.0.0 1068 | typescript: '*' 1069 | peerDependenciesMeta: 1070 | typescript: 1071 | optional: true 1072 | dependencies: 1073 | '@typescript-eslint/scope-manager': 6.18.1 1074 | '@typescript-eslint/types': 6.18.1 1075 | '@typescript-eslint/typescript-estree': 6.18.1(typescript@5.3.3) 1076 | '@typescript-eslint/visitor-keys': 6.18.1 1077 | debug: 4.3.4 1078 | eslint: 8.56.0 1079 | typescript: 5.3.3 1080 | transitivePeerDependencies: 1081 | - supports-color 1082 | dev: true 1083 | 1084 | /@typescript-eslint/scope-manager@6.18.1: 1085 | resolution: {integrity: sha512-BgdBwXPFmZzaZUuw6wKiHKIovms97a7eTImjkXCZE04TGHysG+0hDQPmygyvgtkoB/aOQwSM/nWv3LzrOIQOBw==} 1086 | engines: {node: ^16.0.0 || >=18.0.0} 1087 | dependencies: 1088 | '@typescript-eslint/types': 6.18.1 1089 | '@typescript-eslint/visitor-keys': 6.18.1 1090 | dev: true 1091 | 1092 | /@typescript-eslint/types@6.18.1: 1093 | resolution: {integrity: sha512-4TuMAe+tc5oA7wwfqMtB0Y5OrREPF1GeJBAjqwgZh1lEMH5PJQgWgHGfYufVB51LtjD+peZylmeyxUXPfENLCw==} 1094 | engines: {node: ^16.0.0 || >=18.0.0} 1095 | dev: true 1096 | 1097 | /@typescript-eslint/typescript-estree@6.18.1(typescript@5.3.3): 1098 | resolution: {integrity: sha512-fv9B94UAhywPRhUeeV/v+3SBDvcPiLxRZJw/xZeeGgRLQZ6rLMG+8krrJUyIf6s1ecWTzlsbp0rlw7n9sjufHA==} 1099 | engines: {node: ^16.0.0 || >=18.0.0} 1100 | peerDependencies: 1101 | typescript: '*' 1102 | peerDependenciesMeta: 1103 | typescript: 1104 | optional: true 1105 | dependencies: 1106 | '@typescript-eslint/types': 6.18.1 1107 | '@typescript-eslint/visitor-keys': 6.18.1 1108 | debug: 4.3.4 1109 | globby: 11.1.0 1110 | is-glob: 4.0.3 1111 | minimatch: 9.0.3 1112 | semver: 7.5.4 1113 | ts-api-utils: 1.0.3(typescript@5.3.3) 1114 | typescript: 5.3.3 1115 | transitivePeerDependencies: 1116 | - supports-color 1117 | dev: true 1118 | 1119 | /@typescript-eslint/visitor-keys@6.18.1: 1120 | resolution: {integrity: sha512-/kvt0C5lRqGoCfsbmm7/CwMqoSkY3zzHLIjdhHZQW3VFrnz7ATecOHR7nb7V+xn4286MBxfnQfQhAmCI0u+bJA==} 1121 | engines: {node: ^16.0.0 || >=18.0.0} 1122 | dependencies: 1123 | '@typescript-eslint/types': 6.18.1 1124 | eslint-visitor-keys: 3.4.3 1125 | dev: true 1126 | 1127 | /@ungap/structured-clone@1.2.0: 1128 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 1129 | dev: true 1130 | 1131 | /acorn-import-assertions@1.9.0(acorn@8.11.3): 1132 | resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} 1133 | peerDependencies: 1134 | acorn: ^8 1135 | dependencies: 1136 | acorn: 8.11.3 1137 | dev: false 1138 | 1139 | /acorn-jsx@5.3.2(acorn@8.11.3): 1140 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 1141 | peerDependencies: 1142 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 1143 | dependencies: 1144 | acorn: 8.11.3 1145 | dev: true 1146 | 1147 | /acorn-walk@8.3.2: 1148 | resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} 1149 | engines: {node: '>=0.4.0'} 1150 | 1151 | /acorn@8.11.3: 1152 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} 1153 | engines: {node: '>=0.4.0'} 1154 | hasBin: true 1155 | 1156 | /ajv@6.12.6: 1157 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 1158 | dependencies: 1159 | fast-deep-equal: 3.1.3 1160 | fast-json-stable-stringify: 2.1.0 1161 | json-schema-traverse: 0.4.1 1162 | uri-js: 4.4.1 1163 | dev: true 1164 | 1165 | /ansi-regex@5.0.1: 1166 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1167 | engines: {node: '>=8'} 1168 | 1169 | /ansi-regex@6.0.1: 1170 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 1171 | engines: {node: '>=12'} 1172 | dev: true 1173 | 1174 | /ansi-styles@4.3.0: 1175 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1176 | engines: {node: '>=8'} 1177 | dependencies: 1178 | color-convert: 2.0.1 1179 | 1180 | /ansi-styles@6.2.1: 1181 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 1182 | engines: {node: '>=12'} 1183 | dev: true 1184 | 1185 | /any-promise@1.3.0: 1186 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 1187 | dev: true 1188 | 1189 | /anymatch@3.1.3: 1190 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1191 | engines: {node: '>= 8'} 1192 | dependencies: 1193 | normalize-path: 3.0.0 1194 | picomatch: 2.3.1 1195 | dev: true 1196 | 1197 | /arg@4.1.3: 1198 | resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} 1199 | 1200 | /arg@5.0.2: 1201 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 1202 | dev: true 1203 | 1204 | /argparse@2.0.1: 1205 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1206 | dev: true 1207 | 1208 | /aria-query@5.3.0: 1209 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 1210 | dependencies: 1211 | dequal: 2.0.3 1212 | dev: true 1213 | 1214 | /array-buffer-byte-length@1.0.0: 1215 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 1216 | dependencies: 1217 | call-bind: 1.0.5 1218 | is-array-buffer: 3.0.2 1219 | dev: true 1220 | 1221 | /array-includes@3.1.7: 1222 | resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} 1223 | engines: {node: '>= 0.4'} 1224 | dependencies: 1225 | call-bind: 1.0.5 1226 | define-properties: 1.2.1 1227 | es-abstract: 1.22.3 1228 | get-intrinsic: 1.2.2 1229 | is-string: 1.0.7 1230 | dev: true 1231 | 1232 | /array-union@2.1.0: 1233 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 1234 | engines: {node: '>=8'} 1235 | dev: true 1236 | 1237 | /array.prototype.findlastindex@1.2.3: 1238 | resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} 1239 | engines: {node: '>= 0.4'} 1240 | dependencies: 1241 | call-bind: 1.0.5 1242 | define-properties: 1.2.1 1243 | es-abstract: 1.22.3 1244 | es-shim-unscopables: 1.0.2 1245 | get-intrinsic: 1.2.2 1246 | dev: true 1247 | 1248 | /array.prototype.flat@1.3.2: 1249 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 1250 | engines: {node: '>= 0.4'} 1251 | dependencies: 1252 | call-bind: 1.0.5 1253 | define-properties: 1.2.1 1254 | es-abstract: 1.22.3 1255 | es-shim-unscopables: 1.0.2 1256 | dev: true 1257 | 1258 | /array.prototype.flatmap@1.3.2: 1259 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 1260 | engines: {node: '>= 0.4'} 1261 | dependencies: 1262 | call-bind: 1.0.5 1263 | define-properties: 1.2.1 1264 | es-abstract: 1.22.3 1265 | es-shim-unscopables: 1.0.2 1266 | dev: true 1267 | 1268 | /array.prototype.tosorted@1.1.2: 1269 | resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} 1270 | dependencies: 1271 | call-bind: 1.0.5 1272 | define-properties: 1.2.1 1273 | es-abstract: 1.22.3 1274 | es-shim-unscopables: 1.0.2 1275 | get-intrinsic: 1.2.2 1276 | dev: true 1277 | 1278 | /arraybuffer.prototype.slice@1.0.2: 1279 | resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} 1280 | engines: {node: '>= 0.4'} 1281 | dependencies: 1282 | array-buffer-byte-length: 1.0.0 1283 | call-bind: 1.0.5 1284 | define-properties: 1.2.1 1285 | es-abstract: 1.22.3 1286 | get-intrinsic: 1.2.2 1287 | is-array-buffer: 3.0.2 1288 | is-shared-array-buffer: 1.0.2 1289 | dev: true 1290 | 1291 | /ast-types-flow@0.0.8: 1292 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 1293 | dev: true 1294 | 1295 | /asynciterator.prototype@1.0.0: 1296 | resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} 1297 | dependencies: 1298 | has-symbols: 1.0.3 1299 | dev: true 1300 | 1301 | /autoprefixer@10.4.16(postcss@8.4.33): 1302 | resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} 1303 | engines: {node: ^10 || ^12 || >=14} 1304 | hasBin: true 1305 | peerDependencies: 1306 | postcss: ^8.1.0 1307 | dependencies: 1308 | browserslist: 4.22.2 1309 | caniuse-lite: 1.0.30001566 1310 | fraction.js: 4.3.7 1311 | normalize-range: 0.1.2 1312 | picocolors: 1.0.0 1313 | postcss: 8.4.33 1314 | postcss-value-parser: 4.2.0 1315 | dev: true 1316 | 1317 | /available-typed-arrays@1.0.5: 1318 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 1319 | engines: {node: '>= 0.4'} 1320 | dev: true 1321 | 1322 | /axe-core@4.7.0: 1323 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 1324 | engines: {node: '>=4'} 1325 | dev: true 1326 | 1327 | /axobject-query@3.2.1: 1328 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 1329 | dependencies: 1330 | dequal: 2.0.3 1331 | dev: true 1332 | 1333 | /balanced-match@1.0.2: 1334 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1335 | dev: true 1336 | 1337 | /base64-js@1.5.1: 1338 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 1339 | dev: false 1340 | 1341 | /better-sqlite3@9.2.2: 1342 | resolution: {integrity: sha512-qwjWB46il0lsDkeB4rSRI96HyDQr8sxeu1MkBVLMrwusq1KRu4Bpt1TMI+8zIJkDUtZ3umjAkaEjIlokZKWCQw==} 1343 | requiresBuild: true 1344 | dependencies: 1345 | bindings: 1.5.0 1346 | prebuild-install: 7.1.1 1347 | dev: false 1348 | 1349 | /binary-extensions@2.2.0: 1350 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 1351 | engines: {node: '>=8'} 1352 | dev: true 1353 | 1354 | /bindings@1.5.0: 1355 | resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} 1356 | dependencies: 1357 | file-uri-to-path: 1.0.0 1358 | dev: false 1359 | 1360 | /bl@4.1.0: 1361 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 1362 | dependencies: 1363 | buffer: 5.7.1 1364 | inherits: 2.0.4 1365 | readable-stream: 3.6.2 1366 | dev: false 1367 | 1368 | /brace-expansion@1.1.11: 1369 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 1370 | dependencies: 1371 | balanced-match: 1.0.2 1372 | concat-map: 0.0.1 1373 | dev: true 1374 | 1375 | /brace-expansion@2.0.1: 1376 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 1377 | dependencies: 1378 | balanced-match: 1.0.2 1379 | dev: true 1380 | 1381 | /braces@3.0.2: 1382 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 1383 | engines: {node: '>=8'} 1384 | dependencies: 1385 | fill-range: 7.0.1 1386 | dev: true 1387 | 1388 | /browserslist@4.22.2: 1389 | resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} 1390 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 1391 | hasBin: true 1392 | dependencies: 1393 | caniuse-lite: 1.0.30001566 1394 | electron-to-chromium: 1.4.603 1395 | node-releases: 2.0.14 1396 | update-browserslist-db: 1.0.13(browserslist@4.22.2) 1397 | dev: true 1398 | 1399 | /buffer@5.7.1: 1400 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 1401 | dependencies: 1402 | base64-js: 1.5.1 1403 | ieee754: 1.2.1 1404 | dev: false 1405 | 1406 | /busboy@1.6.0: 1407 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 1408 | engines: {node: '>=10.16.0'} 1409 | dependencies: 1410 | streamsearch: 1.1.0 1411 | dev: false 1412 | 1413 | /call-bind@1.0.5: 1414 | resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} 1415 | dependencies: 1416 | function-bind: 1.1.2 1417 | get-intrinsic: 1.2.2 1418 | set-function-length: 1.2.0 1419 | dev: true 1420 | 1421 | /callsites@3.1.0: 1422 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 1423 | engines: {node: '>=6'} 1424 | dev: true 1425 | 1426 | /camelcase-css@2.0.1: 1427 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 1428 | engines: {node: '>= 6'} 1429 | dev: true 1430 | 1431 | /caniuse-lite@1.0.30001566: 1432 | resolution: {integrity: sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==} 1433 | dev: true 1434 | 1435 | /caniuse-lite@1.0.30001576: 1436 | resolution: {integrity: sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==} 1437 | dev: false 1438 | 1439 | /chalk@4.1.2: 1440 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 1441 | engines: {node: '>=10'} 1442 | dependencies: 1443 | ansi-styles: 4.3.0 1444 | supports-color: 7.2.0 1445 | dev: true 1446 | 1447 | /chokidar@3.5.3: 1448 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 1449 | engines: {node: '>= 8.10.0'} 1450 | dependencies: 1451 | anymatch: 3.1.3 1452 | braces: 3.0.2 1453 | glob-parent: 5.1.2 1454 | is-binary-path: 2.1.0 1455 | is-glob: 4.0.3 1456 | normalize-path: 3.0.0 1457 | readdirp: 3.6.0 1458 | optionalDependencies: 1459 | fsevents: 2.3.3 1460 | dev: true 1461 | 1462 | /chownr@1.1.4: 1463 | resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 1464 | dev: false 1465 | 1466 | /cjs-module-lexer@1.2.3: 1467 | resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} 1468 | dev: false 1469 | 1470 | /client-only@0.0.1: 1471 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 1472 | dev: false 1473 | 1474 | /cliui@8.0.1: 1475 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 1476 | engines: {node: '>=12'} 1477 | dependencies: 1478 | string-width: 4.2.3 1479 | strip-ansi: 6.0.1 1480 | wrap-ansi: 7.0.0 1481 | dev: false 1482 | 1483 | /color-convert@2.0.1: 1484 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1485 | engines: {node: '>=7.0.0'} 1486 | dependencies: 1487 | color-name: 1.1.4 1488 | 1489 | /color-name@1.1.4: 1490 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1491 | 1492 | /commander@4.1.1: 1493 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 1494 | engines: {node: '>= 6'} 1495 | dev: true 1496 | 1497 | /concat-map@0.0.1: 1498 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 1499 | dev: true 1500 | 1501 | /create-require@1.1.1: 1502 | resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} 1503 | 1504 | /cross-spawn@7.0.3: 1505 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 1506 | engines: {node: '>= 8'} 1507 | dependencies: 1508 | path-key: 3.1.1 1509 | shebang-command: 2.0.0 1510 | which: 2.0.2 1511 | dev: true 1512 | 1513 | /cssesc@3.0.0: 1514 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 1515 | engines: {node: '>=4'} 1516 | hasBin: true 1517 | dev: true 1518 | 1519 | /csstype@3.1.3: 1520 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 1521 | dev: true 1522 | 1523 | /damerau-levenshtein@1.0.8: 1524 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 1525 | dev: true 1526 | 1527 | /debug@3.2.7: 1528 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 1529 | peerDependencies: 1530 | supports-color: '*' 1531 | peerDependenciesMeta: 1532 | supports-color: 1533 | optional: true 1534 | dependencies: 1535 | ms: 2.1.3 1536 | dev: true 1537 | 1538 | /debug@4.3.4: 1539 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 1540 | engines: {node: '>=6.0'} 1541 | peerDependencies: 1542 | supports-color: '*' 1543 | peerDependenciesMeta: 1544 | supports-color: 1545 | optional: true 1546 | dependencies: 1547 | ms: 2.1.2 1548 | 1549 | /decompress-response@6.0.0: 1550 | resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} 1551 | engines: {node: '>=10'} 1552 | dependencies: 1553 | mimic-response: 3.1.0 1554 | dev: false 1555 | 1556 | /deep-extend@0.6.0: 1557 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 1558 | engines: {node: '>=4.0.0'} 1559 | dev: false 1560 | 1561 | /deep-is@0.1.4: 1562 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1563 | dev: true 1564 | 1565 | /define-data-property@1.1.1: 1566 | resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} 1567 | engines: {node: '>= 0.4'} 1568 | dependencies: 1569 | get-intrinsic: 1.2.2 1570 | gopd: 1.0.1 1571 | has-property-descriptors: 1.0.1 1572 | dev: true 1573 | 1574 | /define-properties@1.2.1: 1575 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 1576 | engines: {node: '>= 0.4'} 1577 | dependencies: 1578 | define-data-property: 1.1.1 1579 | has-property-descriptors: 1.0.1 1580 | object-keys: 1.1.1 1581 | dev: true 1582 | 1583 | /dequal@2.0.3: 1584 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 1585 | engines: {node: '>=6'} 1586 | dev: true 1587 | 1588 | /detect-libc@2.0.2: 1589 | resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} 1590 | engines: {node: '>=8'} 1591 | dev: false 1592 | 1593 | /didyoumean@1.2.2: 1594 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 1595 | dev: true 1596 | 1597 | /diff@4.0.2: 1598 | resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} 1599 | engines: {node: '>=0.3.1'} 1600 | 1601 | /dir-glob@3.0.1: 1602 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1603 | engines: {node: '>=8'} 1604 | dependencies: 1605 | path-type: 4.0.0 1606 | dev: true 1607 | 1608 | /dlv@1.1.3: 1609 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 1610 | dev: true 1611 | 1612 | /doctrine@2.1.0: 1613 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 1614 | engines: {node: '>=0.10.0'} 1615 | dependencies: 1616 | esutils: 2.0.3 1617 | dev: true 1618 | 1619 | /doctrine@3.0.0: 1620 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1621 | engines: {node: '>=6.0.0'} 1622 | dependencies: 1623 | esutils: 2.0.3 1624 | dev: true 1625 | 1626 | /dotenv@16.3.1: 1627 | resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} 1628 | engines: {node: '>=12'} 1629 | dev: false 1630 | 1631 | /eastasianwidth@0.2.0: 1632 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 1633 | dev: true 1634 | 1635 | /effect@2.0.5: 1636 | resolution: {integrity: sha512-xu3w2lFfjLvmeNlzdSXgtlwynbKr+FcEkfVHDpkJno41gHfuGZDnpAGHw//fOPqNUdcX728vtZkyRvZ0xMlgag==} 1637 | dev: false 1638 | 1639 | /electron-to-chromium@1.4.603: 1640 | resolution: {integrity: sha512-Dvo5OGjnl7AZTU632dFJtWj0uJK835eeOVQIuRcmBmsFsTNn3cL05FqOyHAfGQDIoHfLhyJ1Tya3PJ0ceMz54g==} 1641 | dev: true 1642 | 1643 | /emoji-regex@8.0.0: 1644 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1645 | 1646 | /emoji-regex@9.2.2: 1647 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 1648 | dev: true 1649 | 1650 | /end-of-stream@1.4.4: 1651 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 1652 | dependencies: 1653 | once: 1.4.0 1654 | dev: false 1655 | 1656 | /enhanced-resolve@5.15.0: 1657 | resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} 1658 | engines: {node: '>=10.13.0'} 1659 | dependencies: 1660 | graceful-fs: 4.2.11 1661 | tapable: 2.2.1 1662 | dev: true 1663 | 1664 | /es-abstract@1.22.3: 1665 | resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} 1666 | engines: {node: '>= 0.4'} 1667 | dependencies: 1668 | array-buffer-byte-length: 1.0.0 1669 | arraybuffer.prototype.slice: 1.0.2 1670 | available-typed-arrays: 1.0.5 1671 | call-bind: 1.0.5 1672 | es-set-tostringtag: 2.0.2 1673 | es-to-primitive: 1.2.1 1674 | function.prototype.name: 1.1.6 1675 | get-intrinsic: 1.2.2 1676 | get-symbol-description: 1.0.0 1677 | globalthis: 1.0.3 1678 | gopd: 1.0.1 1679 | has-property-descriptors: 1.0.1 1680 | has-proto: 1.0.1 1681 | has-symbols: 1.0.3 1682 | hasown: 2.0.0 1683 | internal-slot: 1.0.6 1684 | is-array-buffer: 3.0.2 1685 | is-callable: 1.2.7 1686 | is-negative-zero: 2.0.2 1687 | is-regex: 1.1.4 1688 | is-shared-array-buffer: 1.0.2 1689 | is-string: 1.0.7 1690 | is-typed-array: 1.1.12 1691 | is-weakref: 1.0.2 1692 | object-inspect: 1.13.1 1693 | object-keys: 1.1.1 1694 | object.assign: 4.1.5 1695 | regexp.prototype.flags: 1.5.1 1696 | safe-array-concat: 1.0.1 1697 | safe-regex-test: 1.0.2 1698 | string.prototype.trim: 1.2.8 1699 | string.prototype.trimend: 1.0.7 1700 | string.prototype.trimstart: 1.0.7 1701 | typed-array-buffer: 1.0.0 1702 | typed-array-byte-length: 1.0.0 1703 | typed-array-byte-offset: 1.0.0 1704 | typed-array-length: 1.0.4 1705 | unbox-primitive: 1.0.2 1706 | which-typed-array: 1.1.13 1707 | dev: true 1708 | 1709 | /es-iterator-helpers@1.0.15: 1710 | resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} 1711 | dependencies: 1712 | asynciterator.prototype: 1.0.0 1713 | call-bind: 1.0.5 1714 | define-properties: 1.2.1 1715 | es-abstract: 1.22.3 1716 | es-set-tostringtag: 2.0.2 1717 | function-bind: 1.1.2 1718 | get-intrinsic: 1.2.2 1719 | globalthis: 1.0.3 1720 | has-property-descriptors: 1.0.1 1721 | has-proto: 1.0.1 1722 | has-symbols: 1.0.3 1723 | internal-slot: 1.0.6 1724 | iterator.prototype: 1.1.2 1725 | safe-array-concat: 1.0.1 1726 | dev: true 1727 | 1728 | /es-set-tostringtag@2.0.2: 1729 | resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} 1730 | engines: {node: '>= 0.4'} 1731 | dependencies: 1732 | get-intrinsic: 1.2.2 1733 | has-tostringtag: 1.0.0 1734 | hasown: 2.0.0 1735 | dev: true 1736 | 1737 | /es-shim-unscopables@1.0.2: 1738 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 1739 | dependencies: 1740 | hasown: 2.0.0 1741 | dev: true 1742 | 1743 | /es-to-primitive@1.2.1: 1744 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 1745 | engines: {node: '>= 0.4'} 1746 | dependencies: 1747 | is-callable: 1.2.7 1748 | is-date-object: 1.0.5 1749 | is-symbol: 1.0.4 1750 | dev: true 1751 | 1752 | /esbuild@0.19.11: 1753 | resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} 1754 | engines: {node: '>=12'} 1755 | hasBin: true 1756 | requiresBuild: true 1757 | optionalDependencies: 1758 | '@esbuild/aix-ppc64': 0.19.11 1759 | '@esbuild/android-arm': 0.19.11 1760 | '@esbuild/android-arm64': 0.19.11 1761 | '@esbuild/android-x64': 0.19.11 1762 | '@esbuild/darwin-arm64': 0.19.11 1763 | '@esbuild/darwin-x64': 0.19.11 1764 | '@esbuild/freebsd-arm64': 0.19.11 1765 | '@esbuild/freebsd-x64': 0.19.11 1766 | '@esbuild/linux-arm': 0.19.11 1767 | '@esbuild/linux-arm64': 0.19.11 1768 | '@esbuild/linux-ia32': 0.19.11 1769 | '@esbuild/linux-loong64': 0.19.11 1770 | '@esbuild/linux-mips64el': 0.19.11 1771 | '@esbuild/linux-ppc64': 0.19.11 1772 | '@esbuild/linux-riscv64': 0.19.11 1773 | '@esbuild/linux-s390x': 0.19.11 1774 | '@esbuild/linux-x64': 0.19.11 1775 | '@esbuild/netbsd-x64': 0.19.11 1776 | '@esbuild/openbsd-x64': 0.19.11 1777 | '@esbuild/sunos-x64': 0.19.11 1778 | '@esbuild/win32-arm64': 0.19.11 1779 | '@esbuild/win32-ia32': 0.19.11 1780 | '@esbuild/win32-x64': 0.19.11 1781 | dev: true 1782 | 1783 | /escalade@3.1.1: 1784 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 1785 | engines: {node: '>=6'} 1786 | 1787 | /escape-string-regexp@4.0.0: 1788 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1789 | engines: {node: '>=10'} 1790 | dev: true 1791 | 1792 | /eslint-config-next@14.0.4(eslint@8.56.0)(typescript@5.3.3): 1793 | resolution: {integrity: sha512-9/xbOHEQOmQtqvQ1UsTQZpnA7SlDMBtuKJ//S4JnoyK3oGLhILKXdBgu/UO7lQo/2xOykQULS1qQ6p2+EpHgAQ==} 1794 | peerDependencies: 1795 | eslint: ^7.23.0 || ^8.0.0 1796 | typescript: '>=3.3.1' 1797 | peerDependenciesMeta: 1798 | typescript: 1799 | optional: true 1800 | dependencies: 1801 | '@next/eslint-plugin-next': 14.0.4 1802 | '@rushstack/eslint-patch': 1.6.1 1803 | '@typescript-eslint/parser': 6.18.1(eslint@8.56.0)(typescript@5.3.3) 1804 | eslint: 8.56.0 1805 | eslint-import-resolver-node: 0.3.9 1806 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 1807 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1808 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) 1809 | eslint-plugin-react: 7.33.2(eslint@8.56.0) 1810 | eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0) 1811 | typescript: 5.3.3 1812 | transitivePeerDependencies: 1813 | - eslint-import-resolver-webpack 1814 | - supports-color 1815 | dev: true 1816 | 1817 | /eslint-import-resolver-node@0.3.9: 1818 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1819 | dependencies: 1820 | debug: 3.2.7 1821 | is-core-module: 2.13.1 1822 | resolve: 1.22.8 1823 | transitivePeerDependencies: 1824 | - supports-color 1825 | dev: true 1826 | 1827 | /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0): 1828 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 1829 | engines: {node: ^14.18.0 || >=16.0.0} 1830 | peerDependencies: 1831 | eslint: '*' 1832 | eslint-plugin-import: '*' 1833 | dependencies: 1834 | debug: 4.3.4 1835 | enhanced-resolve: 5.15.0 1836 | eslint: 8.56.0 1837 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1838 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1839 | fast-glob: 3.3.2 1840 | get-tsconfig: 4.7.2 1841 | is-core-module: 2.13.1 1842 | is-glob: 4.0.3 1843 | transitivePeerDependencies: 1844 | - '@typescript-eslint/parser' 1845 | - eslint-import-resolver-node 1846 | - eslint-import-resolver-webpack 1847 | - supports-color 1848 | dev: true 1849 | 1850 | /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 1851 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 1852 | engines: {node: '>=4'} 1853 | peerDependencies: 1854 | '@typescript-eslint/parser': '*' 1855 | eslint: '*' 1856 | eslint-import-resolver-node: '*' 1857 | eslint-import-resolver-typescript: '*' 1858 | eslint-import-resolver-webpack: '*' 1859 | peerDependenciesMeta: 1860 | '@typescript-eslint/parser': 1861 | optional: true 1862 | eslint: 1863 | optional: true 1864 | eslint-import-resolver-node: 1865 | optional: true 1866 | eslint-import-resolver-typescript: 1867 | optional: true 1868 | eslint-import-resolver-webpack: 1869 | optional: true 1870 | dependencies: 1871 | '@typescript-eslint/parser': 6.18.1(eslint@8.56.0)(typescript@5.3.3) 1872 | debug: 3.2.7 1873 | eslint: 8.56.0 1874 | eslint-import-resolver-node: 0.3.9 1875 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 1876 | transitivePeerDependencies: 1877 | - supports-color 1878 | dev: true 1879 | 1880 | /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 1881 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 1882 | engines: {node: '>=4'} 1883 | peerDependencies: 1884 | '@typescript-eslint/parser': '*' 1885 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1886 | peerDependenciesMeta: 1887 | '@typescript-eslint/parser': 1888 | optional: true 1889 | dependencies: 1890 | '@typescript-eslint/parser': 6.18.1(eslint@8.56.0)(typescript@5.3.3) 1891 | array-includes: 3.1.7 1892 | array.prototype.findlastindex: 1.2.3 1893 | array.prototype.flat: 1.3.2 1894 | array.prototype.flatmap: 1.3.2 1895 | debug: 3.2.7 1896 | doctrine: 2.1.0 1897 | eslint: 8.56.0 1898 | eslint-import-resolver-node: 0.3.9 1899 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.18.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 1900 | hasown: 2.0.0 1901 | is-core-module: 2.13.1 1902 | is-glob: 4.0.3 1903 | minimatch: 3.1.2 1904 | object.fromentries: 2.0.7 1905 | object.groupby: 1.0.1 1906 | object.values: 1.1.7 1907 | semver: 6.3.1 1908 | tsconfig-paths: 3.15.0 1909 | transitivePeerDependencies: 1910 | - eslint-import-resolver-typescript 1911 | - eslint-import-resolver-webpack 1912 | - supports-color 1913 | dev: true 1914 | 1915 | /eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0): 1916 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 1917 | engines: {node: '>=4.0'} 1918 | peerDependencies: 1919 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1920 | dependencies: 1921 | '@babel/runtime': 7.23.8 1922 | aria-query: 5.3.0 1923 | array-includes: 3.1.7 1924 | array.prototype.flatmap: 1.3.2 1925 | ast-types-flow: 0.0.8 1926 | axe-core: 4.7.0 1927 | axobject-query: 3.2.1 1928 | damerau-levenshtein: 1.0.8 1929 | emoji-regex: 9.2.2 1930 | es-iterator-helpers: 1.0.15 1931 | eslint: 8.56.0 1932 | hasown: 2.0.0 1933 | jsx-ast-utils: 3.3.5 1934 | language-tags: 1.0.9 1935 | minimatch: 3.1.2 1936 | object.entries: 1.1.7 1937 | object.fromentries: 2.0.7 1938 | dev: true 1939 | 1940 | /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0): 1941 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 1942 | engines: {node: '>=10'} 1943 | peerDependencies: 1944 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1945 | dependencies: 1946 | eslint: 8.56.0 1947 | dev: true 1948 | 1949 | /eslint-plugin-react@7.33.2(eslint@8.56.0): 1950 | resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} 1951 | engines: {node: '>=4'} 1952 | peerDependencies: 1953 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1954 | dependencies: 1955 | array-includes: 3.1.7 1956 | array.prototype.flatmap: 1.3.2 1957 | array.prototype.tosorted: 1.1.2 1958 | doctrine: 2.1.0 1959 | es-iterator-helpers: 1.0.15 1960 | eslint: 8.56.0 1961 | estraverse: 5.3.0 1962 | jsx-ast-utils: 3.3.5 1963 | minimatch: 3.1.2 1964 | object.entries: 1.1.7 1965 | object.fromentries: 2.0.7 1966 | object.hasown: 1.1.3 1967 | object.values: 1.1.7 1968 | prop-types: 15.8.1 1969 | resolve: 2.0.0-next.5 1970 | semver: 6.3.1 1971 | string.prototype.matchall: 4.0.10 1972 | dev: true 1973 | 1974 | /eslint-scope@7.2.2: 1975 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1976 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1977 | dependencies: 1978 | esrecurse: 4.3.0 1979 | estraverse: 5.3.0 1980 | dev: true 1981 | 1982 | /eslint-visitor-keys@3.4.3: 1983 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1984 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1985 | dev: true 1986 | 1987 | /eslint@8.56.0: 1988 | resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} 1989 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1990 | hasBin: true 1991 | dependencies: 1992 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) 1993 | '@eslint-community/regexpp': 4.10.0 1994 | '@eslint/eslintrc': 2.1.4 1995 | '@eslint/js': 8.56.0 1996 | '@humanwhocodes/config-array': 0.11.14 1997 | '@humanwhocodes/module-importer': 1.0.1 1998 | '@nodelib/fs.walk': 1.2.8 1999 | '@ungap/structured-clone': 1.2.0 2000 | ajv: 6.12.6 2001 | chalk: 4.1.2 2002 | cross-spawn: 7.0.3 2003 | debug: 4.3.4 2004 | doctrine: 3.0.0 2005 | escape-string-regexp: 4.0.0 2006 | eslint-scope: 7.2.2 2007 | eslint-visitor-keys: 3.4.3 2008 | espree: 9.6.1 2009 | esquery: 1.5.0 2010 | esutils: 2.0.3 2011 | fast-deep-equal: 3.1.3 2012 | file-entry-cache: 6.0.1 2013 | find-up: 5.0.0 2014 | glob-parent: 6.0.2 2015 | globals: 13.24.0 2016 | graphemer: 1.4.0 2017 | ignore: 5.3.0 2018 | imurmurhash: 0.1.4 2019 | is-glob: 4.0.3 2020 | is-path-inside: 3.0.3 2021 | js-yaml: 4.1.0 2022 | json-stable-stringify-without-jsonify: 1.0.1 2023 | levn: 0.4.1 2024 | lodash.merge: 4.6.2 2025 | minimatch: 3.1.2 2026 | natural-compare: 1.4.0 2027 | optionator: 0.9.3 2028 | strip-ansi: 6.0.1 2029 | text-table: 0.2.0 2030 | transitivePeerDependencies: 2031 | - supports-color 2032 | dev: true 2033 | 2034 | /espree@9.6.1: 2035 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 2036 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2037 | dependencies: 2038 | acorn: 8.11.3 2039 | acorn-jsx: 5.3.2(acorn@8.11.3) 2040 | eslint-visitor-keys: 3.4.3 2041 | dev: true 2042 | 2043 | /esquery@1.5.0: 2044 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 2045 | engines: {node: '>=0.10'} 2046 | dependencies: 2047 | estraverse: 5.3.0 2048 | dev: true 2049 | 2050 | /esrecurse@4.3.0: 2051 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 2052 | engines: {node: '>=4.0'} 2053 | dependencies: 2054 | estraverse: 5.3.0 2055 | dev: true 2056 | 2057 | /estraverse@5.3.0: 2058 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 2059 | engines: {node: '>=4.0'} 2060 | dev: true 2061 | 2062 | /esutils@2.0.3: 2063 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 2064 | engines: {node: '>=0.10.0'} 2065 | dev: true 2066 | 2067 | /expand-template@2.0.3: 2068 | resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} 2069 | engines: {node: '>=6'} 2070 | dev: false 2071 | 2072 | /fast-check@3.15.0: 2073 | resolution: {integrity: sha512-iBz6c+EXL6+nI931x/sbZs1JYTZtLG6Cko0ouS8LRTikhDR7+wZk4TYzdRavlnByBs2G6+nuuJ7NYL9QplNt8Q==} 2074 | engines: {node: '>=8.0.0'} 2075 | dependencies: 2076 | pure-rand: 6.0.4 2077 | dev: false 2078 | 2079 | /fast-deep-equal@3.1.3: 2080 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 2081 | dev: true 2082 | 2083 | /fast-glob@3.3.2: 2084 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 2085 | engines: {node: '>=8.6.0'} 2086 | dependencies: 2087 | '@nodelib/fs.stat': 2.0.5 2088 | '@nodelib/fs.walk': 1.2.8 2089 | glob-parent: 5.1.2 2090 | merge2: 1.4.1 2091 | micromatch: 4.0.5 2092 | dev: true 2093 | 2094 | /fast-json-stable-stringify@2.1.0: 2095 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 2096 | dev: true 2097 | 2098 | /fast-levenshtein@2.0.6: 2099 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 2100 | dev: true 2101 | 2102 | /fastq@1.16.0: 2103 | resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} 2104 | dependencies: 2105 | reusify: 1.0.4 2106 | dev: true 2107 | 2108 | /file-entry-cache@6.0.1: 2109 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 2110 | engines: {node: ^10.12.0 || >=12.0.0} 2111 | dependencies: 2112 | flat-cache: 3.2.0 2113 | dev: true 2114 | 2115 | /file-uri-to-path@1.0.0: 2116 | resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} 2117 | dev: false 2118 | 2119 | /fill-range@7.0.1: 2120 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 2121 | engines: {node: '>=8'} 2122 | dependencies: 2123 | to-regex-range: 5.0.1 2124 | dev: true 2125 | 2126 | /find-up@5.0.0: 2127 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 2128 | engines: {node: '>=10'} 2129 | dependencies: 2130 | locate-path: 6.0.0 2131 | path-exists: 4.0.0 2132 | dev: true 2133 | 2134 | /flat-cache@3.2.0: 2135 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 2136 | engines: {node: ^10.12.0 || >=12.0.0} 2137 | dependencies: 2138 | flatted: 3.2.9 2139 | keyv: 4.5.4 2140 | rimraf: 3.0.2 2141 | dev: true 2142 | 2143 | /flatted@3.2.9: 2144 | resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} 2145 | dev: true 2146 | 2147 | /for-each@0.3.3: 2148 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 2149 | dependencies: 2150 | is-callable: 1.2.7 2151 | dev: true 2152 | 2153 | /foreground-child@3.1.1: 2154 | resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} 2155 | engines: {node: '>=14'} 2156 | dependencies: 2157 | cross-spawn: 7.0.3 2158 | signal-exit: 4.1.0 2159 | dev: true 2160 | 2161 | /fraction.js@4.3.7: 2162 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 2163 | dev: true 2164 | 2165 | /fs-constants@1.0.0: 2166 | resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 2167 | dev: false 2168 | 2169 | /fs.realpath@1.0.0: 2170 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 2171 | dev: true 2172 | 2173 | /fsevents@2.3.3: 2174 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 2175 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 2176 | os: [darwin] 2177 | requiresBuild: true 2178 | dev: true 2179 | optional: true 2180 | 2181 | /function-bind@1.1.2: 2182 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 2183 | 2184 | /function.prototype.name@1.1.6: 2185 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 2186 | engines: {node: '>= 0.4'} 2187 | dependencies: 2188 | call-bind: 1.0.5 2189 | define-properties: 1.2.1 2190 | es-abstract: 1.22.3 2191 | functions-have-names: 1.2.3 2192 | dev: true 2193 | 2194 | /functions-have-names@1.2.3: 2195 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 2196 | dev: true 2197 | 2198 | /get-caller-file@2.0.5: 2199 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 2200 | engines: {node: 6.* || 8.* || >= 10.*} 2201 | dev: false 2202 | 2203 | /get-intrinsic@1.2.2: 2204 | resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} 2205 | dependencies: 2206 | function-bind: 1.1.2 2207 | has-proto: 1.0.1 2208 | has-symbols: 1.0.3 2209 | hasown: 2.0.0 2210 | dev: true 2211 | 2212 | /get-symbol-description@1.0.0: 2213 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 2214 | engines: {node: '>= 0.4'} 2215 | dependencies: 2216 | call-bind: 1.0.5 2217 | get-intrinsic: 1.2.2 2218 | dev: true 2219 | 2220 | /get-tsconfig@4.7.2: 2221 | resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} 2222 | dependencies: 2223 | resolve-pkg-maps: 1.0.0 2224 | dev: true 2225 | 2226 | /github-from-package@0.0.0: 2227 | resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} 2228 | dev: false 2229 | 2230 | /glob-parent@5.1.2: 2231 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 2232 | engines: {node: '>= 6'} 2233 | dependencies: 2234 | is-glob: 4.0.3 2235 | dev: true 2236 | 2237 | /glob-parent@6.0.2: 2238 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 2239 | engines: {node: '>=10.13.0'} 2240 | dependencies: 2241 | is-glob: 4.0.3 2242 | dev: true 2243 | 2244 | /glob-to-regexp@0.4.1: 2245 | resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} 2246 | dev: false 2247 | 2248 | /glob@10.3.10: 2249 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} 2250 | engines: {node: '>=16 || 14 >=14.17'} 2251 | hasBin: true 2252 | dependencies: 2253 | foreground-child: 3.1.1 2254 | jackspeak: 2.3.6 2255 | minimatch: 9.0.3 2256 | minipass: 7.0.4 2257 | path-scurry: 1.10.1 2258 | dev: true 2259 | 2260 | /glob@7.1.7: 2261 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 2262 | dependencies: 2263 | fs.realpath: 1.0.0 2264 | inflight: 1.0.6 2265 | inherits: 2.0.4 2266 | minimatch: 3.1.2 2267 | once: 1.4.0 2268 | path-is-absolute: 1.0.1 2269 | dev: true 2270 | 2271 | /glob@7.2.3: 2272 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 2273 | dependencies: 2274 | fs.realpath: 1.0.0 2275 | inflight: 1.0.6 2276 | inherits: 2.0.4 2277 | minimatch: 3.1.2 2278 | once: 1.4.0 2279 | path-is-absolute: 1.0.1 2280 | dev: true 2281 | 2282 | /globals@13.24.0: 2283 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 2284 | engines: {node: '>=8'} 2285 | dependencies: 2286 | type-fest: 0.20.2 2287 | dev: true 2288 | 2289 | /globalthis@1.0.3: 2290 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 2291 | engines: {node: '>= 0.4'} 2292 | dependencies: 2293 | define-properties: 1.2.1 2294 | dev: true 2295 | 2296 | /globby@11.1.0: 2297 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 2298 | engines: {node: '>=10'} 2299 | dependencies: 2300 | array-union: 2.1.0 2301 | dir-glob: 3.0.1 2302 | fast-glob: 3.3.2 2303 | ignore: 5.3.0 2304 | merge2: 1.4.1 2305 | slash: 3.0.0 2306 | dev: true 2307 | 2308 | /gopd@1.0.1: 2309 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 2310 | dependencies: 2311 | get-intrinsic: 1.2.2 2312 | dev: true 2313 | 2314 | /graceful-fs@4.2.11: 2315 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 2316 | 2317 | /graphemer@1.4.0: 2318 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 2319 | dev: true 2320 | 2321 | /has-bigints@1.0.2: 2322 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 2323 | dev: true 2324 | 2325 | /has-flag@4.0.0: 2326 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 2327 | engines: {node: '>=8'} 2328 | dev: true 2329 | 2330 | /has-property-descriptors@1.0.1: 2331 | resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} 2332 | dependencies: 2333 | get-intrinsic: 1.2.2 2334 | dev: true 2335 | 2336 | /has-proto@1.0.1: 2337 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 2338 | engines: {node: '>= 0.4'} 2339 | dev: true 2340 | 2341 | /has-symbols@1.0.3: 2342 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 2343 | engines: {node: '>= 0.4'} 2344 | dev: true 2345 | 2346 | /has-tostringtag@1.0.0: 2347 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 2348 | engines: {node: '>= 0.4'} 2349 | dependencies: 2350 | has-symbols: 1.0.3 2351 | dev: true 2352 | 2353 | /hasown@2.0.0: 2354 | resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} 2355 | engines: {node: '>= 0.4'} 2356 | dependencies: 2357 | function-bind: 1.1.2 2358 | 2359 | /ieee754@1.2.1: 2360 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 2361 | dev: false 2362 | 2363 | /ignore@5.3.0: 2364 | resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} 2365 | engines: {node: '>= 4'} 2366 | dev: true 2367 | 2368 | /import-fresh@3.3.0: 2369 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 2370 | engines: {node: '>=6'} 2371 | dependencies: 2372 | parent-module: 1.0.1 2373 | resolve-from: 4.0.0 2374 | dev: true 2375 | 2376 | /import-in-the-middle@1.7.1: 2377 | resolution: {integrity: sha512-1LrZPDtW+atAxH42S6288qyDFNQ2YCty+2mxEPRtfazH6Z5QwkaBSTS2ods7hnVJioF6rkRfNoA6A/MstpFXLg==} 2378 | dependencies: 2379 | acorn: 8.11.3 2380 | acorn-import-assertions: 1.9.0(acorn@8.11.3) 2381 | cjs-module-lexer: 1.2.3 2382 | module-details-from-path: 1.0.3 2383 | dev: false 2384 | 2385 | /imurmurhash@0.1.4: 2386 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 2387 | engines: {node: '>=0.8.19'} 2388 | dev: true 2389 | 2390 | /inflight@1.0.6: 2391 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 2392 | dependencies: 2393 | once: 1.4.0 2394 | wrappy: 1.0.2 2395 | dev: true 2396 | 2397 | /inherits@2.0.4: 2398 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2399 | 2400 | /ini@1.3.8: 2401 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 2402 | dev: false 2403 | 2404 | /internal-slot@1.0.6: 2405 | resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} 2406 | engines: {node: '>= 0.4'} 2407 | dependencies: 2408 | get-intrinsic: 1.2.2 2409 | hasown: 2.0.0 2410 | side-channel: 1.0.4 2411 | dev: true 2412 | 2413 | /is-array-buffer@3.0.2: 2414 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 2415 | dependencies: 2416 | call-bind: 1.0.5 2417 | get-intrinsic: 1.2.2 2418 | is-typed-array: 1.1.12 2419 | dev: true 2420 | 2421 | /is-async-function@2.0.0: 2422 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 2423 | engines: {node: '>= 0.4'} 2424 | dependencies: 2425 | has-tostringtag: 1.0.0 2426 | dev: true 2427 | 2428 | /is-bigint@1.0.4: 2429 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 2430 | dependencies: 2431 | has-bigints: 1.0.2 2432 | dev: true 2433 | 2434 | /is-binary-path@2.1.0: 2435 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 2436 | engines: {node: '>=8'} 2437 | dependencies: 2438 | binary-extensions: 2.2.0 2439 | dev: true 2440 | 2441 | /is-boolean-object@1.1.2: 2442 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 2443 | engines: {node: '>= 0.4'} 2444 | dependencies: 2445 | call-bind: 1.0.5 2446 | has-tostringtag: 1.0.0 2447 | dev: true 2448 | 2449 | /is-callable@1.2.7: 2450 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 2451 | engines: {node: '>= 0.4'} 2452 | dev: true 2453 | 2454 | /is-core-module@2.13.1: 2455 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 2456 | dependencies: 2457 | hasown: 2.0.0 2458 | 2459 | /is-date-object@1.0.5: 2460 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 2461 | engines: {node: '>= 0.4'} 2462 | dependencies: 2463 | has-tostringtag: 1.0.0 2464 | dev: true 2465 | 2466 | /is-extglob@2.1.1: 2467 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 2468 | engines: {node: '>=0.10.0'} 2469 | dev: true 2470 | 2471 | /is-finalizationregistry@1.0.2: 2472 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 2473 | dependencies: 2474 | call-bind: 1.0.5 2475 | dev: true 2476 | 2477 | /is-fullwidth-code-point@3.0.0: 2478 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2479 | engines: {node: '>=8'} 2480 | 2481 | /is-generator-function@1.0.10: 2482 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 2483 | engines: {node: '>= 0.4'} 2484 | dependencies: 2485 | has-tostringtag: 1.0.0 2486 | dev: true 2487 | 2488 | /is-glob@4.0.3: 2489 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2490 | engines: {node: '>=0.10.0'} 2491 | dependencies: 2492 | is-extglob: 2.1.1 2493 | dev: true 2494 | 2495 | /is-map@2.0.2: 2496 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 2497 | dev: true 2498 | 2499 | /is-negative-zero@2.0.2: 2500 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 2501 | engines: {node: '>= 0.4'} 2502 | dev: true 2503 | 2504 | /is-number-object@1.0.7: 2505 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 2506 | engines: {node: '>= 0.4'} 2507 | dependencies: 2508 | has-tostringtag: 1.0.0 2509 | dev: true 2510 | 2511 | /is-number@7.0.0: 2512 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2513 | engines: {node: '>=0.12.0'} 2514 | dev: true 2515 | 2516 | /is-path-inside@3.0.3: 2517 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 2518 | engines: {node: '>=8'} 2519 | dev: true 2520 | 2521 | /is-regex@1.1.4: 2522 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 2523 | engines: {node: '>= 0.4'} 2524 | dependencies: 2525 | call-bind: 1.0.5 2526 | has-tostringtag: 1.0.0 2527 | dev: true 2528 | 2529 | /is-set@2.0.2: 2530 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 2531 | dev: true 2532 | 2533 | /is-shared-array-buffer@1.0.2: 2534 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 2535 | dependencies: 2536 | call-bind: 1.0.5 2537 | dev: true 2538 | 2539 | /is-string@1.0.7: 2540 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 2541 | engines: {node: '>= 0.4'} 2542 | dependencies: 2543 | has-tostringtag: 1.0.0 2544 | dev: true 2545 | 2546 | /is-symbol@1.0.4: 2547 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 2548 | engines: {node: '>= 0.4'} 2549 | dependencies: 2550 | has-symbols: 1.0.3 2551 | dev: true 2552 | 2553 | /is-typed-array@1.1.12: 2554 | resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} 2555 | engines: {node: '>= 0.4'} 2556 | dependencies: 2557 | which-typed-array: 1.1.13 2558 | dev: true 2559 | 2560 | /is-weakmap@2.0.1: 2561 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 2562 | dev: true 2563 | 2564 | /is-weakref@1.0.2: 2565 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 2566 | dependencies: 2567 | call-bind: 1.0.5 2568 | dev: true 2569 | 2570 | /is-weakset@2.0.2: 2571 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 2572 | dependencies: 2573 | call-bind: 1.0.5 2574 | get-intrinsic: 1.2.2 2575 | dev: true 2576 | 2577 | /isarray@2.0.5: 2578 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 2579 | dev: true 2580 | 2581 | /isexe@2.0.0: 2582 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 2583 | dev: true 2584 | 2585 | /iterator.prototype@1.1.2: 2586 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 2587 | dependencies: 2588 | define-properties: 1.2.1 2589 | get-intrinsic: 1.2.2 2590 | has-symbols: 1.0.3 2591 | reflect.getprototypeof: 1.0.4 2592 | set-function-name: 2.0.1 2593 | dev: true 2594 | 2595 | /jackspeak@2.3.6: 2596 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} 2597 | engines: {node: '>=14'} 2598 | dependencies: 2599 | '@isaacs/cliui': 8.0.2 2600 | optionalDependencies: 2601 | '@pkgjs/parseargs': 0.11.0 2602 | dev: true 2603 | 2604 | /jiti@1.21.0: 2605 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} 2606 | hasBin: true 2607 | dev: true 2608 | 2609 | /js-tokens@4.0.0: 2610 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2611 | 2612 | /js-yaml@4.1.0: 2613 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2614 | hasBin: true 2615 | dependencies: 2616 | argparse: 2.0.1 2617 | dev: true 2618 | 2619 | /json-buffer@3.0.1: 2620 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 2621 | dev: true 2622 | 2623 | /json-schema-traverse@0.4.1: 2624 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 2625 | dev: true 2626 | 2627 | /json-stable-stringify-without-jsonify@1.0.1: 2628 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 2629 | dev: true 2630 | 2631 | /json5@1.0.2: 2632 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 2633 | hasBin: true 2634 | dependencies: 2635 | minimist: 1.2.8 2636 | dev: true 2637 | 2638 | /jsx-ast-utils@3.3.5: 2639 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 2640 | engines: {node: '>=4.0'} 2641 | dependencies: 2642 | array-includes: 3.1.7 2643 | array.prototype.flat: 1.3.2 2644 | object.assign: 4.1.5 2645 | object.values: 1.1.7 2646 | dev: true 2647 | 2648 | /keyv@4.5.4: 2649 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 2650 | dependencies: 2651 | json-buffer: 3.0.1 2652 | dev: true 2653 | 2654 | /language-subtag-registry@0.3.22: 2655 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 2656 | dev: true 2657 | 2658 | /language-tags@1.0.9: 2659 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 2660 | engines: {node: '>=0.10'} 2661 | dependencies: 2662 | language-subtag-registry: 0.3.22 2663 | dev: true 2664 | 2665 | /levn@0.4.1: 2666 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 2667 | engines: {node: '>= 0.8.0'} 2668 | dependencies: 2669 | prelude-ls: 1.2.1 2670 | type-check: 0.4.0 2671 | dev: true 2672 | 2673 | /lilconfig@2.1.0: 2674 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 2675 | engines: {node: '>=10'} 2676 | dev: true 2677 | 2678 | /lilconfig@3.0.0: 2679 | resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} 2680 | engines: {node: '>=14'} 2681 | dev: true 2682 | 2683 | /lines-and-columns@1.2.4: 2684 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 2685 | dev: true 2686 | 2687 | /locate-path@6.0.0: 2688 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2689 | engines: {node: '>=10'} 2690 | dependencies: 2691 | p-locate: 5.0.0 2692 | dev: true 2693 | 2694 | /lodash.camelcase@4.3.0: 2695 | resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} 2696 | dev: false 2697 | 2698 | /lodash.merge@4.6.2: 2699 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2700 | 2701 | /long@5.2.3: 2702 | resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==} 2703 | dev: false 2704 | 2705 | /loose-envify@1.4.0: 2706 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 2707 | hasBin: true 2708 | dependencies: 2709 | js-tokens: 4.0.0 2710 | 2711 | /lru-cache@10.1.0: 2712 | resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} 2713 | engines: {node: 14 || >=16.14} 2714 | dev: true 2715 | 2716 | /lru-cache@6.0.0: 2717 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2718 | engines: {node: '>=10'} 2719 | dependencies: 2720 | yallist: 4.0.0 2721 | 2722 | /make-error@1.3.6: 2723 | resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} 2724 | 2725 | /merge2@1.4.1: 2726 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2727 | engines: {node: '>= 8'} 2728 | dev: true 2729 | 2730 | /micromatch@4.0.5: 2731 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 2732 | engines: {node: '>=8.6'} 2733 | dependencies: 2734 | braces: 3.0.2 2735 | picomatch: 2.3.1 2736 | dev: true 2737 | 2738 | /mimic-response@3.1.0: 2739 | resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 2740 | engines: {node: '>=10'} 2741 | dev: false 2742 | 2743 | /minimatch@3.1.2: 2744 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 2745 | dependencies: 2746 | brace-expansion: 1.1.11 2747 | dev: true 2748 | 2749 | /minimatch@9.0.3: 2750 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 2751 | engines: {node: '>=16 || 14 >=14.17'} 2752 | dependencies: 2753 | brace-expansion: 2.0.1 2754 | dev: true 2755 | 2756 | /minimist@1.2.8: 2757 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 2758 | 2759 | /minipass@7.0.4: 2760 | resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} 2761 | engines: {node: '>=16 || 14 >=14.17'} 2762 | dev: true 2763 | 2764 | /mkdirp-classic@0.5.3: 2765 | resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 2766 | dev: false 2767 | 2768 | /module-details-from-path@1.0.3: 2769 | resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==} 2770 | dev: false 2771 | 2772 | /ms@2.1.2: 2773 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2774 | 2775 | /ms@2.1.3: 2776 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 2777 | dev: true 2778 | 2779 | /mz@2.7.0: 2780 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 2781 | dependencies: 2782 | any-promise: 1.3.0 2783 | object-assign: 4.1.1 2784 | thenify-all: 1.6.0 2785 | dev: true 2786 | 2787 | /nanoid@3.3.7: 2788 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 2789 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2790 | hasBin: true 2791 | 2792 | /napi-build-utils@1.0.2: 2793 | resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} 2794 | dev: false 2795 | 2796 | /natural-compare@1.4.0: 2797 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 2798 | dev: true 2799 | 2800 | /next@14.0.4(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0): 2801 | resolution: {integrity: sha512-qbwypnM7327SadwFtxXnQdGiKpkuhaRLE2uq62/nRul9cj9KhQ5LhHmlziTNqUidZotw/Q1I9OjirBROdUJNgA==} 2802 | engines: {node: '>=18.17.0'} 2803 | hasBin: true 2804 | peerDependencies: 2805 | '@opentelemetry/api': ^1.1.0 2806 | react: ^18.2.0 2807 | react-dom: ^18.2.0 2808 | sass: ^1.3.0 2809 | peerDependenciesMeta: 2810 | '@opentelemetry/api': 2811 | optional: true 2812 | sass: 2813 | optional: true 2814 | dependencies: 2815 | '@next/env': 14.0.4 2816 | '@opentelemetry/api': 1.7.0 2817 | '@swc/helpers': 0.5.2 2818 | busboy: 1.6.0 2819 | caniuse-lite: 1.0.30001576 2820 | graceful-fs: 4.2.11 2821 | postcss: 8.4.31 2822 | react: 18.2.0 2823 | react-dom: 18.2.0(react@18.2.0) 2824 | styled-jsx: 5.1.1(react@18.2.0) 2825 | watchpack: 2.4.0 2826 | optionalDependencies: 2827 | '@next/swc-darwin-arm64': 14.0.4 2828 | '@next/swc-darwin-x64': 14.0.4 2829 | '@next/swc-linux-arm64-gnu': 14.0.4 2830 | '@next/swc-linux-arm64-musl': 14.0.4 2831 | '@next/swc-linux-x64-gnu': 14.0.4 2832 | '@next/swc-linux-x64-musl': 14.0.4 2833 | '@next/swc-win32-arm64-msvc': 14.0.4 2834 | '@next/swc-win32-ia32-msvc': 14.0.4 2835 | '@next/swc-win32-x64-msvc': 14.0.4 2836 | transitivePeerDependencies: 2837 | - '@babel/core' 2838 | - babel-plugin-macros 2839 | dev: false 2840 | 2841 | /node-abi@3.52.0: 2842 | resolution: {integrity: sha512-JJ98b02z16ILv7859irtXn4oUaFWADtvkzy2c0IAatNVX2Mc9Yoh8z6hZInn3QwvMEYhHuQloYi+TTQy67SIdQ==} 2843 | engines: {node: '>=10'} 2844 | dependencies: 2845 | semver: 7.5.4 2846 | dev: false 2847 | 2848 | /node-releases@2.0.14: 2849 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} 2850 | dev: true 2851 | 2852 | /normalize-path@3.0.0: 2853 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 2854 | engines: {node: '>=0.10.0'} 2855 | dev: true 2856 | 2857 | /normalize-range@0.1.2: 2858 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 2859 | engines: {node: '>=0.10.0'} 2860 | dev: true 2861 | 2862 | /object-assign@4.1.1: 2863 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 2864 | engines: {node: '>=0.10.0'} 2865 | dev: true 2866 | 2867 | /object-hash@3.0.0: 2868 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 2869 | engines: {node: '>= 6'} 2870 | dev: true 2871 | 2872 | /object-inspect@1.13.1: 2873 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 2874 | dev: true 2875 | 2876 | /object-keys@1.1.1: 2877 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 2878 | engines: {node: '>= 0.4'} 2879 | dev: true 2880 | 2881 | /object.assign@4.1.5: 2882 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 2883 | engines: {node: '>= 0.4'} 2884 | dependencies: 2885 | call-bind: 1.0.5 2886 | define-properties: 1.2.1 2887 | has-symbols: 1.0.3 2888 | object-keys: 1.1.1 2889 | dev: true 2890 | 2891 | /object.entries@1.1.7: 2892 | resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} 2893 | engines: {node: '>= 0.4'} 2894 | dependencies: 2895 | call-bind: 1.0.5 2896 | define-properties: 1.2.1 2897 | es-abstract: 1.22.3 2898 | dev: true 2899 | 2900 | /object.fromentries@2.0.7: 2901 | resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} 2902 | engines: {node: '>= 0.4'} 2903 | dependencies: 2904 | call-bind: 1.0.5 2905 | define-properties: 1.2.1 2906 | es-abstract: 1.22.3 2907 | dev: true 2908 | 2909 | /object.groupby@1.0.1: 2910 | resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} 2911 | dependencies: 2912 | call-bind: 1.0.5 2913 | define-properties: 1.2.1 2914 | es-abstract: 1.22.3 2915 | get-intrinsic: 1.2.2 2916 | dev: true 2917 | 2918 | /object.hasown@1.1.3: 2919 | resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} 2920 | dependencies: 2921 | define-properties: 1.2.1 2922 | es-abstract: 1.22.3 2923 | dev: true 2924 | 2925 | /object.values@1.1.7: 2926 | resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} 2927 | engines: {node: '>= 0.4'} 2928 | dependencies: 2929 | call-bind: 1.0.5 2930 | define-properties: 1.2.1 2931 | es-abstract: 1.22.3 2932 | dev: true 2933 | 2934 | /once@1.4.0: 2935 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2936 | dependencies: 2937 | wrappy: 1.0.2 2938 | 2939 | /optionator@0.9.3: 2940 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 2941 | engines: {node: '>= 0.8.0'} 2942 | dependencies: 2943 | '@aashutoshrathi/word-wrap': 1.2.6 2944 | deep-is: 0.1.4 2945 | fast-levenshtein: 2.0.6 2946 | levn: 0.4.1 2947 | prelude-ls: 1.2.1 2948 | type-check: 0.4.0 2949 | dev: true 2950 | 2951 | /p-limit@3.1.0: 2952 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2953 | engines: {node: '>=10'} 2954 | dependencies: 2955 | yocto-queue: 0.1.0 2956 | dev: true 2957 | 2958 | /p-locate@5.0.0: 2959 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2960 | engines: {node: '>=10'} 2961 | dependencies: 2962 | p-limit: 3.1.0 2963 | dev: true 2964 | 2965 | /parent-module@1.0.1: 2966 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2967 | engines: {node: '>=6'} 2968 | dependencies: 2969 | callsites: 3.1.0 2970 | dev: true 2971 | 2972 | /path-exists@4.0.0: 2973 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2974 | engines: {node: '>=8'} 2975 | dev: true 2976 | 2977 | /path-is-absolute@1.0.1: 2978 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2979 | engines: {node: '>=0.10.0'} 2980 | dev: true 2981 | 2982 | /path-key@3.1.1: 2983 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2984 | engines: {node: '>=8'} 2985 | dev: true 2986 | 2987 | /path-parse@1.0.7: 2988 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2989 | 2990 | /path-scurry@1.10.1: 2991 | resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} 2992 | engines: {node: '>=16 || 14 >=14.17'} 2993 | dependencies: 2994 | lru-cache: 10.1.0 2995 | minipass: 7.0.4 2996 | dev: true 2997 | 2998 | /path-type@4.0.0: 2999 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 3000 | engines: {node: '>=8'} 3001 | dev: true 3002 | 3003 | /picocolors@1.0.0: 3004 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 3005 | 3006 | /picomatch@2.3.1: 3007 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 3008 | engines: {node: '>=8.6'} 3009 | dev: true 3010 | 3011 | /pify@2.3.0: 3012 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 3013 | engines: {node: '>=0.10.0'} 3014 | dev: true 3015 | 3016 | /pirates@4.0.6: 3017 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 3018 | engines: {node: '>= 6'} 3019 | dev: true 3020 | 3021 | /postcss-import@15.1.0(postcss@8.4.33): 3022 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 3023 | engines: {node: '>=14.0.0'} 3024 | peerDependencies: 3025 | postcss: ^8.0.0 3026 | dependencies: 3027 | postcss: 8.4.33 3028 | postcss-value-parser: 4.2.0 3029 | read-cache: 1.0.0 3030 | resolve: 1.22.8 3031 | dev: true 3032 | 3033 | /postcss-js@4.0.1(postcss@8.4.33): 3034 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 3035 | engines: {node: ^12 || ^14 || >= 16} 3036 | peerDependencies: 3037 | postcss: ^8.4.21 3038 | dependencies: 3039 | camelcase-css: 2.0.1 3040 | postcss: 8.4.33 3041 | dev: true 3042 | 3043 | /postcss-load-config@4.0.2(postcss@8.4.33)(ts-node@10.9.2): 3044 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 3045 | engines: {node: '>= 14'} 3046 | peerDependencies: 3047 | postcss: '>=8.0.9' 3048 | ts-node: '>=9.0.0' 3049 | peerDependenciesMeta: 3050 | postcss: 3051 | optional: true 3052 | ts-node: 3053 | optional: true 3054 | dependencies: 3055 | lilconfig: 3.0.0 3056 | postcss: 8.4.33 3057 | ts-node: 10.9.2(@types/node@20.11.1)(typescript@5.3.3) 3058 | yaml: 2.3.4 3059 | dev: true 3060 | 3061 | /postcss-nested@6.0.1(postcss@8.4.33): 3062 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 3063 | engines: {node: '>=12.0'} 3064 | peerDependencies: 3065 | postcss: ^8.2.14 3066 | dependencies: 3067 | postcss: 8.4.33 3068 | postcss-selector-parser: 6.0.15 3069 | dev: true 3070 | 3071 | /postcss-selector-parser@6.0.15: 3072 | resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} 3073 | engines: {node: '>=4'} 3074 | dependencies: 3075 | cssesc: 3.0.0 3076 | util-deprecate: 1.0.2 3077 | dev: true 3078 | 3079 | /postcss-value-parser@4.2.0: 3080 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 3081 | dev: true 3082 | 3083 | /postcss@8.4.31: 3084 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 3085 | engines: {node: ^10 || ^12 || >=14} 3086 | dependencies: 3087 | nanoid: 3.3.7 3088 | picocolors: 1.0.0 3089 | source-map-js: 1.0.2 3090 | dev: false 3091 | 3092 | /postcss@8.4.33: 3093 | resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} 3094 | engines: {node: ^10 || ^12 || >=14} 3095 | dependencies: 3096 | nanoid: 3.3.7 3097 | picocolors: 1.0.0 3098 | source-map-js: 1.0.2 3099 | dev: true 3100 | 3101 | /prebuild-install@7.1.1: 3102 | resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} 3103 | engines: {node: '>=10'} 3104 | hasBin: true 3105 | dependencies: 3106 | detect-libc: 2.0.2 3107 | expand-template: 2.0.3 3108 | github-from-package: 0.0.0 3109 | minimist: 1.2.8 3110 | mkdirp-classic: 0.5.3 3111 | napi-build-utils: 1.0.2 3112 | node-abi: 3.52.0 3113 | pump: 3.0.0 3114 | rc: 1.2.8 3115 | simple-get: 4.0.1 3116 | tar-fs: 2.1.1 3117 | tunnel-agent: 0.6.0 3118 | dev: false 3119 | 3120 | /prelude-ls@1.2.1: 3121 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 3122 | engines: {node: '>= 0.8.0'} 3123 | dev: true 3124 | 3125 | /prop-types@15.8.1: 3126 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 3127 | dependencies: 3128 | loose-envify: 1.4.0 3129 | object-assign: 4.1.1 3130 | react-is: 16.13.1 3131 | dev: true 3132 | 3133 | /protobufjs@7.2.5: 3134 | resolution: {integrity: sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==} 3135 | engines: {node: '>=12.0.0'} 3136 | requiresBuild: true 3137 | dependencies: 3138 | '@protobufjs/aspromise': 1.1.2 3139 | '@protobufjs/base64': 1.1.2 3140 | '@protobufjs/codegen': 2.0.4 3141 | '@protobufjs/eventemitter': 1.1.0 3142 | '@protobufjs/fetch': 1.1.0 3143 | '@protobufjs/float': 1.0.2 3144 | '@protobufjs/inquire': 1.1.0 3145 | '@protobufjs/path': 1.1.2 3146 | '@protobufjs/pool': 1.1.0 3147 | '@protobufjs/utf8': 1.1.0 3148 | '@types/node': 20.11.1 3149 | long: 5.2.3 3150 | dev: false 3151 | 3152 | /pump@3.0.0: 3153 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} 3154 | dependencies: 3155 | end-of-stream: 1.4.4 3156 | once: 1.4.0 3157 | dev: false 3158 | 3159 | /punycode@2.3.1: 3160 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 3161 | engines: {node: '>=6'} 3162 | dev: true 3163 | 3164 | /pure-rand@6.0.4: 3165 | resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==} 3166 | dev: false 3167 | 3168 | /queue-microtask@1.2.3: 3169 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 3170 | dev: true 3171 | 3172 | /rc@1.2.8: 3173 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 3174 | hasBin: true 3175 | dependencies: 3176 | deep-extend: 0.6.0 3177 | ini: 1.3.8 3178 | minimist: 1.2.8 3179 | strip-json-comments: 2.0.1 3180 | dev: false 3181 | 3182 | /react-dom@18.2.0(react@18.2.0): 3183 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 3184 | peerDependencies: 3185 | react: ^18.2.0 3186 | dependencies: 3187 | loose-envify: 1.4.0 3188 | react: 18.2.0 3189 | scheduler: 0.23.0 3190 | dev: false 3191 | 3192 | /react-is@16.13.1: 3193 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 3194 | dev: true 3195 | 3196 | /react@18.2.0: 3197 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 3198 | engines: {node: '>=0.10.0'} 3199 | dependencies: 3200 | loose-envify: 1.4.0 3201 | dev: false 3202 | 3203 | /read-cache@1.0.0: 3204 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 3205 | dependencies: 3206 | pify: 2.3.0 3207 | dev: true 3208 | 3209 | /readable-stream@3.6.2: 3210 | resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 3211 | engines: {node: '>= 6'} 3212 | dependencies: 3213 | inherits: 2.0.4 3214 | string_decoder: 1.3.0 3215 | util-deprecate: 1.0.2 3216 | dev: false 3217 | 3218 | /readdirp@3.6.0: 3219 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 3220 | engines: {node: '>=8.10.0'} 3221 | dependencies: 3222 | picomatch: 2.3.1 3223 | dev: true 3224 | 3225 | /reflect.getprototypeof@1.0.4: 3226 | resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} 3227 | engines: {node: '>= 0.4'} 3228 | dependencies: 3229 | call-bind: 1.0.5 3230 | define-properties: 1.2.1 3231 | es-abstract: 1.22.3 3232 | get-intrinsic: 1.2.2 3233 | globalthis: 1.0.3 3234 | which-builtin-type: 1.1.3 3235 | dev: true 3236 | 3237 | /regenerator-runtime@0.14.1: 3238 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 3239 | dev: true 3240 | 3241 | /regexp.prototype.flags@1.5.1: 3242 | resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} 3243 | engines: {node: '>= 0.4'} 3244 | dependencies: 3245 | call-bind: 1.0.5 3246 | define-properties: 1.2.1 3247 | set-function-name: 2.0.1 3248 | dev: true 3249 | 3250 | /require-directory@2.1.1: 3251 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 3252 | engines: {node: '>=0.10.0'} 3253 | dev: false 3254 | 3255 | /require-in-the-middle@7.2.0: 3256 | resolution: {integrity: sha512-3TLx5TGyAY6AOqLBoXmHkNql0HIf2RGbuMgCDT2WO/uGVAPJs6h7Kl+bN6TIZGd9bWhWPwnDnTHGtW8Iu77sdw==} 3257 | engines: {node: '>=8.6.0'} 3258 | dependencies: 3259 | debug: 4.3.4 3260 | module-details-from-path: 1.0.3 3261 | resolve: 1.22.8 3262 | transitivePeerDependencies: 3263 | - supports-color 3264 | dev: false 3265 | 3266 | /resolve-from@4.0.0: 3267 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 3268 | engines: {node: '>=4'} 3269 | dev: true 3270 | 3271 | /resolve-pkg-maps@1.0.0: 3272 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 3273 | dev: true 3274 | 3275 | /resolve@1.22.8: 3276 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 3277 | hasBin: true 3278 | dependencies: 3279 | is-core-module: 2.13.1 3280 | path-parse: 1.0.7 3281 | supports-preserve-symlinks-flag: 1.0.0 3282 | 3283 | /resolve@2.0.0-next.5: 3284 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 3285 | hasBin: true 3286 | dependencies: 3287 | is-core-module: 2.13.1 3288 | path-parse: 1.0.7 3289 | supports-preserve-symlinks-flag: 1.0.0 3290 | dev: true 3291 | 3292 | /reusify@1.0.4: 3293 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 3294 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3295 | dev: true 3296 | 3297 | /rimraf@3.0.2: 3298 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 3299 | hasBin: true 3300 | dependencies: 3301 | glob: 7.2.3 3302 | dev: true 3303 | 3304 | /run-parallel@1.2.0: 3305 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 3306 | dependencies: 3307 | queue-microtask: 1.2.3 3308 | dev: true 3309 | 3310 | /safe-array-concat@1.0.1: 3311 | resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} 3312 | engines: {node: '>=0.4'} 3313 | dependencies: 3314 | call-bind: 1.0.5 3315 | get-intrinsic: 1.2.2 3316 | has-symbols: 1.0.3 3317 | isarray: 2.0.5 3318 | dev: true 3319 | 3320 | /safe-buffer@5.2.1: 3321 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 3322 | dev: false 3323 | 3324 | /safe-regex-test@1.0.2: 3325 | resolution: {integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==} 3326 | engines: {node: '>= 0.4'} 3327 | dependencies: 3328 | call-bind: 1.0.5 3329 | get-intrinsic: 1.2.2 3330 | is-regex: 1.1.4 3331 | dev: true 3332 | 3333 | /scheduler@0.23.0: 3334 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 3335 | dependencies: 3336 | loose-envify: 1.4.0 3337 | dev: false 3338 | 3339 | /semver@6.3.1: 3340 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 3341 | hasBin: true 3342 | dev: true 3343 | 3344 | /semver@7.5.4: 3345 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 3346 | engines: {node: '>=10'} 3347 | hasBin: true 3348 | dependencies: 3349 | lru-cache: 6.0.0 3350 | 3351 | /set-function-length@1.2.0: 3352 | resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} 3353 | engines: {node: '>= 0.4'} 3354 | dependencies: 3355 | define-data-property: 1.1.1 3356 | function-bind: 1.1.2 3357 | get-intrinsic: 1.2.2 3358 | gopd: 1.0.1 3359 | has-property-descriptors: 1.0.1 3360 | dev: true 3361 | 3362 | /set-function-name@2.0.1: 3363 | resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} 3364 | engines: {node: '>= 0.4'} 3365 | dependencies: 3366 | define-data-property: 1.1.1 3367 | functions-have-names: 1.2.3 3368 | has-property-descriptors: 1.0.1 3369 | dev: true 3370 | 3371 | /shebang-command@2.0.0: 3372 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 3373 | engines: {node: '>=8'} 3374 | dependencies: 3375 | shebang-regex: 3.0.0 3376 | dev: true 3377 | 3378 | /shebang-regex@3.0.0: 3379 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3380 | engines: {node: '>=8'} 3381 | dev: true 3382 | 3383 | /shimmer@1.2.1: 3384 | resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} 3385 | dev: false 3386 | 3387 | /side-channel@1.0.4: 3388 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 3389 | dependencies: 3390 | call-bind: 1.0.5 3391 | get-intrinsic: 1.2.2 3392 | object-inspect: 1.13.1 3393 | dev: true 3394 | 3395 | /signal-exit@4.1.0: 3396 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 3397 | engines: {node: '>=14'} 3398 | dev: true 3399 | 3400 | /simple-concat@1.0.1: 3401 | resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} 3402 | dev: false 3403 | 3404 | /simple-get@4.0.1: 3405 | resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} 3406 | dependencies: 3407 | decompress-response: 6.0.0 3408 | once: 1.4.0 3409 | simple-concat: 1.0.1 3410 | dev: false 3411 | 3412 | /slash@3.0.0: 3413 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 3414 | engines: {node: '>=8'} 3415 | dev: true 3416 | 3417 | /source-map-js@1.0.2: 3418 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 3419 | engines: {node: '>=0.10.0'} 3420 | 3421 | /streamsearch@1.1.0: 3422 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 3423 | engines: {node: '>=10.0.0'} 3424 | dev: false 3425 | 3426 | /string-width@4.2.3: 3427 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 3428 | engines: {node: '>=8'} 3429 | dependencies: 3430 | emoji-regex: 8.0.0 3431 | is-fullwidth-code-point: 3.0.0 3432 | strip-ansi: 6.0.1 3433 | 3434 | /string-width@5.1.2: 3435 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 3436 | engines: {node: '>=12'} 3437 | dependencies: 3438 | eastasianwidth: 0.2.0 3439 | emoji-regex: 9.2.2 3440 | strip-ansi: 7.1.0 3441 | dev: true 3442 | 3443 | /string.prototype.matchall@4.0.10: 3444 | resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} 3445 | dependencies: 3446 | call-bind: 1.0.5 3447 | define-properties: 1.2.1 3448 | es-abstract: 1.22.3 3449 | get-intrinsic: 1.2.2 3450 | has-symbols: 1.0.3 3451 | internal-slot: 1.0.6 3452 | regexp.prototype.flags: 1.5.1 3453 | set-function-name: 2.0.1 3454 | side-channel: 1.0.4 3455 | dev: true 3456 | 3457 | /string.prototype.trim@1.2.8: 3458 | resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} 3459 | engines: {node: '>= 0.4'} 3460 | dependencies: 3461 | call-bind: 1.0.5 3462 | define-properties: 1.2.1 3463 | es-abstract: 1.22.3 3464 | dev: true 3465 | 3466 | /string.prototype.trimend@1.0.7: 3467 | resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} 3468 | dependencies: 3469 | call-bind: 1.0.5 3470 | define-properties: 1.2.1 3471 | es-abstract: 1.22.3 3472 | dev: true 3473 | 3474 | /string.prototype.trimstart@1.0.7: 3475 | resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} 3476 | dependencies: 3477 | call-bind: 1.0.5 3478 | define-properties: 1.2.1 3479 | es-abstract: 1.22.3 3480 | dev: true 3481 | 3482 | /string_decoder@1.3.0: 3483 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 3484 | dependencies: 3485 | safe-buffer: 5.2.1 3486 | dev: false 3487 | 3488 | /strip-ansi@6.0.1: 3489 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3490 | engines: {node: '>=8'} 3491 | dependencies: 3492 | ansi-regex: 5.0.1 3493 | 3494 | /strip-ansi@7.1.0: 3495 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 3496 | engines: {node: '>=12'} 3497 | dependencies: 3498 | ansi-regex: 6.0.1 3499 | dev: true 3500 | 3501 | /strip-bom@3.0.0: 3502 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 3503 | engines: {node: '>=4'} 3504 | dev: true 3505 | 3506 | /strip-json-comments@2.0.1: 3507 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 3508 | engines: {node: '>=0.10.0'} 3509 | dev: false 3510 | 3511 | /strip-json-comments@3.1.1: 3512 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 3513 | engines: {node: '>=8'} 3514 | dev: true 3515 | 3516 | /styled-jsx@5.1.1(react@18.2.0): 3517 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 3518 | engines: {node: '>= 12.0.0'} 3519 | peerDependencies: 3520 | '@babel/core': '*' 3521 | babel-plugin-macros: '*' 3522 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 3523 | peerDependenciesMeta: 3524 | '@babel/core': 3525 | optional: true 3526 | babel-plugin-macros: 3527 | optional: true 3528 | dependencies: 3529 | client-only: 0.0.1 3530 | react: 18.2.0 3531 | dev: false 3532 | 3533 | /sucrase@3.35.0: 3534 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 3535 | engines: {node: '>=16 || 14 >=14.17'} 3536 | hasBin: true 3537 | dependencies: 3538 | '@jridgewell/gen-mapping': 0.3.3 3539 | commander: 4.1.1 3540 | glob: 10.3.10 3541 | lines-and-columns: 1.2.4 3542 | mz: 2.7.0 3543 | pirates: 4.0.6 3544 | ts-interface-checker: 0.1.13 3545 | dev: true 3546 | 3547 | /supports-color@7.2.0: 3548 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 3549 | engines: {node: '>=8'} 3550 | dependencies: 3551 | has-flag: 4.0.0 3552 | dev: true 3553 | 3554 | /supports-preserve-symlinks-flag@1.0.0: 3555 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 3556 | engines: {node: '>= 0.4'} 3557 | 3558 | /tailwindcss@3.4.1(ts-node@10.9.2): 3559 | resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} 3560 | engines: {node: '>=14.0.0'} 3561 | hasBin: true 3562 | dependencies: 3563 | '@alloc/quick-lru': 5.2.0 3564 | arg: 5.0.2 3565 | chokidar: 3.5.3 3566 | didyoumean: 1.2.2 3567 | dlv: 1.1.3 3568 | fast-glob: 3.3.2 3569 | glob-parent: 6.0.2 3570 | is-glob: 4.0.3 3571 | jiti: 1.21.0 3572 | lilconfig: 2.1.0 3573 | micromatch: 4.0.5 3574 | normalize-path: 3.0.0 3575 | object-hash: 3.0.0 3576 | picocolors: 1.0.0 3577 | postcss: 8.4.33 3578 | postcss-import: 15.1.0(postcss@8.4.33) 3579 | postcss-js: 4.0.1(postcss@8.4.33) 3580 | postcss-load-config: 4.0.2(postcss@8.4.33)(ts-node@10.9.2) 3581 | postcss-nested: 6.0.1(postcss@8.4.33) 3582 | postcss-selector-parser: 6.0.15 3583 | resolve: 1.22.8 3584 | sucrase: 3.35.0 3585 | transitivePeerDependencies: 3586 | - ts-node 3587 | dev: true 3588 | 3589 | /tapable@2.2.1: 3590 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 3591 | engines: {node: '>=6'} 3592 | dev: true 3593 | 3594 | /tar-fs@2.1.1: 3595 | resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} 3596 | dependencies: 3597 | chownr: 1.1.4 3598 | mkdirp-classic: 0.5.3 3599 | pump: 3.0.0 3600 | tar-stream: 2.2.0 3601 | dev: false 3602 | 3603 | /tar-stream@2.2.0: 3604 | resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 3605 | engines: {node: '>=6'} 3606 | dependencies: 3607 | bl: 4.1.0 3608 | end-of-stream: 1.4.4 3609 | fs-constants: 1.0.0 3610 | inherits: 2.0.4 3611 | readable-stream: 3.6.2 3612 | dev: false 3613 | 3614 | /text-table@0.2.0: 3615 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 3616 | dev: true 3617 | 3618 | /thenify-all@1.6.0: 3619 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 3620 | engines: {node: '>=0.8'} 3621 | dependencies: 3622 | thenify: 3.3.1 3623 | dev: true 3624 | 3625 | /thenify@3.3.1: 3626 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 3627 | dependencies: 3628 | any-promise: 1.3.0 3629 | dev: true 3630 | 3631 | /to-regex-range@5.0.1: 3632 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3633 | engines: {node: '>=8.0'} 3634 | dependencies: 3635 | is-number: 7.0.0 3636 | dev: true 3637 | 3638 | /todomvc-app-css@2.4.3: 3639 | resolution: {integrity: sha512-mSnWZaKBWj9aQcFRsGguY/a8O8NR8GmecD48yU1rzwNemgZa/INLpIsxxMiToFGVth+uEKBrQ7IhWkaXZxwq5Q==} 3640 | engines: {node: '>=4'} 3641 | dev: false 3642 | 3643 | /todomvc-common@1.0.5: 3644 | resolution: {integrity: sha512-D8kEJmxVMQIWwztEdH+WeiAfXRbbSCpgXq4NkYi+gduJ2tr8CNq7sYLfJvjpQ10KD9QxJwig57rvMbV2QAESwQ==} 3645 | dev: false 3646 | 3647 | /ts-api-utils@1.0.3(typescript@5.3.3): 3648 | resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} 3649 | engines: {node: '>=16.13.0'} 3650 | peerDependencies: 3651 | typescript: '>=4.2.0' 3652 | dependencies: 3653 | typescript: 5.3.3 3654 | dev: true 3655 | 3656 | /ts-interface-checker@0.1.13: 3657 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 3658 | dev: true 3659 | 3660 | /ts-node@10.9.2(@types/node@20.11.1)(typescript@5.3.3): 3661 | resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} 3662 | hasBin: true 3663 | peerDependencies: 3664 | '@swc/core': '>=1.2.50' 3665 | '@swc/wasm': '>=1.2.50' 3666 | '@types/node': '*' 3667 | typescript: '>=2.7' 3668 | peerDependenciesMeta: 3669 | '@swc/core': 3670 | optional: true 3671 | '@swc/wasm': 3672 | optional: true 3673 | dependencies: 3674 | '@cspotcode/source-map-support': 0.8.1 3675 | '@tsconfig/node10': 1.0.9 3676 | '@tsconfig/node12': 1.0.11 3677 | '@tsconfig/node14': 1.0.3 3678 | '@tsconfig/node16': 1.0.4 3679 | '@types/node': 20.11.1 3680 | acorn: 8.11.3 3681 | acorn-walk: 8.3.2 3682 | arg: 4.1.3 3683 | create-require: 1.1.1 3684 | diff: 4.0.2 3685 | make-error: 1.3.6 3686 | typescript: 5.3.3 3687 | v8-compile-cache-lib: 3.0.1 3688 | yn: 3.1.1 3689 | 3690 | /tsconfig-paths@3.15.0: 3691 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 3692 | dependencies: 3693 | '@types/json5': 0.0.29 3694 | json5: 1.0.2 3695 | minimist: 1.2.8 3696 | strip-bom: 3.0.0 3697 | dev: true 3698 | 3699 | /tslib@2.6.2: 3700 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 3701 | dev: false 3702 | 3703 | /tsx@4.7.0: 3704 | resolution: {integrity: sha512-I+t79RYPlEYlHn9a+KzwrvEwhJg35h/1zHsLC2JXvhC2mdynMv6Zxzvhv5EMV6VF5qJlLlkSnMVvdZV3PSIGcg==} 3705 | engines: {node: '>=18.0.0'} 3706 | hasBin: true 3707 | dependencies: 3708 | esbuild: 0.19.11 3709 | get-tsconfig: 4.7.2 3710 | optionalDependencies: 3711 | fsevents: 2.3.3 3712 | dev: true 3713 | 3714 | /tunnel-agent@0.6.0: 3715 | resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} 3716 | dependencies: 3717 | safe-buffer: 5.2.1 3718 | dev: false 3719 | 3720 | /type-check@0.4.0: 3721 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 3722 | engines: {node: '>= 0.8.0'} 3723 | dependencies: 3724 | prelude-ls: 1.2.1 3725 | dev: true 3726 | 3727 | /type-fest@0.20.2: 3728 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 3729 | engines: {node: '>=10'} 3730 | dev: true 3731 | 3732 | /typed-array-buffer@1.0.0: 3733 | resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} 3734 | engines: {node: '>= 0.4'} 3735 | dependencies: 3736 | call-bind: 1.0.5 3737 | get-intrinsic: 1.2.2 3738 | is-typed-array: 1.1.12 3739 | dev: true 3740 | 3741 | /typed-array-byte-length@1.0.0: 3742 | resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} 3743 | engines: {node: '>= 0.4'} 3744 | dependencies: 3745 | call-bind: 1.0.5 3746 | for-each: 0.3.3 3747 | has-proto: 1.0.1 3748 | is-typed-array: 1.1.12 3749 | dev: true 3750 | 3751 | /typed-array-byte-offset@1.0.0: 3752 | resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} 3753 | engines: {node: '>= 0.4'} 3754 | dependencies: 3755 | available-typed-arrays: 1.0.5 3756 | call-bind: 1.0.5 3757 | for-each: 0.3.3 3758 | has-proto: 1.0.1 3759 | is-typed-array: 1.1.12 3760 | dev: true 3761 | 3762 | /typed-array-length@1.0.4: 3763 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 3764 | dependencies: 3765 | call-bind: 1.0.5 3766 | for-each: 0.3.3 3767 | is-typed-array: 1.1.12 3768 | dev: true 3769 | 3770 | /typescript@5.3.3: 3771 | resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} 3772 | engines: {node: '>=14.17'} 3773 | hasBin: true 3774 | 3775 | /unbox-primitive@1.0.2: 3776 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 3777 | dependencies: 3778 | call-bind: 1.0.5 3779 | has-bigints: 1.0.2 3780 | has-symbols: 1.0.3 3781 | which-boxed-primitive: 1.0.2 3782 | dev: true 3783 | 3784 | /undici-types@5.26.5: 3785 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 3786 | 3787 | /update-browserslist-db@1.0.13(browserslist@4.22.2): 3788 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} 3789 | hasBin: true 3790 | peerDependencies: 3791 | browserslist: '>= 4.21.0' 3792 | dependencies: 3793 | browserslist: 4.22.2 3794 | escalade: 3.1.1 3795 | picocolors: 1.0.0 3796 | dev: true 3797 | 3798 | /uri-js@4.4.1: 3799 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 3800 | dependencies: 3801 | punycode: 2.3.1 3802 | dev: true 3803 | 3804 | /util-deprecate@1.0.2: 3805 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3806 | 3807 | /v8-compile-cache-lib@3.0.1: 3808 | resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} 3809 | 3810 | /watchpack@2.4.0: 3811 | resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} 3812 | engines: {node: '>=10.13.0'} 3813 | dependencies: 3814 | glob-to-regexp: 0.4.1 3815 | graceful-fs: 4.2.11 3816 | dev: false 3817 | 3818 | /which-boxed-primitive@1.0.2: 3819 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 3820 | dependencies: 3821 | is-bigint: 1.0.4 3822 | is-boolean-object: 1.1.2 3823 | is-number-object: 1.0.7 3824 | is-string: 1.0.7 3825 | is-symbol: 1.0.4 3826 | dev: true 3827 | 3828 | /which-builtin-type@1.1.3: 3829 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 3830 | engines: {node: '>= 0.4'} 3831 | dependencies: 3832 | function.prototype.name: 1.1.6 3833 | has-tostringtag: 1.0.0 3834 | is-async-function: 2.0.0 3835 | is-date-object: 1.0.5 3836 | is-finalizationregistry: 1.0.2 3837 | is-generator-function: 1.0.10 3838 | is-regex: 1.1.4 3839 | is-weakref: 1.0.2 3840 | isarray: 2.0.5 3841 | which-boxed-primitive: 1.0.2 3842 | which-collection: 1.0.1 3843 | which-typed-array: 1.1.13 3844 | dev: true 3845 | 3846 | /which-collection@1.0.1: 3847 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 3848 | dependencies: 3849 | is-map: 2.0.2 3850 | is-set: 2.0.2 3851 | is-weakmap: 2.0.1 3852 | is-weakset: 2.0.2 3853 | dev: true 3854 | 3855 | /which-typed-array@1.1.13: 3856 | resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} 3857 | engines: {node: '>= 0.4'} 3858 | dependencies: 3859 | available-typed-arrays: 1.0.5 3860 | call-bind: 1.0.5 3861 | for-each: 0.3.3 3862 | gopd: 1.0.1 3863 | has-tostringtag: 1.0.0 3864 | dev: true 3865 | 3866 | /which@2.0.2: 3867 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 3868 | engines: {node: '>= 8'} 3869 | hasBin: true 3870 | dependencies: 3871 | isexe: 2.0.0 3872 | dev: true 3873 | 3874 | /wrap-ansi@7.0.0: 3875 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 3876 | engines: {node: '>=10'} 3877 | dependencies: 3878 | ansi-styles: 4.3.0 3879 | string-width: 4.2.3 3880 | strip-ansi: 6.0.1 3881 | 3882 | /wrap-ansi@8.1.0: 3883 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 3884 | engines: {node: '>=12'} 3885 | dependencies: 3886 | ansi-styles: 6.2.1 3887 | string-width: 5.1.2 3888 | strip-ansi: 7.1.0 3889 | dev: true 3890 | 3891 | /wrappy@1.0.2: 3892 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 3893 | 3894 | /y18n@5.0.8: 3895 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 3896 | engines: {node: '>=10'} 3897 | dev: false 3898 | 3899 | /yallist@4.0.0: 3900 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3901 | 3902 | /yaml@2.3.4: 3903 | resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} 3904 | engines: {node: '>= 14'} 3905 | dev: true 3906 | 3907 | /yargs-parser@21.1.1: 3908 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 3909 | engines: {node: '>=12'} 3910 | dev: false 3911 | 3912 | /yargs@17.7.2: 3913 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 3914 | engines: {node: '>=12'} 3915 | dependencies: 3916 | cliui: 8.0.1 3917 | escalade: 3.1.1 3918 | get-caller-file: 2.0.5 3919 | require-directory: 2.1.1 3920 | string-width: 4.2.3 3921 | y18n: 5.0.8 3922 | yargs-parser: 21.1.1 3923 | dev: false 3924 | 3925 | /yn@3.1.1: 3926 | resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} 3927 | engines: {node: '>=6'} 3928 | 3929 | /yocto-queue@0.1.0: 3930 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 3931 | engines: {node: '>=10'} 3932 | dev: true 3933 | --------------------------------------------------------------------------------