├── src ├── vite-env.d.ts ├── main.tsx ├── App.css ├── index.css ├── App.tsx └── assets │ └── react.svg ├── tsconfig.node.tsbuildinfo ├── tsconfig.app.tsbuildinfo ├── tsconfig.json ├── vite.config.ts ├── .gitignore ├── index.html ├── tsconfig.node.json ├── tsconfig.app.json ├── eslint.config.js ├── package.json ├── public └── vite.svg ├── README.md └── pnpm-lock.yaml /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.node.tsbuildinfo: -------------------------------------------------------------------------------- 1 | {"root":["./vite.config.ts"],"version":"5.6.2"} -------------------------------------------------------------------------------- /tsconfig.app.tsbuildinfo: -------------------------------------------------------------------------------- 1 | {"root":["./src/app.tsx","./src/main.tsx","./src/vite-env.d.ts"],"version":"5.6.2"} -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [], 3 | "references": [ 4 | { "path": "./tsconfig.app.json" }, 5 | { "path": "./tsconfig.node.json" } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }) 8 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from 'react' 2 | import { createRoot } from 'react-dom/client' 3 | import App from './App.tsx' 4 | import './index.css' 5 | 6 | createRoot(document.getElementById('root')!).render( 7 | 8 | 9 | , 10 | ) 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | 26 | # Local Netlify folder 27 | .netlify 28 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React + TS 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2022", 4 | "lib": ["ES2023"], 5 | "module": "ESNext", 6 | "skipLibCheck": true, 7 | 8 | /* Bundler mode */ 9 | "moduleResolution": "bundler", 10 | "allowImportingTsExtensions": true, 11 | "isolatedModules": true, 12 | "moduleDetection": "force", 13 | "noEmit": true, 14 | 15 | /* Linting */ 16 | "strict": true, 17 | "noUnusedLocals": true, 18 | "noUnusedParameters": true, 19 | "noFallthroughCasesInSwitch": true 20 | }, 21 | "include": ["vite.config.ts"] 22 | } 23 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 6 | "module": "ESNext", 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "isolatedModules": true, 13 | "moduleDetection": "force", 14 | "noEmit": true, 15 | "jsx": "react-jsx", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src"] 24 | } 25 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | #root { 2 | max-width: 1280px; 3 | margin: 0 auto; 4 | padding: 2rem; 5 | text-align: center; 6 | } 7 | 8 | .logo { 9 | height: 6em; 10 | padding: 1.5em; 11 | will-change: filter; 12 | transition: filter 300ms; 13 | } 14 | .logo:hover { 15 | filter: drop-shadow(0 0 2em #646cffaa); 16 | } 17 | .logo.react:hover { 18 | filter: drop-shadow(0 0 2em #61dafbaa); 19 | } 20 | 21 | @keyframes logo-spin { 22 | from { 23 | transform: rotate(0deg); 24 | } 25 | to { 26 | transform: rotate(360deg); 27 | } 28 | } 29 | 30 | @media (prefers-reduced-motion: no-preference) { 31 | a:nth-of-type(2) .logo { 32 | animation: logo-spin infinite 20s linear; 33 | } 34 | } 35 | 36 | .card { 37 | padding: 2em; 38 | } 39 | 40 | .read-the-docs { 41 | color: #888; 42 | } 43 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from '@eslint/js' 2 | import globals from 'globals' 3 | import reactHooks from 'eslint-plugin-react-hooks' 4 | import reactRefresh from 'eslint-plugin-react-refresh' 5 | import tseslint from 'typescript-eslint' 6 | 7 | export default tseslint.config( 8 | { ignores: ['dist'] }, 9 | { 10 | extends: [js.configs.recommended, ...tseslint.configs.recommended], 11 | files: ['**/*.{ts,tsx}'], 12 | languageOptions: { 13 | ecmaVersion: 2020, 14 | globals: globals.browser, 15 | }, 16 | plugins: { 17 | 'react-hooks': reactHooks, 18 | 'react-refresh': reactRefresh, 19 | }, 20 | rules: { 21 | ...reactHooks.configs.recommended.rules, 22 | 'react-refresh/only-export-components': [ 23 | 'warn', 24 | { allowConstantExport: true }, 25 | ], 26 | }, 27 | }, 28 | ) 29 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fireproof-netlify-extension-demo", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "tsc -b && vite build", 9 | "lint": "eslint .", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "@fireproof/core": "0.19.99", 14 | "@fireproof/netlify": "0.19.99", 15 | "react": "^18.3.1", 16 | "react-dom": "^18.3.1", 17 | "use-fireproof": "0.19.11-dev-dryrun2" 18 | }, 19 | "devDependencies": { 20 | "@eslint/js": "^9.9.0", 21 | "@types/react": "^18.3.3", 22 | "@types/react-dom": "^18.3.0", 23 | "@vitejs/plugin-react": "^4.3.1", 24 | "eslint": "^9.9.0", 25 | "eslint-plugin-react-hooks": "^5.1.0-rc.0", 26 | "eslint-plugin-react-refresh": "^0.4.9", 27 | "globals": "^15.9.0", 28 | "typescript": "^5.5.3", 29 | "typescript-eslint": "^8.0.1", 30 | "vite": "^5.4.1" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | :root { 2 | font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; 3 | line-height: 1.5; 4 | font-weight: 400; 5 | 6 | color-scheme: light dark; 7 | color: rgba(255, 255, 255, 0.87); 8 | background-color: #242424; 9 | 10 | font-synthesis: none; 11 | text-rendering: optimizeLegibility; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | a { 17 | font-weight: 500; 18 | color: #646cff; 19 | text-decoration: inherit; 20 | } 21 | a:hover { 22 | color: #535bf2; 23 | } 24 | 25 | body { 26 | margin: 0; 27 | display: flex; 28 | place-items: center; 29 | min-width: 320px; 30 | min-height: 100vh; 31 | } 32 | 33 | h1 { 34 | font-size: 3.2em; 35 | line-height: 1.1; 36 | } 37 | 38 | button { 39 | border-radius: 8px; 40 | border: 1px solid transparent; 41 | padding: 0.6em 1.2em; 42 | font-size: 1em; 43 | font-weight: 500; 44 | font-family: inherit; 45 | background-color: #1a1a1a; 46 | cursor: pointer; 47 | transition: border-color 0.25s; 48 | } 49 | button:hover { 50 | border-color: #646cff; 51 | } 52 | button:focus, 53 | button:focus-visible { 54 | outline: 4px auto -webkit-focus-ring-color; 55 | } 56 | 57 | @media (prefers-color-scheme: light) { 58 | :root { 59 | color: #213547; 60 | background-color: #ffffff; 61 | } 62 | a:hover { 63 | color: #747bff; 64 | } 65 | button { 66 | background-color: #f9f9f9; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Fireproof + Netlify Extension Demo 2 | 3 | The purpose of this application is to demonstrate that the Fireproof Netlify extension is installed and functioning correctly. 4 | 5 | ## Deploying this to Netlify 6 | 7 | - Enable the Fireproof Netlify extension within the Netlify UI 8 | - Create a new site using an existing project, pointing to this repo 9 | 10 | ## Veryifying two-way sync works 11 | 12 | Verifying two-way sync requires to separate browser instances (not just separate tabs), referred to below as A and B: 13 | 14 | - Browser A 15 | - Open the newly deployed site 16 | - Open the dev tools console 17 | - Press the `Check All Docs Count` button, and expect to see `All Docs Length 0` 18 | 19 | - Repeat the same in Browser B 20 | - Open the newly deployed site 21 | - Open the dev tools console 22 | - Press the `Check All Docs Count` button, and expect to see `All Docs Length 0` 23 | 24 | - Browser A 25 | - Press the `Create Document` button 26 | - Press the `Check All Docs Count` button, and expect to see `All Docs Length 1` 27 | 28 | - Back to Browser B 29 | - Keep pressing the `Check All Docs Count` button, and eventually (often over 1m later) the `All Docs Length` will increase from 0 to 1 30 | - Now, press the `Create Document` button 31 | 32 | - Back to Browser A 33 | - Keep pressing the `Check All Docs Count` button, and eventually (often over 1m later) the `All Docs Length` will increase from 1 to 2 34 | 35 | You have now verified that documents created in one browser are eventually synced and visible on the other browser. 36 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from 'react' 2 | import './App.css' 3 | 4 | import { useFireproof } from 'use-fireproof'; 5 | import { connect } from '@fireproof/netlify'; 6 | 7 | function App() { 8 | console.log("app happened"); 9 | const [docID, setDocID] = useState(""); 10 | const [msg, setMsg] = useState(""); 11 | const { database } = useFireproof("fptest2") 12 | database.sthis.env.set("FP_KEYBAG_URL", 'indexdb://fp-keybag?extractKey=_deprecated_internal_api') 13 | 14 | database.subscribe((docs) => { 15 | const docIds = docs.map(value => value._id).join(",") 16 | console.log("subscribe sees docs", docIds); 17 | }, true); 18 | 19 | /* @ts-ignore */ 20 | connect(database, "", document.location.origin); 21 | 22 | function createDocument() { 23 | database.put({'foo':'bar'}).then(value => setDocID(value.id)) 24 | } 25 | 26 | function checkAllDocsCount() { 27 | database.allDocuments().then(docs => { 28 | setMsg(`All Docs Length ${docs.rows.length}`); 29 | }) 30 | } 31 | 32 | return ( 33 | <> 34 |

Vite + React + Fireproof + Netlify (using extension with 0.19.99)

35 |
36 |

37 | Created DocID: ${docID} 38 |

39 |

40 | ${msg} 41 |

42 |
43 | 46 | 49 | 50 | ) 51 | } 52 | 53 | export default App 54 | -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@fireproof/core': 12 | specifier: 0.19.99 13 | version: 0.19.99(react@18.3.1)(typescript@5.6.2) 14 | '@fireproof/netlify': 15 | specifier: 0.19.99 16 | version: 0.19.99(react@18.3.1)(typescript@5.6.2) 17 | react: 18 | specifier: ^18.3.1 19 | version: 18.3.1 20 | react-dom: 21 | specifier: ^18.3.1 22 | version: 18.3.1(react@18.3.1) 23 | use-fireproof: 24 | specifier: 0.19.11-dev-dryrun2 25 | version: 0.19.11-dev-dryrun2(react@18.3.1)(typescript@5.6.2) 26 | devDependencies: 27 | '@eslint/js': 28 | specifier: ^9.9.0 29 | version: 9.11.1 30 | '@types/react': 31 | specifier: ^18.3.3 32 | version: 18.3.11 33 | '@types/react-dom': 34 | specifier: ^18.3.0 35 | version: 18.3.0 36 | '@vitejs/plugin-react': 37 | specifier: ^4.3.1 38 | version: 4.3.2(vite@5.4.8(@types/node@22.7.4)) 39 | eslint: 40 | specifier: ^9.9.0 41 | version: 9.11.1 42 | eslint-plugin-react-hooks: 43 | specifier: ^5.1.0-rc.0 44 | version: 5.1.0-rc-fb9a90fa48-20240614(eslint@9.11.1) 45 | eslint-plugin-react-refresh: 46 | specifier: ^0.4.9 47 | version: 0.4.12(eslint@9.11.1) 48 | globals: 49 | specifier: ^15.9.0 50 | version: 15.10.0 51 | typescript: 52 | specifier: ^5.5.3 53 | version: 5.6.2 54 | typescript-eslint: 55 | specifier: ^8.0.1 56 | version: 8.8.0(eslint@9.11.1)(typescript@5.6.2) 57 | vite: 58 | specifier: ^5.4.1 59 | version: 5.4.8(@types/node@22.7.4) 60 | 61 | packages: 62 | 63 | '@adviser/cement@0.2.31': 64 | resolution: {integrity: sha512-z8UCOqy0FgKtKTub9efBtGNeWn0JghlfUq6Rz7FsTmt/AjR+jPPPZuzVckVkYqNlyKdY+hu+SlfiTockzW+uEw==} 65 | engines: {node: '>=16'} 66 | 67 | '@ampproject/remapping@2.3.0': 68 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 69 | engines: {node: '>=6.0.0'} 70 | 71 | '@babel/code-frame@7.25.7': 72 | resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==} 73 | engines: {node: '>=6.9.0'} 74 | 75 | '@babel/compat-data@7.25.7': 76 | resolution: {integrity: sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==} 77 | engines: {node: '>=6.9.0'} 78 | 79 | '@babel/core@7.25.7': 80 | resolution: {integrity: sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==} 81 | engines: {node: '>=6.9.0'} 82 | 83 | '@babel/generator@7.25.7': 84 | resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==} 85 | engines: {node: '>=6.9.0'} 86 | 87 | '@babel/helper-compilation-targets@7.25.7': 88 | resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==} 89 | engines: {node: '>=6.9.0'} 90 | 91 | '@babel/helper-module-imports@7.25.7': 92 | resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==} 93 | engines: {node: '>=6.9.0'} 94 | 95 | '@babel/helper-module-transforms@7.25.7': 96 | resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==} 97 | engines: {node: '>=6.9.0'} 98 | peerDependencies: 99 | '@babel/core': ^7.0.0 100 | 101 | '@babel/helper-plugin-utils@7.25.7': 102 | resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==} 103 | engines: {node: '>=6.9.0'} 104 | 105 | '@babel/helper-simple-access@7.25.7': 106 | resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==} 107 | engines: {node: '>=6.9.0'} 108 | 109 | '@babel/helper-string-parser@7.25.7': 110 | resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} 111 | engines: {node: '>=6.9.0'} 112 | 113 | '@babel/helper-validator-identifier@7.25.7': 114 | resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} 115 | engines: {node: '>=6.9.0'} 116 | 117 | '@babel/helper-validator-option@7.25.7': 118 | resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==} 119 | engines: {node: '>=6.9.0'} 120 | 121 | '@babel/helpers@7.25.7': 122 | resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==} 123 | engines: {node: '>=6.9.0'} 124 | 125 | '@babel/highlight@7.25.7': 126 | resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==} 127 | engines: {node: '>=6.9.0'} 128 | 129 | '@babel/parser@7.25.7': 130 | resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==} 131 | engines: {node: '>=6.0.0'} 132 | hasBin: true 133 | 134 | '@babel/plugin-transform-react-jsx-self@7.25.7': 135 | resolution: {integrity: sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==} 136 | engines: {node: '>=6.9.0'} 137 | peerDependencies: 138 | '@babel/core': ^7.0.0-0 139 | 140 | '@babel/plugin-transform-react-jsx-source@7.25.7': 141 | resolution: {integrity: sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==} 142 | engines: {node: '>=6.9.0'} 143 | peerDependencies: 144 | '@babel/core': ^7.0.0-0 145 | 146 | '@babel/template@7.25.7': 147 | resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==} 148 | engines: {node: '>=6.9.0'} 149 | 150 | '@babel/traverse@7.25.7': 151 | resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} 152 | engines: {node: '>=6.9.0'} 153 | 154 | '@babel/types@7.25.7': 155 | resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==} 156 | engines: {node: '>=6.9.0'} 157 | 158 | '@esbuild/aix-ppc64@0.21.5': 159 | resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 160 | engines: {node: '>=12'} 161 | cpu: [ppc64] 162 | os: [aix] 163 | 164 | '@esbuild/android-arm64@0.21.5': 165 | resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 166 | engines: {node: '>=12'} 167 | cpu: [arm64] 168 | os: [android] 169 | 170 | '@esbuild/android-arm@0.21.5': 171 | resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 172 | engines: {node: '>=12'} 173 | cpu: [arm] 174 | os: [android] 175 | 176 | '@esbuild/android-x64@0.21.5': 177 | resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 178 | engines: {node: '>=12'} 179 | cpu: [x64] 180 | os: [android] 181 | 182 | '@esbuild/darwin-arm64@0.21.5': 183 | resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 184 | engines: {node: '>=12'} 185 | cpu: [arm64] 186 | os: [darwin] 187 | 188 | '@esbuild/darwin-x64@0.21.5': 189 | resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 190 | engines: {node: '>=12'} 191 | cpu: [x64] 192 | os: [darwin] 193 | 194 | '@esbuild/freebsd-arm64@0.21.5': 195 | resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 196 | engines: {node: '>=12'} 197 | cpu: [arm64] 198 | os: [freebsd] 199 | 200 | '@esbuild/freebsd-x64@0.21.5': 201 | resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 202 | engines: {node: '>=12'} 203 | cpu: [x64] 204 | os: [freebsd] 205 | 206 | '@esbuild/linux-arm64@0.21.5': 207 | resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 208 | engines: {node: '>=12'} 209 | cpu: [arm64] 210 | os: [linux] 211 | 212 | '@esbuild/linux-arm@0.21.5': 213 | resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 214 | engines: {node: '>=12'} 215 | cpu: [arm] 216 | os: [linux] 217 | 218 | '@esbuild/linux-ia32@0.21.5': 219 | resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 220 | engines: {node: '>=12'} 221 | cpu: [ia32] 222 | os: [linux] 223 | 224 | '@esbuild/linux-loong64@0.21.5': 225 | resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 226 | engines: {node: '>=12'} 227 | cpu: [loong64] 228 | os: [linux] 229 | 230 | '@esbuild/linux-mips64el@0.21.5': 231 | resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 232 | engines: {node: '>=12'} 233 | cpu: [mips64el] 234 | os: [linux] 235 | 236 | '@esbuild/linux-ppc64@0.21.5': 237 | resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 238 | engines: {node: '>=12'} 239 | cpu: [ppc64] 240 | os: [linux] 241 | 242 | '@esbuild/linux-riscv64@0.21.5': 243 | resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 244 | engines: {node: '>=12'} 245 | cpu: [riscv64] 246 | os: [linux] 247 | 248 | '@esbuild/linux-s390x@0.21.5': 249 | resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 250 | engines: {node: '>=12'} 251 | cpu: [s390x] 252 | os: [linux] 253 | 254 | '@esbuild/linux-x64@0.21.5': 255 | resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 256 | engines: {node: '>=12'} 257 | cpu: [x64] 258 | os: [linux] 259 | 260 | '@esbuild/netbsd-x64@0.21.5': 261 | resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 262 | engines: {node: '>=12'} 263 | cpu: [x64] 264 | os: [netbsd] 265 | 266 | '@esbuild/openbsd-x64@0.21.5': 267 | resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 268 | engines: {node: '>=12'} 269 | cpu: [x64] 270 | os: [openbsd] 271 | 272 | '@esbuild/sunos-x64@0.21.5': 273 | resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 274 | engines: {node: '>=12'} 275 | cpu: [x64] 276 | os: [sunos] 277 | 278 | '@esbuild/win32-arm64@0.21.5': 279 | resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 280 | engines: {node: '>=12'} 281 | cpu: [arm64] 282 | os: [win32] 283 | 284 | '@esbuild/win32-ia32@0.21.5': 285 | resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 286 | engines: {node: '>=12'} 287 | cpu: [ia32] 288 | os: [win32] 289 | 290 | '@esbuild/win32-x64@0.21.5': 291 | resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 292 | engines: {node: '>=12'} 293 | cpu: [x64] 294 | os: [win32] 295 | 296 | '@eslint-community/eslint-utils@4.4.0': 297 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 298 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 299 | peerDependencies: 300 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 301 | 302 | '@eslint-community/regexpp@4.11.1': 303 | resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==} 304 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 305 | 306 | '@eslint/config-array@0.18.0': 307 | resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} 308 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 309 | 310 | '@eslint/core@0.6.0': 311 | resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==} 312 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 313 | 314 | '@eslint/eslintrc@3.1.0': 315 | resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} 316 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 317 | 318 | '@eslint/js@9.11.1': 319 | resolution: {integrity: sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==} 320 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 321 | 322 | '@eslint/object-schema@2.1.4': 323 | resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} 324 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 325 | 326 | '@eslint/plugin-kit@0.2.0': 327 | resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==} 328 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 329 | 330 | '@fireproof/core@0.19.99': 331 | resolution: {integrity: sha512-ap0G8hJR7i6Xo4djPszDcSBkGOaz7y/aCecjyxw6+rf+IJumpKrO9NrBI9+ZgiehoFZdjoBwu0VrnIxf9sIa7w==} 332 | peerDependencies: 333 | react: '>=18.0.0' 334 | 335 | '@fireproof/netlify@0.19.99': 336 | resolution: {integrity: sha512-Pqx7y4aBJHhcXIou4JdqZfIJEL0NSJ8vPcVTsjdAhFa8IqtRwNE7y9qhXrmR8q6rVDJa3Pw7Go1IW9lhl/8Ohw==} 337 | 338 | '@humanwhocodes/module-importer@1.0.1': 339 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 340 | engines: {node: '>=12.22'} 341 | 342 | '@humanwhocodes/retry@0.3.0': 343 | resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==} 344 | engines: {node: '>=18.18'} 345 | 346 | '@ipld/car@5.3.2': 347 | resolution: {integrity: sha512-Bb4XrCFlnsCb9tTzZ1I8zo9O61D9qm7HfvuYrQ9gzdE8YhjyVIjrjmHmnoSWV/uCmyc2/bcqiDPIg+9WljXNzg==} 348 | engines: {node: '>=16.0.0', npm: '>=7.0.0'} 349 | 350 | '@ipld/dag-cbor@9.2.1': 351 | resolution: {integrity: sha512-nyY48yE7r3dnJVlxrdaimrbloh4RokQaNRdI//btfTkcTEZbpmSrbYcBQ4VKTf8ZxXAOUJy4VsRpkJo+y9RTnA==} 352 | engines: {node: '>=16.0.0', npm: '>=7.0.0'} 353 | 354 | '@ipld/dag-json@10.2.2': 355 | resolution: {integrity: sha512-NnU8HdHKwAoGyrW3S09NMa8aZw0tImLRyR64hoafpLpDpAbA9g1+fb24JsdlugbL4sXUQVwDVA+qK4Ud8V83lA==} 356 | engines: {node: '>=16.0.0', npm: '>=7.0.0'} 357 | 358 | '@ipld/dag-pb@4.1.2': 359 | resolution: {integrity: sha512-BSztO4l3C+ya9HjCaQot26Y4AVsqIKtnn6+23ubc1usucnf6yoTBme18oCCdM6gKBMxuPqju5ye3lh9WEJsdeQ==} 360 | engines: {node: '>=16.0.0', npm: '>=7.0.0'} 361 | 362 | '@ipld/unixfs@3.0.0': 363 | resolution: {integrity: sha512-Tj3/BPOlnemcZQ2ETIZAO8hqAs9KNzWyX5J9+JCL9jDwvYwjxeYjqJ3v+9DusNvTBmJhZnGVP6ijUHrsuOLp+g==} 364 | 365 | '@jridgewell/gen-mapping@0.3.5': 366 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 367 | engines: {node: '>=6.0.0'} 368 | 369 | '@jridgewell/resolve-uri@3.1.2': 370 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 371 | engines: {node: '>=6.0.0'} 372 | 373 | '@jridgewell/set-array@1.2.1': 374 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 375 | engines: {node: '>=6.0.0'} 376 | 377 | '@jridgewell/sourcemap-codec@1.5.0': 378 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 379 | 380 | '@jridgewell/trace-mapping@0.3.25': 381 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 382 | 383 | '@jsonjoy.com/base64@1.1.2': 384 | resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==} 385 | engines: {node: '>=10.0'} 386 | peerDependencies: 387 | tslib: '2' 388 | 389 | '@jsonjoy.com/json-pack@1.1.0': 390 | resolution: {integrity: sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==} 391 | engines: {node: '>=10.0'} 392 | peerDependencies: 393 | tslib: '2' 394 | 395 | '@jsonjoy.com/util@1.3.0': 396 | resolution: {integrity: sha512-Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw==} 397 | engines: {node: '>=10.0'} 398 | peerDependencies: 399 | tslib: '2' 400 | 401 | '@multiformats/murmur3@2.1.8': 402 | resolution: {integrity: sha512-6vId1C46ra3R1sbJUOFCZnsUIveR9oF20yhPmAFxPm0JfrX3/ZRCgP3YDrBzlGoEppOXnA9czHeYc0T9mB6hbA==} 403 | engines: {node: '>=16.0.0', npm: '>=7.0.0'} 404 | 405 | '@netlify/blobs@7.4.0': 406 | resolution: {integrity: sha512-7rdPzo8bggt3D2CVO+U1rmEtxxs8X7cLusDbHZRJaMlxqxBD05mXgThj5DUJMFOvmfVjhEH/S/3AyiLUbDQGDg==} 407 | engines: {node: ^14.16.0 || >=16.0.0} 408 | 409 | '@nodelib/fs.scandir@2.1.5': 410 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 411 | engines: {node: '>= 8'} 412 | 413 | '@nodelib/fs.stat@2.0.5': 414 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 415 | engines: {node: '>= 8'} 416 | 417 | '@nodelib/fs.walk@1.2.8': 418 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 419 | engines: {node: '>= 8'} 420 | 421 | '@perma/map@1.0.3': 422 | resolution: {integrity: sha512-Bf5njk0fnJGTFE2ETntq0N1oJ6YdCPIpTDn3R3KYZJQdeYSOCNL7mBrFlGnbqav8YQhJA/p81pvHINX9vAtHkQ==} 423 | 424 | '@protobufjs/aspromise@1.1.2': 425 | resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} 426 | 427 | '@protobufjs/base64@1.1.2': 428 | resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} 429 | 430 | '@protobufjs/codegen@2.0.4': 431 | resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} 432 | 433 | '@protobufjs/eventemitter@1.1.0': 434 | resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} 435 | 436 | '@protobufjs/fetch@1.1.0': 437 | resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} 438 | 439 | '@protobufjs/float@1.0.2': 440 | resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} 441 | 442 | '@protobufjs/inquire@1.1.0': 443 | resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} 444 | 445 | '@protobufjs/path@1.1.2': 446 | resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} 447 | 448 | '@protobufjs/pool@1.1.0': 449 | resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} 450 | 451 | '@protobufjs/utf8@1.1.0': 452 | resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} 453 | 454 | '@rollup/rollup-android-arm-eabi@4.24.0': 455 | resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==} 456 | cpu: [arm] 457 | os: [android] 458 | 459 | '@rollup/rollup-android-arm64@4.24.0': 460 | resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==} 461 | cpu: [arm64] 462 | os: [android] 463 | 464 | '@rollup/rollup-darwin-arm64@4.24.0': 465 | resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==} 466 | cpu: [arm64] 467 | os: [darwin] 468 | 469 | '@rollup/rollup-darwin-x64@4.24.0': 470 | resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==} 471 | cpu: [x64] 472 | os: [darwin] 473 | 474 | '@rollup/rollup-linux-arm-gnueabihf@4.24.0': 475 | resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==} 476 | cpu: [arm] 477 | os: [linux] 478 | 479 | '@rollup/rollup-linux-arm-musleabihf@4.24.0': 480 | resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==} 481 | cpu: [arm] 482 | os: [linux] 483 | 484 | '@rollup/rollup-linux-arm64-gnu@4.24.0': 485 | resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==} 486 | cpu: [arm64] 487 | os: [linux] 488 | 489 | '@rollup/rollup-linux-arm64-musl@4.24.0': 490 | resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==} 491 | cpu: [arm64] 492 | os: [linux] 493 | 494 | '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': 495 | resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==} 496 | cpu: [ppc64] 497 | os: [linux] 498 | 499 | '@rollup/rollup-linux-riscv64-gnu@4.24.0': 500 | resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==} 501 | cpu: [riscv64] 502 | os: [linux] 503 | 504 | '@rollup/rollup-linux-s390x-gnu@4.24.0': 505 | resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==} 506 | cpu: [s390x] 507 | os: [linux] 508 | 509 | '@rollup/rollup-linux-x64-gnu@4.24.0': 510 | resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==} 511 | cpu: [x64] 512 | os: [linux] 513 | 514 | '@rollup/rollup-linux-x64-musl@4.24.0': 515 | resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==} 516 | cpu: [x64] 517 | os: [linux] 518 | 519 | '@rollup/rollup-win32-arm64-msvc@4.24.0': 520 | resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==} 521 | cpu: [arm64] 522 | os: [win32] 523 | 524 | '@rollup/rollup-win32-ia32-msvc@4.24.0': 525 | resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==} 526 | cpu: [ia32] 527 | os: [win32] 528 | 529 | '@rollup/rollup-win32-x64-msvc@4.24.0': 530 | resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==} 531 | cpu: [x64] 532 | os: [win32] 533 | 534 | '@types/babel__core@7.20.5': 535 | resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 536 | 537 | '@types/babel__generator@7.6.8': 538 | resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} 539 | 540 | '@types/babel__template@7.4.4': 541 | resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 542 | 543 | '@types/babel__traverse@7.20.6': 544 | resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} 545 | 546 | '@types/estree@1.0.6': 547 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 548 | 549 | '@types/json-schema@7.0.15': 550 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 551 | 552 | '@types/node@22.7.4': 553 | resolution: {integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==} 554 | 555 | '@types/prop-types@15.7.13': 556 | resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==} 557 | 558 | '@types/react-dom@18.3.0': 559 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} 560 | 561 | '@types/react@18.3.11': 562 | resolution: {integrity: sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==} 563 | 564 | '@typescript-eslint/eslint-plugin@8.8.0': 565 | resolution: {integrity: sha512-wORFWjU30B2WJ/aXBfOm1LX9v9nyt9D3jsSOxC3cCaTQGCW5k4jNpmjFv3U7p/7s4yvdjHzwtv2Sd2dOyhjS0A==} 566 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 567 | peerDependencies: 568 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 569 | eslint: ^8.57.0 || ^9.0.0 570 | typescript: '*' 571 | peerDependenciesMeta: 572 | typescript: 573 | optional: true 574 | 575 | '@typescript-eslint/parser@8.8.0': 576 | resolution: {integrity: sha512-uEFUsgR+tl8GmzmLjRqz+VrDv4eoaMqMXW7ruXfgThaAShO9JTciKpEsB+TvnfFfbg5IpujgMXVV36gOJRLtZg==} 577 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 578 | peerDependencies: 579 | eslint: ^8.57.0 || ^9.0.0 580 | typescript: '*' 581 | peerDependenciesMeta: 582 | typescript: 583 | optional: true 584 | 585 | '@typescript-eslint/scope-manager@8.8.0': 586 | resolution: {integrity: sha512-EL8eaGC6gx3jDd8GwEFEV091210U97J0jeEHrAYvIYosmEGet4wJ+g0SYmLu+oRiAwbSA5AVrt6DxLHfdd+bUg==} 587 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 588 | 589 | '@typescript-eslint/type-utils@8.8.0': 590 | resolution: {integrity: sha512-IKwJSS7bCqyCeG4NVGxnOP6lLT9Okc3Zj8hLO96bpMkJab+10HIfJbMouLrlpyOr3yrQ1cA413YPFiGd1mW9/Q==} 591 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 592 | peerDependencies: 593 | typescript: '*' 594 | peerDependenciesMeta: 595 | typescript: 596 | optional: true 597 | 598 | '@typescript-eslint/types@8.8.0': 599 | resolution: {integrity: sha512-QJwc50hRCgBd/k12sTykOJbESe1RrzmX6COk8Y525C9l7oweZ+1lw9JiU56im7Amm8swlz00DRIlxMYLizr2Vw==} 600 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 601 | 602 | '@typescript-eslint/typescript-estree@8.8.0': 603 | resolution: {integrity: sha512-ZaMJwc/0ckLz5DaAZ+pNLmHv8AMVGtfWxZe/x2JVEkD5LnmhWiQMMcYT7IY7gkdJuzJ9P14fRy28lUrlDSWYdw==} 604 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 605 | peerDependencies: 606 | typescript: '*' 607 | peerDependenciesMeta: 608 | typescript: 609 | optional: true 610 | 611 | '@typescript-eslint/utils@8.8.0': 612 | resolution: {integrity: sha512-QE2MgfOTem00qrlPgyByaCHay9yb1+9BjnMFnSFkUKQfu7adBXDTnCAivURnuPPAG/qiB+kzKkZKmKfaMT0zVg==} 613 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 614 | peerDependencies: 615 | eslint: ^8.57.0 || ^9.0.0 616 | 617 | '@typescript-eslint/visitor-keys@8.8.0': 618 | resolution: {integrity: sha512-8mq51Lx6Hpmd7HnA2fcHQo3YgfX1qbccxQOgZcb4tvasu//zXRaA1j5ZRFeCw/VRAdFi4mRM9DnZw0Nu0Q2d1g==} 619 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 620 | 621 | '@vitejs/plugin-react@4.3.2': 622 | resolution: {integrity: sha512-hieu+o05v4glEBucTcKMK3dlES0OeJlD9YVOAPraVMOInBCwzumaIFiUjr4bHK7NPgnAHgiskUoceKercrN8vg==} 623 | engines: {node: ^14.18.0 || >=16.0.0} 624 | peerDependencies: 625 | vite: ^4.2.0 || ^5.0.0 626 | 627 | '@web3-storage/pail@0.6.0': 628 | resolution: {integrity: sha512-/lIBu8pR92AEcCqYqjcxc3kUSLLRGQLomUes7PAyoK4lNe4ttm8Wr7WFcrbJmWTBJZmYE6npbYcVio8U+OexpA==} 629 | hasBin: true 630 | 631 | acorn-jsx@5.3.2: 632 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 633 | peerDependencies: 634 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 635 | 636 | acorn@8.12.1: 637 | resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} 638 | engines: {node: '>=0.4.0'} 639 | hasBin: true 640 | 641 | actor@2.3.1: 642 | resolution: {integrity: sha512-ST/3wnvcP2tKDXnum7nLCLXm+/rsf8vPocXH2Fre6D8FQwNkGDd4JEitBlXj007VQJfiGYRQvXqwOBZVi+JtRg==} 643 | 644 | ajv@6.12.6: 645 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 646 | 647 | ansi-regex@5.0.1: 648 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 649 | engines: {node: '>=8'} 650 | 651 | ansi-styles@3.2.1: 652 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 653 | engines: {node: '>=4'} 654 | 655 | ansi-styles@4.3.0: 656 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 657 | engines: {node: '>=8'} 658 | 659 | argparse@2.0.1: 660 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 661 | 662 | balanced-match@1.0.2: 663 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 664 | 665 | base64-js@1.5.1: 666 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 667 | 668 | big-integer@1.6.52: 669 | resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} 670 | engines: {node: '>=0.6'} 671 | 672 | bl@4.1.0: 673 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 674 | 675 | brace-expansion@1.1.11: 676 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 677 | 678 | brace-expansion@2.0.1: 679 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 680 | 681 | braces@3.0.3: 682 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 683 | engines: {node: '>=8'} 684 | 685 | browserslist@4.24.0: 686 | resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} 687 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 688 | hasBin: true 689 | 690 | buffer@5.7.1: 691 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 692 | 693 | callsites@3.1.0: 694 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 695 | engines: {node: '>=6'} 696 | 697 | caniuse-lite@1.0.30001666: 698 | resolution: {integrity: sha512-gD14ICmoV5ZZM1OdzPWmpx+q4GyefaK06zi8hmfHV5xe4/2nOQX3+Dw5o+fSqOws2xVwL9j+anOPFwHzdEdV4g==} 699 | 700 | cborg@4.2.4: 701 | resolution: {integrity: sha512-ns2xY95zViHIVy4lq+qdLmfXTpnT3XjmKradz4RJxxbr5jc/A5gS5FiFLcPGhSdHVlSeeoizT1fuKdI1Kcd6oA==} 702 | hasBin: true 703 | 704 | chalk@2.4.2: 705 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 706 | engines: {node: '>=4'} 707 | 708 | chalk@4.1.2: 709 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 710 | engines: {node: '>=10'} 711 | 712 | charwise@3.0.1: 713 | resolution: {integrity: sha512-RcdumNsM6fJZ5HHbYunqj2bpurVRGsXour3OR+SlLEHFhG6ALm54i6Osnh+OvO7kEoSBzwExpblYFH8zKQiEPw==} 714 | 715 | color-convert@1.9.3: 716 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 717 | 718 | color-convert@2.0.1: 719 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 720 | engines: {node: '>=7.0.0'} 721 | 722 | color-name@1.1.3: 723 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 724 | 725 | color-name@1.1.4: 726 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 727 | 728 | concat-map@0.0.1: 729 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 730 | 731 | convert-source-map@2.0.0: 732 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 733 | 734 | cross-fetch@4.0.0: 735 | resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==} 736 | 737 | cross-spawn@7.0.3: 738 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 739 | engines: {node: '>= 8'} 740 | 741 | csstype@3.1.3: 742 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 743 | 744 | debug@4.3.7: 745 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 746 | engines: {node: '>=6.0'} 747 | peerDependencies: 748 | supports-color: '*' 749 | peerDependenciesMeta: 750 | supports-color: 751 | optional: true 752 | 753 | deep-is@0.1.4: 754 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 755 | 756 | electron-to-chromium@1.5.32: 757 | resolution: {integrity: sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==} 758 | 759 | esbuild@0.21.5: 760 | resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 761 | engines: {node: '>=12'} 762 | hasBin: true 763 | 764 | escalade@3.2.0: 765 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 766 | engines: {node: '>=6'} 767 | 768 | escape-string-regexp@1.0.5: 769 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 770 | engines: {node: '>=0.8.0'} 771 | 772 | escape-string-regexp@4.0.0: 773 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 774 | engines: {node: '>=10'} 775 | 776 | eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614: 777 | resolution: {integrity: sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w==} 778 | engines: {node: '>=10'} 779 | peerDependencies: 780 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 781 | 782 | eslint-plugin-react-refresh@0.4.12: 783 | resolution: {integrity: sha512-9neVjoGv20FwYtCP6CB1dzR1vr57ZDNOXst21wd2xJ/cTlM2xLq0GWVlSNTdMn/4BtP6cHYBMCSp1wFBJ9jBsg==} 784 | peerDependencies: 785 | eslint: '>=7' 786 | 787 | eslint-scope@8.1.0: 788 | resolution: {integrity: sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==} 789 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 790 | 791 | eslint-visitor-keys@3.4.3: 792 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 793 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 794 | 795 | eslint-visitor-keys@4.1.0: 796 | resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==} 797 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 798 | 799 | eslint@9.11.1: 800 | resolution: {integrity: sha512-MobhYKIoAO1s1e4VUrgx1l1Sk2JBR/Gqjjgw8+mfgoLE2xwsHur4gdfTxyTgShrhvdVFTaJSgMiQBl1jv/AWxg==} 801 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 802 | hasBin: true 803 | peerDependencies: 804 | jiti: '*' 805 | peerDependenciesMeta: 806 | jiti: 807 | optional: true 808 | 809 | espree@10.2.0: 810 | resolution: {integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==} 811 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 812 | 813 | esquery@1.6.0: 814 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 815 | engines: {node: '>=0.10'} 816 | 817 | esrecurse@4.3.0: 818 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 819 | engines: {node: '>=4.0'} 820 | 821 | estraverse@5.3.0: 822 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 823 | engines: {node: '>=4.0'} 824 | 825 | esutils@2.0.3: 826 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 827 | engines: {node: '>=0.10.0'} 828 | 829 | eventemitter3@5.0.1: 830 | resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 831 | 832 | fast-deep-equal@3.1.3: 833 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 834 | 835 | fast-glob@3.3.2: 836 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 837 | engines: {node: '>=8.6.0'} 838 | 839 | fast-json-stable-stringify@2.1.0: 840 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 841 | 842 | fast-levenshtein@2.0.6: 843 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 844 | 845 | fastq@1.17.1: 846 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 847 | 848 | file-entry-cache@8.0.0: 849 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 850 | engines: {node: '>=16.0.0'} 851 | 852 | fill-range@7.1.1: 853 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 854 | engines: {node: '>=8'} 855 | 856 | find-up@5.0.0: 857 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 858 | engines: {node: '>=10'} 859 | 860 | flat-cache@4.0.1: 861 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 862 | engines: {node: '>=16'} 863 | 864 | flatted@3.3.1: 865 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 866 | 867 | fsevents@2.3.3: 868 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 869 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 870 | os: [darwin] 871 | 872 | gensync@1.0.0-beta.2: 873 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 874 | engines: {node: '>=6.9.0'} 875 | 876 | glob-parent@5.1.2: 877 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 878 | engines: {node: '>= 6'} 879 | 880 | glob-parent@6.0.2: 881 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 882 | engines: {node: '>=10.13.0'} 883 | 884 | globals@11.12.0: 885 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 886 | engines: {node: '>=4'} 887 | 888 | globals@14.0.0: 889 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 890 | engines: {node: '>=18'} 891 | 892 | globals@15.10.0: 893 | resolution: {integrity: sha512-tqFIbz83w4Y5TCbtgjZjApohbuh7K9BxGYFm7ifwDR240tvdb7P9x+/9VvUKlmkPoiknoJtanI8UOrqxS3a7lQ==} 894 | engines: {node: '>=18'} 895 | 896 | graphemer@1.4.0: 897 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 898 | 899 | hamt-sharding@3.0.6: 900 | resolution: {integrity: sha512-nZeamxfymIWLpVcAN0CRrb7uVq3hCOGj9IcL6NMA6VVCVWqj+h9Jo/SmaWuS92AEDf1thmHsM5D5c70hM3j2Tg==} 901 | 902 | has-flag@3.0.0: 903 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 904 | engines: {node: '>=4'} 905 | 906 | has-flag@4.0.0: 907 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 908 | engines: {node: '>=8'} 909 | 910 | hyperdyperid@1.2.0: 911 | resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==} 912 | engines: {node: '>=10.18'} 913 | 914 | idb@8.0.0: 915 | resolution: {integrity: sha512-l//qvlAKGmQO31Qn7xdzagVPPaHTxXx199MhrAFuVBTPqydcPYBWjkrbv4Y0ktB+GmWOiwHl237UUOrLmQxLvw==} 916 | 917 | ieee754@1.2.1: 918 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 919 | 920 | ignore@5.3.2: 921 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 922 | engines: {node: '>= 4'} 923 | 924 | import-fresh@3.3.0: 925 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 926 | engines: {node: '>=6'} 927 | 928 | imurmurhash@0.1.4: 929 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 930 | engines: {node: '>=0.8.19'} 931 | 932 | inherits@2.0.4: 933 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 934 | 935 | interface-blockstore@5.3.1: 936 | resolution: {integrity: sha512-nhgrQnz6yUQEqxTFLhlOBurQOy5lWlwCpgFmZ3GTObTVTQS9RZjK/JTozY6ty9uz2lZs7VFJSqwjWAltorJ4Vw==} 937 | 938 | interface-store@6.0.2: 939 | resolution: {integrity: sha512-KSFCXtBlNoG0hzwNa0RmhHtrdhzexp+S+UY2s0rWTBJyfdEIgn6i6Zl9otVqrcFYbYrneBT7hbmHQ8gE0C3umA==} 940 | 941 | ipfs-unixfs-exporter@13.6.1: 942 | resolution: {integrity: sha512-pYPI4oBTWao2//sFzAL0pURyojn79q/u5BuK6L5/nVbVUQVw6DcVP5uB1ySdWlTM2H+0Zlhp9+OL9aJBRIICpg==} 943 | 944 | ipfs-unixfs@11.2.0: 945 | resolution: {integrity: sha512-J8FN1qM5nfrDo8sQKQwfj0+brTg1uBfZK2vY9hxci33lcl3BFrsELS9+1+4q/8tO1ASKfxZO8W3Pi2O4sVX2Lg==} 946 | 947 | is-extglob@2.1.1: 948 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 949 | engines: {node: '>=0.10.0'} 950 | 951 | is-glob@4.0.3: 952 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 953 | engines: {node: '>=0.10.0'} 954 | 955 | is-number@7.0.0: 956 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 957 | engines: {node: '>=0.12.0'} 958 | 959 | is-path-inside@3.0.3: 960 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 961 | engines: {node: '>=8'} 962 | 963 | isexe@2.0.0: 964 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 965 | 966 | it-filter@3.1.1: 967 | resolution: {integrity: sha512-TOXmVuaSkxlLp2hXKoMTra0WMZMKVFxE3vSsbIA+PbADNCBAHhjJ/lM31vBOUTddHMO34Ku++vU8T9PLlBxQtg==} 968 | 969 | it-last@3.0.6: 970 | resolution: {integrity: sha512-M4/get95O85u2vWvWQinF8SJUc/RPC5bWTveBTYXvlP2q5TF9Y+QhT3nz+CRCyS2YEc66VJkyl/da6WrJ0wKhw==} 971 | 972 | it-map@3.1.1: 973 | resolution: {integrity: sha512-9bCSwKD1yN1wCOgJ9UOl+46NQtdatosPWzxxUk2NdTLwRPXLh+L7iwCC9QKsbgM60RQxT/nH8bKMqm3H/o8IHQ==} 974 | 975 | it-merge@3.0.5: 976 | resolution: {integrity: sha512-2l7+mPf85pyRF5pqi0dKcA54E5Jm/2FyY5GsOaN51Ta0ipC7YZ3szuAsH8wOoB6eKY4XsU4k2X+mzPmFBMayEA==} 977 | 978 | it-parallel@3.0.8: 979 | resolution: {integrity: sha512-URLhs6eG4Hdr4OdvgBBPDzOjBeSSmI+Kqex2rv/aAyYClME26RYHirLVhZsZP5M+ZP6M34iRlXk8Wlqtezuqpg==} 980 | 981 | it-peekable@3.0.5: 982 | resolution: {integrity: sha512-JWQOGMt6rKiPcY30zUVMR4g6YxkpueTwHVE7CMs/aGqCf4OydM6w+7ZM3PvmO1e0TocjuR4aL8xyZWR46cTqCQ==} 983 | 984 | it-pipe@3.0.1: 985 | resolution: {integrity: sha512-sIoNrQl1qSRg2seYSBH/3QxWhJFn9PKYvOf/bHdtCBF0bnghey44VyASsWzn5dAx0DCDDABq1hZIuzKmtBZmKA==} 986 | engines: {node: '>=16.0.0', npm: '>=7.0.0'} 987 | 988 | it-pushable@3.2.3: 989 | resolution: {integrity: sha512-gzYnXYK8Y5t5b/BnJUr7glfQLO4U5vyb05gPx/TyTw+4Bv1zM9gFk4YsOrnulWefMewlphCjKkakFvj1y99Tcg==} 990 | 991 | it-stream-types@2.0.2: 992 | resolution: {integrity: sha512-Rz/DEZ6Byn/r9+/SBCuJhpPATDF9D+dz5pbgSUyBsCDtza6wtNATrz/jz1gDyNanC3XdLboriHnOC925bZRBww==} 993 | 994 | js-tokens@4.0.0: 995 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 996 | 997 | js-yaml@4.1.0: 998 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 999 | hasBin: true 1000 | 1001 | jsesc@3.0.2: 1002 | resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} 1003 | engines: {node: '>=6'} 1004 | hasBin: true 1005 | 1006 | json-buffer@3.0.1: 1007 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1008 | 1009 | json-schema-traverse@0.4.1: 1010 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1011 | 1012 | json-stable-stringify-without-jsonify@1.0.1: 1013 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1014 | 1015 | json5@2.2.3: 1016 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1017 | engines: {node: '>=6'} 1018 | hasBin: true 1019 | 1020 | keyv@4.5.4: 1021 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1022 | 1023 | levn@0.4.1: 1024 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1025 | engines: {node: '>= 0.8.0'} 1026 | 1027 | locate-path@6.0.0: 1028 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1029 | engines: {node: '>=10'} 1030 | 1031 | lodash.merge@4.6.2: 1032 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1033 | 1034 | long@5.2.3: 1035 | resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==} 1036 | 1037 | loose-envify@1.4.0: 1038 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1039 | hasBin: true 1040 | 1041 | lru-cache@5.1.1: 1042 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 1043 | 1044 | memfs@4.12.0: 1045 | resolution: {integrity: sha512-74wDsex5tQDSClVkeK1vtxqYCAgCoXxx+K4NSHzgU/muYVYByFqa+0RnrPO9NM6naWm1+G9JmZ0p6QHhXmeYfA==} 1046 | engines: {node: '>= 4.0.0'} 1047 | 1048 | merge2@1.4.1: 1049 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1050 | engines: {node: '>= 8'} 1051 | 1052 | micromatch@4.0.8: 1053 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1054 | engines: {node: '>=8.6'} 1055 | 1056 | minimatch@3.1.2: 1057 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1058 | 1059 | minimatch@9.0.5: 1060 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1061 | engines: {node: '>=16 || 14 >=14.17'} 1062 | 1063 | ms@2.1.3: 1064 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1065 | 1066 | multiformats@13.3.0: 1067 | resolution: {integrity: sha512-CBiqvsufgmpo01VT5ze94O+uc+Pbf6f/sThlvWss0sBZmAOu6GQn5usrYV2sf2mr17FWYc0rO8c/CNe2T90QAA==} 1068 | 1069 | murmurhash3js-revisited@3.0.0: 1070 | resolution: {integrity: sha512-/sF3ee6zvScXMb1XFJ8gDsSnY+X8PbOyjIuBhtgis10W2Jx4ZjIhikUCIF9c4gpJxVnQIsPAFrSwTCuAjicP6g==} 1071 | engines: {node: '>=8.0.0'} 1072 | 1073 | nanoid@3.3.7: 1074 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1075 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1076 | hasBin: true 1077 | 1078 | natural-compare@1.4.0: 1079 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1080 | 1081 | node-fetch@2.7.0: 1082 | resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 1083 | engines: {node: 4.x || >=6.0.0} 1084 | peerDependencies: 1085 | encoding: ^0.1.0 1086 | peerDependenciesMeta: 1087 | encoding: 1088 | optional: true 1089 | 1090 | node-releases@2.0.18: 1091 | resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} 1092 | 1093 | node-sql-parser@3.9.4: 1094 | resolution: {integrity: sha512-U8xa/QBpNz/dc4BERBkMg//XTrBDcj0uIg5YDYPV4ChYgHPEw4JhoT5YWTxQuKBg/3C1kfkTO4MuEYw7fCYHJw==} 1095 | engines: {node: '>=8'} 1096 | 1097 | optionator@0.9.4: 1098 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1099 | engines: {node: '>= 0.8.0'} 1100 | 1101 | p-defer@4.0.1: 1102 | resolution: {integrity: sha512-Mr5KC5efvAK5VUptYEIopP1bakB85k2IWXaRC0rsh1uwn1L6M0LVml8OIQ4Gudg4oyZakf7FmeRLkMMtZW1i5A==} 1103 | engines: {node: '>=12'} 1104 | 1105 | p-limit@3.1.0: 1106 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1107 | engines: {node: '>=10'} 1108 | 1109 | p-limit@6.1.0: 1110 | resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==} 1111 | engines: {node: '>=18'} 1112 | 1113 | p-locate@5.0.0: 1114 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1115 | engines: {node: '>=10'} 1116 | 1117 | p-queue@8.0.1: 1118 | resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==} 1119 | engines: {node: '>=18'} 1120 | 1121 | p-timeout@6.1.2: 1122 | resolution: {integrity: sha512-UbD77BuZ9Bc9aABo74gfXhNvzC9Tx7SxtHSh1fxvx3jTLLYvmVhiQZZrJzqqU0jKbN32kb5VOKiLEQI/3bIjgQ==} 1123 | engines: {node: '>=14.16'} 1124 | 1125 | parent-module@1.0.1: 1126 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1127 | engines: {node: '>=6'} 1128 | 1129 | path-exists@4.0.0: 1130 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1131 | engines: {node: '>=8'} 1132 | 1133 | path-key@3.1.1: 1134 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1135 | engines: {node: '>=8'} 1136 | 1137 | picocolors@1.1.0: 1138 | resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} 1139 | 1140 | picomatch@2.3.1: 1141 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1142 | engines: {node: '>=8.6'} 1143 | 1144 | postcss@8.4.47: 1145 | resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} 1146 | engines: {node: ^10 || ^12 || >=14} 1147 | 1148 | prelude-ls@1.2.1: 1149 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1150 | engines: {node: '>= 0.8.0'} 1151 | 1152 | progress-events@1.0.1: 1153 | resolution: {integrity: sha512-MOzLIwhpt64KIVN64h1MwdKWiyKFNc/S6BoYKPIVUHFg0/eIEyBulhWCgn678v/4c0ri3FdGuzXymNCv02MUIw==} 1154 | 1155 | prolly-trees@1.0.4: 1156 | resolution: {integrity: sha512-vtnxfw5wnUHbGa0IIIk9B9DRztJWZw+t9d0s0iGxY/VzEGCg2EMl8GgGU3EhSquFLWapwbGjFTL1ipbezaXR3g==} 1157 | 1158 | protobufjs@7.4.0: 1159 | resolution: {integrity: sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==} 1160 | engines: {node: '>=12.0.0'} 1161 | 1162 | protons-runtime@5.5.0: 1163 | resolution: {integrity: sha512-EsALjF9QsrEk6gbCx3lmfHxVN0ah7nG3cY7GySD4xf4g8cr7g543zB88Foh897Sr1RQJ9yDCUsoT1i1H/cVUFA==} 1164 | 1165 | punycode@2.3.1: 1166 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1167 | engines: {node: '>=6'} 1168 | 1169 | queue-microtask@1.2.3: 1170 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1171 | 1172 | rabin-rs@2.1.0: 1173 | resolution: {integrity: sha512-5y72gAXPzIBsAMHcpxZP8eMDuDT98qMP1BqSDHRbHkJJXEgWIN1lA47LxUqzsK6jknOJtgfkQr9v+7qMlFDm6g==} 1174 | 1175 | react-dom@18.3.1: 1176 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 1177 | peerDependencies: 1178 | react: ^18.3.1 1179 | 1180 | react-refresh@0.14.2: 1181 | resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} 1182 | engines: {node: '>=0.10.0'} 1183 | 1184 | react@18.3.1: 1185 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 1186 | engines: {node: '>=0.10.0'} 1187 | 1188 | readable-stream@3.6.2: 1189 | resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 1190 | engines: {node: '>= 6'} 1191 | 1192 | resolve-from@4.0.0: 1193 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1194 | engines: {node: '>=4'} 1195 | 1196 | reusify@1.0.4: 1197 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1198 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1199 | 1200 | rollup@4.24.0: 1201 | resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==} 1202 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1203 | hasBin: true 1204 | 1205 | run-parallel@1.2.0: 1206 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1207 | 1208 | safe-buffer@5.2.1: 1209 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 1210 | 1211 | scheduler@0.23.2: 1212 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 1213 | 1214 | semver@6.3.1: 1215 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1216 | hasBin: true 1217 | 1218 | semver@7.6.3: 1219 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1220 | engines: {node: '>=10'} 1221 | hasBin: true 1222 | 1223 | shebang-command@2.0.0: 1224 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1225 | engines: {node: '>=8'} 1226 | 1227 | shebang-regex@3.0.0: 1228 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1229 | engines: {node: '>=8'} 1230 | 1231 | source-map-js@1.2.1: 1232 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1233 | engines: {node: '>=0.10.0'} 1234 | 1235 | sparse-array@1.3.2: 1236 | resolution: {integrity: sha512-ZT711fePGn3+kQyLuv1fpd3rNSkNF8vd5Kv2D+qnOANeyKs3fx6bUMGWRPvgTTcYV64QMqZKZwcuaQSP3AZ0tg==} 1237 | 1238 | string_decoder@1.3.0: 1239 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 1240 | 1241 | strip-ansi@6.0.1: 1242 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1243 | engines: {node: '>=8'} 1244 | 1245 | strip-json-comments@3.1.1: 1246 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1247 | engines: {node: '>=8'} 1248 | 1249 | supports-color@5.5.0: 1250 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 1251 | engines: {node: '>=4'} 1252 | 1253 | supports-color@7.2.0: 1254 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1255 | engines: {node: '>=8'} 1256 | 1257 | text-table@0.2.0: 1258 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1259 | 1260 | thingies@1.21.0: 1261 | resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==} 1262 | engines: {node: '>=10.18'} 1263 | peerDependencies: 1264 | tslib: ^2 1265 | 1266 | to-fast-properties@2.0.0: 1267 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 1268 | engines: {node: '>=4'} 1269 | 1270 | to-regex-range@5.0.1: 1271 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1272 | engines: {node: '>=8.0'} 1273 | 1274 | tr46@0.0.3: 1275 | resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 1276 | 1277 | tree-dump@1.0.2: 1278 | resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==} 1279 | engines: {node: '>=10.0'} 1280 | peerDependencies: 1281 | tslib: '2' 1282 | 1283 | ts-api-utils@1.3.0: 1284 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} 1285 | engines: {node: '>=16'} 1286 | peerDependencies: 1287 | typescript: '>=4.2.0' 1288 | 1289 | ts-essentials@10.0.2: 1290 | resolution: {integrity: sha512-Xwag0TULqriaugXqVdDiGZ5wuZpqABZlpwQ2Ho4GDyiu/R2Xjkp/9+zcFxL7uzeLl/QCPrflnvpVYyS3ouT7Zw==} 1291 | peerDependencies: 1292 | typescript: '>=4.5.0' 1293 | peerDependenciesMeta: 1294 | typescript: 1295 | optional: true 1296 | 1297 | tslib@2.7.0: 1298 | resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} 1299 | 1300 | type-check@0.4.0: 1301 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1302 | engines: {node: '>= 0.8.0'} 1303 | 1304 | typescript-eslint@8.8.0: 1305 | resolution: {integrity: sha512-BjIT/VwJ8+0rVO01ZQ2ZVnjE1svFBiRczcpr1t1Yxt7sT25VSbPfrJtDsQ8uQTy2pilX5nI9gwxhUyLULNentw==} 1306 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1307 | peerDependencies: 1308 | typescript: '*' 1309 | peerDependenciesMeta: 1310 | typescript: 1311 | optional: true 1312 | 1313 | typescript@5.6.2: 1314 | resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} 1315 | engines: {node: '>=14.17'} 1316 | hasBin: true 1317 | 1318 | uint8-varint@2.0.4: 1319 | resolution: {integrity: sha512-FwpTa7ZGA/f/EssWAb5/YV6pHgVF1fViKdW8cWaEarjB8t7NyofSWBdOTyFPaGuUG4gx3v1O3PQ8etsiOs3lcw==} 1320 | 1321 | uint8arraylist@2.4.8: 1322 | resolution: {integrity: sha512-vc1PlGOzglLF0eae1M8mLRTBivsvrGsdmJ5RbK3e+QRvRLOZfZhQROTwH/OfyF3+ZVUg9/8hE8bmKP2CvP9quQ==} 1323 | 1324 | uint8arrays@5.1.0: 1325 | resolution: {integrity: sha512-vA6nFepEmlSKkMBnLBaUMVvAC4G3CTmO58C12y4sq6WPDOR7mOFYOi7GlrQ4djeSbP6JG9Pv9tJDM97PedRSww==} 1326 | 1327 | undici-types@6.19.8: 1328 | resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} 1329 | 1330 | update-browserslist-db@1.1.1: 1331 | resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} 1332 | hasBin: true 1333 | peerDependencies: 1334 | browserslist: '>= 4.21.0' 1335 | 1336 | uri-js@4.4.1: 1337 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1338 | 1339 | use-fireproof@0.19.11-dev-dryrun2: 1340 | resolution: {integrity: sha512-iSqyN9eGbfsIVYQ11JykBias0IdLXOKZL0/ihBF8/saYxtY5uJaq7nbZ6IXrRyOjcv7gGi5o2jqCLlooa/ytMg==} 1341 | peerDependencies: 1342 | react: '>=18.0.0' 1343 | 1344 | util-deprecate@1.0.2: 1345 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1346 | 1347 | varint@6.0.0: 1348 | resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==} 1349 | 1350 | vite@5.4.8: 1351 | resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==} 1352 | engines: {node: ^18.0.0 || >=20.0.0} 1353 | hasBin: true 1354 | peerDependencies: 1355 | '@types/node': ^18.0.0 || >=20.0.0 1356 | less: '*' 1357 | lightningcss: ^1.21.0 1358 | sass: '*' 1359 | sass-embedded: '*' 1360 | stylus: '*' 1361 | sugarss: '*' 1362 | terser: ^5.4.0 1363 | peerDependenciesMeta: 1364 | '@types/node': 1365 | optional: true 1366 | less: 1367 | optional: true 1368 | lightningcss: 1369 | optional: true 1370 | sass: 1371 | optional: true 1372 | sass-embedded: 1373 | optional: true 1374 | stylus: 1375 | optional: true 1376 | sugarss: 1377 | optional: true 1378 | terser: 1379 | optional: true 1380 | 1381 | webidl-conversions@3.0.1: 1382 | resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 1383 | 1384 | whatwg-url@5.0.0: 1385 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 1386 | 1387 | which@2.0.2: 1388 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1389 | engines: {node: '>= 8'} 1390 | hasBin: true 1391 | 1392 | word-wrap@1.2.5: 1393 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1394 | engines: {node: '>=0.10.0'} 1395 | 1396 | yallist@3.1.1: 1397 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 1398 | 1399 | yaml@2.5.1: 1400 | resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==} 1401 | engines: {node: '>= 14'} 1402 | hasBin: true 1403 | 1404 | yocto-queue@0.1.0: 1405 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1406 | engines: {node: '>=10'} 1407 | 1408 | yocto-queue@1.1.1: 1409 | resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} 1410 | engines: {node: '>=12.20'} 1411 | 1412 | snapshots: 1413 | 1414 | '@adviser/cement@0.2.31(typescript@5.6.2)': 1415 | dependencies: 1416 | ts-essentials: 10.0.2(typescript@5.6.2) 1417 | yaml: 2.5.1 1418 | transitivePeerDependencies: 1419 | - typescript 1420 | 1421 | '@ampproject/remapping@2.3.0': 1422 | dependencies: 1423 | '@jridgewell/gen-mapping': 0.3.5 1424 | '@jridgewell/trace-mapping': 0.3.25 1425 | 1426 | '@babel/code-frame@7.25.7': 1427 | dependencies: 1428 | '@babel/highlight': 7.25.7 1429 | picocolors: 1.1.0 1430 | 1431 | '@babel/compat-data@7.25.7': {} 1432 | 1433 | '@babel/core@7.25.7': 1434 | dependencies: 1435 | '@ampproject/remapping': 2.3.0 1436 | '@babel/code-frame': 7.25.7 1437 | '@babel/generator': 7.25.7 1438 | '@babel/helper-compilation-targets': 7.25.7 1439 | '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) 1440 | '@babel/helpers': 7.25.7 1441 | '@babel/parser': 7.25.7 1442 | '@babel/template': 7.25.7 1443 | '@babel/traverse': 7.25.7 1444 | '@babel/types': 7.25.7 1445 | convert-source-map: 2.0.0 1446 | debug: 4.3.7 1447 | gensync: 1.0.0-beta.2 1448 | json5: 2.2.3 1449 | semver: 6.3.1 1450 | transitivePeerDependencies: 1451 | - supports-color 1452 | 1453 | '@babel/generator@7.25.7': 1454 | dependencies: 1455 | '@babel/types': 7.25.7 1456 | '@jridgewell/gen-mapping': 0.3.5 1457 | '@jridgewell/trace-mapping': 0.3.25 1458 | jsesc: 3.0.2 1459 | 1460 | '@babel/helper-compilation-targets@7.25.7': 1461 | dependencies: 1462 | '@babel/compat-data': 7.25.7 1463 | '@babel/helper-validator-option': 7.25.7 1464 | browserslist: 4.24.0 1465 | lru-cache: 5.1.1 1466 | semver: 6.3.1 1467 | 1468 | '@babel/helper-module-imports@7.25.7': 1469 | dependencies: 1470 | '@babel/traverse': 7.25.7 1471 | '@babel/types': 7.25.7 1472 | transitivePeerDependencies: 1473 | - supports-color 1474 | 1475 | '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.7)': 1476 | dependencies: 1477 | '@babel/core': 7.25.7 1478 | '@babel/helper-module-imports': 7.25.7 1479 | '@babel/helper-simple-access': 7.25.7 1480 | '@babel/helper-validator-identifier': 7.25.7 1481 | '@babel/traverse': 7.25.7 1482 | transitivePeerDependencies: 1483 | - supports-color 1484 | 1485 | '@babel/helper-plugin-utils@7.25.7': {} 1486 | 1487 | '@babel/helper-simple-access@7.25.7': 1488 | dependencies: 1489 | '@babel/traverse': 7.25.7 1490 | '@babel/types': 7.25.7 1491 | transitivePeerDependencies: 1492 | - supports-color 1493 | 1494 | '@babel/helper-string-parser@7.25.7': {} 1495 | 1496 | '@babel/helper-validator-identifier@7.25.7': {} 1497 | 1498 | '@babel/helper-validator-option@7.25.7': {} 1499 | 1500 | '@babel/helpers@7.25.7': 1501 | dependencies: 1502 | '@babel/template': 7.25.7 1503 | '@babel/types': 7.25.7 1504 | 1505 | '@babel/highlight@7.25.7': 1506 | dependencies: 1507 | '@babel/helper-validator-identifier': 7.25.7 1508 | chalk: 2.4.2 1509 | js-tokens: 4.0.0 1510 | picocolors: 1.1.0 1511 | 1512 | '@babel/parser@7.25.7': 1513 | dependencies: 1514 | '@babel/types': 7.25.7 1515 | 1516 | '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.25.7)': 1517 | dependencies: 1518 | '@babel/core': 7.25.7 1519 | '@babel/helper-plugin-utils': 7.25.7 1520 | 1521 | '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.25.7)': 1522 | dependencies: 1523 | '@babel/core': 7.25.7 1524 | '@babel/helper-plugin-utils': 7.25.7 1525 | 1526 | '@babel/template@7.25.7': 1527 | dependencies: 1528 | '@babel/code-frame': 7.25.7 1529 | '@babel/parser': 7.25.7 1530 | '@babel/types': 7.25.7 1531 | 1532 | '@babel/traverse@7.25.7': 1533 | dependencies: 1534 | '@babel/code-frame': 7.25.7 1535 | '@babel/generator': 7.25.7 1536 | '@babel/parser': 7.25.7 1537 | '@babel/template': 7.25.7 1538 | '@babel/types': 7.25.7 1539 | debug: 4.3.7 1540 | globals: 11.12.0 1541 | transitivePeerDependencies: 1542 | - supports-color 1543 | 1544 | '@babel/types@7.25.7': 1545 | dependencies: 1546 | '@babel/helper-string-parser': 7.25.7 1547 | '@babel/helper-validator-identifier': 7.25.7 1548 | to-fast-properties: 2.0.0 1549 | 1550 | '@esbuild/aix-ppc64@0.21.5': 1551 | optional: true 1552 | 1553 | '@esbuild/android-arm64@0.21.5': 1554 | optional: true 1555 | 1556 | '@esbuild/android-arm@0.21.5': 1557 | optional: true 1558 | 1559 | '@esbuild/android-x64@0.21.5': 1560 | optional: true 1561 | 1562 | '@esbuild/darwin-arm64@0.21.5': 1563 | optional: true 1564 | 1565 | '@esbuild/darwin-x64@0.21.5': 1566 | optional: true 1567 | 1568 | '@esbuild/freebsd-arm64@0.21.5': 1569 | optional: true 1570 | 1571 | '@esbuild/freebsd-x64@0.21.5': 1572 | optional: true 1573 | 1574 | '@esbuild/linux-arm64@0.21.5': 1575 | optional: true 1576 | 1577 | '@esbuild/linux-arm@0.21.5': 1578 | optional: true 1579 | 1580 | '@esbuild/linux-ia32@0.21.5': 1581 | optional: true 1582 | 1583 | '@esbuild/linux-loong64@0.21.5': 1584 | optional: true 1585 | 1586 | '@esbuild/linux-mips64el@0.21.5': 1587 | optional: true 1588 | 1589 | '@esbuild/linux-ppc64@0.21.5': 1590 | optional: true 1591 | 1592 | '@esbuild/linux-riscv64@0.21.5': 1593 | optional: true 1594 | 1595 | '@esbuild/linux-s390x@0.21.5': 1596 | optional: true 1597 | 1598 | '@esbuild/linux-x64@0.21.5': 1599 | optional: true 1600 | 1601 | '@esbuild/netbsd-x64@0.21.5': 1602 | optional: true 1603 | 1604 | '@esbuild/openbsd-x64@0.21.5': 1605 | optional: true 1606 | 1607 | '@esbuild/sunos-x64@0.21.5': 1608 | optional: true 1609 | 1610 | '@esbuild/win32-arm64@0.21.5': 1611 | optional: true 1612 | 1613 | '@esbuild/win32-ia32@0.21.5': 1614 | optional: true 1615 | 1616 | '@esbuild/win32-x64@0.21.5': 1617 | optional: true 1618 | 1619 | '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1)': 1620 | dependencies: 1621 | eslint: 9.11.1 1622 | eslint-visitor-keys: 3.4.3 1623 | 1624 | '@eslint-community/regexpp@4.11.1': {} 1625 | 1626 | '@eslint/config-array@0.18.0': 1627 | dependencies: 1628 | '@eslint/object-schema': 2.1.4 1629 | debug: 4.3.7 1630 | minimatch: 3.1.2 1631 | transitivePeerDependencies: 1632 | - supports-color 1633 | 1634 | '@eslint/core@0.6.0': {} 1635 | 1636 | '@eslint/eslintrc@3.1.0': 1637 | dependencies: 1638 | ajv: 6.12.6 1639 | debug: 4.3.7 1640 | espree: 10.2.0 1641 | globals: 14.0.0 1642 | ignore: 5.3.2 1643 | import-fresh: 3.3.0 1644 | js-yaml: 4.1.0 1645 | minimatch: 3.1.2 1646 | strip-json-comments: 3.1.1 1647 | transitivePeerDependencies: 1648 | - supports-color 1649 | 1650 | '@eslint/js@9.11.1': {} 1651 | 1652 | '@eslint/object-schema@2.1.4': {} 1653 | 1654 | '@eslint/plugin-kit@0.2.0': 1655 | dependencies: 1656 | levn: 0.4.1 1657 | 1658 | '@fireproof/core@0.19.99(react@18.3.1)(typescript@5.6.2)': 1659 | dependencies: 1660 | '@adviser/cement': 0.2.31(typescript@5.6.2) 1661 | '@ipld/car': 5.3.2 1662 | '@ipld/dag-cbor': 9.2.1 1663 | '@ipld/dag-json': 10.2.2 1664 | '@ipld/unixfs': 3.0.0 1665 | '@web3-storage/pail': 0.6.0 1666 | cborg: 4.2.4 1667 | charwise: 3.0.1 1668 | idb: 8.0.0 1669 | ipfs-unixfs-exporter: 13.6.1 1670 | memfs: 4.12.0 1671 | multiformats: 13.3.0 1672 | p-limit: 6.1.0 1673 | prolly-trees: 1.0.4 1674 | react: 18.3.1 1675 | transitivePeerDependencies: 1676 | - typescript 1677 | 1678 | '@fireproof/netlify@0.19.99(react@18.3.1)(typescript@5.6.2)': 1679 | dependencies: 1680 | '@fireproof/core': 0.19.99(react@18.3.1)(typescript@5.6.2) 1681 | '@netlify/blobs': 7.4.0 1682 | cross-fetch: 4.0.0 1683 | transitivePeerDependencies: 1684 | - encoding 1685 | - react 1686 | - typescript 1687 | 1688 | '@humanwhocodes/module-importer@1.0.1': {} 1689 | 1690 | '@humanwhocodes/retry@0.3.0': {} 1691 | 1692 | '@ipld/car@5.3.2': 1693 | dependencies: 1694 | '@ipld/dag-cbor': 9.2.1 1695 | cborg: 4.2.4 1696 | multiformats: 13.3.0 1697 | varint: 6.0.0 1698 | 1699 | '@ipld/dag-cbor@9.2.1': 1700 | dependencies: 1701 | cborg: 4.2.4 1702 | multiformats: 13.3.0 1703 | 1704 | '@ipld/dag-json@10.2.2': 1705 | dependencies: 1706 | cborg: 4.2.4 1707 | multiformats: 13.3.0 1708 | 1709 | '@ipld/dag-pb@4.1.2': 1710 | dependencies: 1711 | multiformats: 13.3.0 1712 | 1713 | '@ipld/unixfs@3.0.0': 1714 | dependencies: 1715 | '@ipld/dag-pb': 4.1.2 1716 | '@multiformats/murmur3': 2.1.8 1717 | '@perma/map': 1.0.3 1718 | actor: 2.3.1 1719 | multiformats: 13.3.0 1720 | protobufjs: 7.4.0 1721 | rabin-rs: 2.1.0 1722 | 1723 | '@jridgewell/gen-mapping@0.3.5': 1724 | dependencies: 1725 | '@jridgewell/set-array': 1.2.1 1726 | '@jridgewell/sourcemap-codec': 1.5.0 1727 | '@jridgewell/trace-mapping': 0.3.25 1728 | 1729 | '@jridgewell/resolve-uri@3.1.2': {} 1730 | 1731 | '@jridgewell/set-array@1.2.1': {} 1732 | 1733 | '@jridgewell/sourcemap-codec@1.5.0': {} 1734 | 1735 | '@jridgewell/trace-mapping@0.3.25': 1736 | dependencies: 1737 | '@jridgewell/resolve-uri': 3.1.2 1738 | '@jridgewell/sourcemap-codec': 1.5.0 1739 | 1740 | '@jsonjoy.com/base64@1.1.2(tslib@2.7.0)': 1741 | dependencies: 1742 | tslib: 2.7.0 1743 | 1744 | '@jsonjoy.com/json-pack@1.1.0(tslib@2.7.0)': 1745 | dependencies: 1746 | '@jsonjoy.com/base64': 1.1.2(tslib@2.7.0) 1747 | '@jsonjoy.com/util': 1.3.0(tslib@2.7.0) 1748 | hyperdyperid: 1.2.0 1749 | thingies: 1.21.0(tslib@2.7.0) 1750 | tslib: 2.7.0 1751 | 1752 | '@jsonjoy.com/util@1.3.0(tslib@2.7.0)': 1753 | dependencies: 1754 | tslib: 2.7.0 1755 | 1756 | '@multiformats/murmur3@2.1.8': 1757 | dependencies: 1758 | multiformats: 13.3.0 1759 | murmurhash3js-revisited: 3.0.0 1760 | 1761 | '@netlify/blobs@7.4.0': {} 1762 | 1763 | '@nodelib/fs.scandir@2.1.5': 1764 | dependencies: 1765 | '@nodelib/fs.stat': 2.0.5 1766 | run-parallel: 1.2.0 1767 | 1768 | '@nodelib/fs.stat@2.0.5': {} 1769 | 1770 | '@nodelib/fs.walk@1.2.8': 1771 | dependencies: 1772 | '@nodelib/fs.scandir': 2.1.5 1773 | fastq: 1.17.1 1774 | 1775 | '@perma/map@1.0.3': 1776 | dependencies: 1777 | '@multiformats/murmur3': 2.1.8 1778 | murmurhash3js-revisited: 3.0.0 1779 | 1780 | '@protobufjs/aspromise@1.1.2': {} 1781 | 1782 | '@protobufjs/base64@1.1.2': {} 1783 | 1784 | '@protobufjs/codegen@2.0.4': {} 1785 | 1786 | '@protobufjs/eventemitter@1.1.0': {} 1787 | 1788 | '@protobufjs/fetch@1.1.0': 1789 | dependencies: 1790 | '@protobufjs/aspromise': 1.1.2 1791 | '@protobufjs/inquire': 1.1.0 1792 | 1793 | '@protobufjs/float@1.0.2': {} 1794 | 1795 | '@protobufjs/inquire@1.1.0': {} 1796 | 1797 | '@protobufjs/path@1.1.2': {} 1798 | 1799 | '@protobufjs/pool@1.1.0': {} 1800 | 1801 | '@protobufjs/utf8@1.1.0': {} 1802 | 1803 | '@rollup/rollup-android-arm-eabi@4.24.0': 1804 | optional: true 1805 | 1806 | '@rollup/rollup-android-arm64@4.24.0': 1807 | optional: true 1808 | 1809 | '@rollup/rollup-darwin-arm64@4.24.0': 1810 | optional: true 1811 | 1812 | '@rollup/rollup-darwin-x64@4.24.0': 1813 | optional: true 1814 | 1815 | '@rollup/rollup-linux-arm-gnueabihf@4.24.0': 1816 | optional: true 1817 | 1818 | '@rollup/rollup-linux-arm-musleabihf@4.24.0': 1819 | optional: true 1820 | 1821 | '@rollup/rollup-linux-arm64-gnu@4.24.0': 1822 | optional: true 1823 | 1824 | '@rollup/rollup-linux-arm64-musl@4.24.0': 1825 | optional: true 1826 | 1827 | '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': 1828 | optional: true 1829 | 1830 | '@rollup/rollup-linux-riscv64-gnu@4.24.0': 1831 | optional: true 1832 | 1833 | '@rollup/rollup-linux-s390x-gnu@4.24.0': 1834 | optional: true 1835 | 1836 | '@rollup/rollup-linux-x64-gnu@4.24.0': 1837 | optional: true 1838 | 1839 | '@rollup/rollup-linux-x64-musl@4.24.0': 1840 | optional: true 1841 | 1842 | '@rollup/rollup-win32-arm64-msvc@4.24.0': 1843 | optional: true 1844 | 1845 | '@rollup/rollup-win32-ia32-msvc@4.24.0': 1846 | optional: true 1847 | 1848 | '@rollup/rollup-win32-x64-msvc@4.24.0': 1849 | optional: true 1850 | 1851 | '@types/babel__core@7.20.5': 1852 | dependencies: 1853 | '@babel/parser': 7.25.7 1854 | '@babel/types': 7.25.7 1855 | '@types/babel__generator': 7.6.8 1856 | '@types/babel__template': 7.4.4 1857 | '@types/babel__traverse': 7.20.6 1858 | 1859 | '@types/babel__generator@7.6.8': 1860 | dependencies: 1861 | '@babel/types': 7.25.7 1862 | 1863 | '@types/babel__template@7.4.4': 1864 | dependencies: 1865 | '@babel/parser': 7.25.7 1866 | '@babel/types': 7.25.7 1867 | 1868 | '@types/babel__traverse@7.20.6': 1869 | dependencies: 1870 | '@babel/types': 7.25.7 1871 | 1872 | '@types/estree@1.0.6': {} 1873 | 1874 | '@types/json-schema@7.0.15': {} 1875 | 1876 | '@types/node@22.7.4': 1877 | dependencies: 1878 | undici-types: 6.19.8 1879 | 1880 | '@types/prop-types@15.7.13': {} 1881 | 1882 | '@types/react-dom@18.3.0': 1883 | dependencies: 1884 | '@types/react': 18.3.11 1885 | 1886 | '@types/react@18.3.11': 1887 | dependencies: 1888 | '@types/prop-types': 15.7.13 1889 | csstype: 3.1.3 1890 | 1891 | '@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1)(typescript@5.6.2))(eslint@9.11.1)(typescript@5.6.2)': 1892 | dependencies: 1893 | '@eslint-community/regexpp': 4.11.1 1894 | '@typescript-eslint/parser': 8.8.0(eslint@9.11.1)(typescript@5.6.2) 1895 | '@typescript-eslint/scope-manager': 8.8.0 1896 | '@typescript-eslint/type-utils': 8.8.0(eslint@9.11.1)(typescript@5.6.2) 1897 | '@typescript-eslint/utils': 8.8.0(eslint@9.11.1)(typescript@5.6.2) 1898 | '@typescript-eslint/visitor-keys': 8.8.0 1899 | eslint: 9.11.1 1900 | graphemer: 1.4.0 1901 | ignore: 5.3.2 1902 | natural-compare: 1.4.0 1903 | ts-api-utils: 1.3.0(typescript@5.6.2) 1904 | optionalDependencies: 1905 | typescript: 5.6.2 1906 | transitivePeerDependencies: 1907 | - supports-color 1908 | 1909 | '@typescript-eslint/parser@8.8.0(eslint@9.11.1)(typescript@5.6.2)': 1910 | dependencies: 1911 | '@typescript-eslint/scope-manager': 8.8.0 1912 | '@typescript-eslint/types': 8.8.0 1913 | '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) 1914 | '@typescript-eslint/visitor-keys': 8.8.0 1915 | debug: 4.3.7 1916 | eslint: 9.11.1 1917 | optionalDependencies: 1918 | typescript: 5.6.2 1919 | transitivePeerDependencies: 1920 | - supports-color 1921 | 1922 | '@typescript-eslint/scope-manager@8.8.0': 1923 | dependencies: 1924 | '@typescript-eslint/types': 8.8.0 1925 | '@typescript-eslint/visitor-keys': 8.8.0 1926 | 1927 | '@typescript-eslint/type-utils@8.8.0(eslint@9.11.1)(typescript@5.6.2)': 1928 | dependencies: 1929 | '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) 1930 | '@typescript-eslint/utils': 8.8.0(eslint@9.11.1)(typescript@5.6.2) 1931 | debug: 4.3.7 1932 | ts-api-utils: 1.3.0(typescript@5.6.2) 1933 | optionalDependencies: 1934 | typescript: 5.6.2 1935 | transitivePeerDependencies: 1936 | - eslint 1937 | - supports-color 1938 | 1939 | '@typescript-eslint/types@8.8.0': {} 1940 | 1941 | '@typescript-eslint/typescript-estree@8.8.0(typescript@5.6.2)': 1942 | dependencies: 1943 | '@typescript-eslint/types': 8.8.0 1944 | '@typescript-eslint/visitor-keys': 8.8.0 1945 | debug: 4.3.7 1946 | fast-glob: 3.3.2 1947 | is-glob: 4.0.3 1948 | minimatch: 9.0.5 1949 | semver: 7.6.3 1950 | ts-api-utils: 1.3.0(typescript@5.6.2) 1951 | optionalDependencies: 1952 | typescript: 5.6.2 1953 | transitivePeerDependencies: 1954 | - supports-color 1955 | 1956 | '@typescript-eslint/utils@8.8.0(eslint@9.11.1)(typescript@5.6.2)': 1957 | dependencies: 1958 | '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1) 1959 | '@typescript-eslint/scope-manager': 8.8.0 1960 | '@typescript-eslint/types': 8.8.0 1961 | '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2) 1962 | eslint: 9.11.1 1963 | transitivePeerDependencies: 1964 | - supports-color 1965 | - typescript 1966 | 1967 | '@typescript-eslint/visitor-keys@8.8.0': 1968 | dependencies: 1969 | '@typescript-eslint/types': 8.8.0 1970 | eslint-visitor-keys: 3.4.3 1971 | 1972 | '@vitejs/plugin-react@4.3.2(vite@5.4.8(@types/node@22.7.4))': 1973 | dependencies: 1974 | '@babel/core': 7.25.7 1975 | '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.25.7) 1976 | '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.25.7) 1977 | '@types/babel__core': 7.20.5 1978 | react-refresh: 0.14.2 1979 | vite: 5.4.8(@types/node@22.7.4) 1980 | transitivePeerDependencies: 1981 | - supports-color 1982 | 1983 | '@web3-storage/pail@0.6.0': 1984 | dependencies: 1985 | '@ipld/dag-cbor': 9.2.1 1986 | multiformats: 13.3.0 1987 | 1988 | acorn-jsx@5.3.2(acorn@8.12.1): 1989 | dependencies: 1990 | acorn: 8.12.1 1991 | 1992 | acorn@8.12.1: {} 1993 | 1994 | actor@2.3.1: {} 1995 | 1996 | ajv@6.12.6: 1997 | dependencies: 1998 | fast-deep-equal: 3.1.3 1999 | fast-json-stable-stringify: 2.1.0 2000 | json-schema-traverse: 0.4.1 2001 | uri-js: 4.4.1 2002 | 2003 | ansi-regex@5.0.1: {} 2004 | 2005 | ansi-styles@3.2.1: 2006 | dependencies: 2007 | color-convert: 1.9.3 2008 | 2009 | ansi-styles@4.3.0: 2010 | dependencies: 2011 | color-convert: 2.0.1 2012 | 2013 | argparse@2.0.1: {} 2014 | 2015 | balanced-match@1.0.2: {} 2016 | 2017 | base64-js@1.5.1: {} 2018 | 2019 | big-integer@1.6.52: {} 2020 | 2021 | bl@4.1.0: 2022 | dependencies: 2023 | buffer: 5.7.1 2024 | inherits: 2.0.4 2025 | readable-stream: 3.6.2 2026 | 2027 | brace-expansion@1.1.11: 2028 | dependencies: 2029 | balanced-match: 1.0.2 2030 | concat-map: 0.0.1 2031 | 2032 | brace-expansion@2.0.1: 2033 | dependencies: 2034 | balanced-match: 1.0.2 2035 | 2036 | braces@3.0.3: 2037 | dependencies: 2038 | fill-range: 7.1.1 2039 | 2040 | browserslist@4.24.0: 2041 | dependencies: 2042 | caniuse-lite: 1.0.30001666 2043 | electron-to-chromium: 1.5.32 2044 | node-releases: 2.0.18 2045 | update-browserslist-db: 1.1.1(browserslist@4.24.0) 2046 | 2047 | buffer@5.7.1: 2048 | dependencies: 2049 | base64-js: 1.5.1 2050 | ieee754: 1.2.1 2051 | 2052 | callsites@3.1.0: {} 2053 | 2054 | caniuse-lite@1.0.30001666: {} 2055 | 2056 | cborg@4.2.4: {} 2057 | 2058 | chalk@2.4.2: 2059 | dependencies: 2060 | ansi-styles: 3.2.1 2061 | escape-string-regexp: 1.0.5 2062 | supports-color: 5.5.0 2063 | 2064 | chalk@4.1.2: 2065 | dependencies: 2066 | ansi-styles: 4.3.0 2067 | supports-color: 7.2.0 2068 | 2069 | charwise@3.0.1: {} 2070 | 2071 | color-convert@1.9.3: 2072 | dependencies: 2073 | color-name: 1.1.3 2074 | 2075 | color-convert@2.0.1: 2076 | dependencies: 2077 | color-name: 1.1.4 2078 | 2079 | color-name@1.1.3: {} 2080 | 2081 | color-name@1.1.4: {} 2082 | 2083 | concat-map@0.0.1: {} 2084 | 2085 | convert-source-map@2.0.0: {} 2086 | 2087 | cross-fetch@4.0.0: 2088 | dependencies: 2089 | node-fetch: 2.7.0 2090 | transitivePeerDependencies: 2091 | - encoding 2092 | 2093 | cross-spawn@7.0.3: 2094 | dependencies: 2095 | path-key: 3.1.1 2096 | shebang-command: 2.0.0 2097 | which: 2.0.2 2098 | 2099 | csstype@3.1.3: {} 2100 | 2101 | debug@4.3.7: 2102 | dependencies: 2103 | ms: 2.1.3 2104 | 2105 | deep-is@0.1.4: {} 2106 | 2107 | electron-to-chromium@1.5.32: {} 2108 | 2109 | esbuild@0.21.5: 2110 | optionalDependencies: 2111 | '@esbuild/aix-ppc64': 0.21.5 2112 | '@esbuild/android-arm': 0.21.5 2113 | '@esbuild/android-arm64': 0.21.5 2114 | '@esbuild/android-x64': 0.21.5 2115 | '@esbuild/darwin-arm64': 0.21.5 2116 | '@esbuild/darwin-x64': 0.21.5 2117 | '@esbuild/freebsd-arm64': 0.21.5 2118 | '@esbuild/freebsd-x64': 0.21.5 2119 | '@esbuild/linux-arm': 0.21.5 2120 | '@esbuild/linux-arm64': 0.21.5 2121 | '@esbuild/linux-ia32': 0.21.5 2122 | '@esbuild/linux-loong64': 0.21.5 2123 | '@esbuild/linux-mips64el': 0.21.5 2124 | '@esbuild/linux-ppc64': 0.21.5 2125 | '@esbuild/linux-riscv64': 0.21.5 2126 | '@esbuild/linux-s390x': 0.21.5 2127 | '@esbuild/linux-x64': 0.21.5 2128 | '@esbuild/netbsd-x64': 0.21.5 2129 | '@esbuild/openbsd-x64': 0.21.5 2130 | '@esbuild/sunos-x64': 0.21.5 2131 | '@esbuild/win32-arm64': 0.21.5 2132 | '@esbuild/win32-ia32': 0.21.5 2133 | '@esbuild/win32-x64': 0.21.5 2134 | 2135 | escalade@3.2.0: {} 2136 | 2137 | escape-string-regexp@1.0.5: {} 2138 | 2139 | escape-string-regexp@4.0.0: {} 2140 | 2141 | eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614(eslint@9.11.1): 2142 | dependencies: 2143 | eslint: 9.11.1 2144 | 2145 | eslint-plugin-react-refresh@0.4.12(eslint@9.11.1): 2146 | dependencies: 2147 | eslint: 9.11.1 2148 | 2149 | eslint-scope@8.1.0: 2150 | dependencies: 2151 | esrecurse: 4.3.0 2152 | estraverse: 5.3.0 2153 | 2154 | eslint-visitor-keys@3.4.3: {} 2155 | 2156 | eslint-visitor-keys@4.1.0: {} 2157 | 2158 | eslint@9.11.1: 2159 | dependencies: 2160 | '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1) 2161 | '@eslint-community/regexpp': 4.11.1 2162 | '@eslint/config-array': 0.18.0 2163 | '@eslint/core': 0.6.0 2164 | '@eslint/eslintrc': 3.1.0 2165 | '@eslint/js': 9.11.1 2166 | '@eslint/plugin-kit': 0.2.0 2167 | '@humanwhocodes/module-importer': 1.0.1 2168 | '@humanwhocodes/retry': 0.3.0 2169 | '@nodelib/fs.walk': 1.2.8 2170 | '@types/estree': 1.0.6 2171 | '@types/json-schema': 7.0.15 2172 | ajv: 6.12.6 2173 | chalk: 4.1.2 2174 | cross-spawn: 7.0.3 2175 | debug: 4.3.7 2176 | escape-string-regexp: 4.0.0 2177 | eslint-scope: 8.1.0 2178 | eslint-visitor-keys: 4.1.0 2179 | espree: 10.2.0 2180 | esquery: 1.6.0 2181 | esutils: 2.0.3 2182 | fast-deep-equal: 3.1.3 2183 | file-entry-cache: 8.0.0 2184 | find-up: 5.0.0 2185 | glob-parent: 6.0.2 2186 | ignore: 5.3.2 2187 | imurmurhash: 0.1.4 2188 | is-glob: 4.0.3 2189 | is-path-inside: 3.0.3 2190 | json-stable-stringify-without-jsonify: 1.0.1 2191 | lodash.merge: 4.6.2 2192 | minimatch: 3.1.2 2193 | natural-compare: 1.4.0 2194 | optionator: 0.9.4 2195 | strip-ansi: 6.0.1 2196 | text-table: 0.2.0 2197 | transitivePeerDependencies: 2198 | - supports-color 2199 | 2200 | espree@10.2.0: 2201 | dependencies: 2202 | acorn: 8.12.1 2203 | acorn-jsx: 5.3.2(acorn@8.12.1) 2204 | eslint-visitor-keys: 4.1.0 2205 | 2206 | esquery@1.6.0: 2207 | dependencies: 2208 | estraverse: 5.3.0 2209 | 2210 | esrecurse@4.3.0: 2211 | dependencies: 2212 | estraverse: 5.3.0 2213 | 2214 | estraverse@5.3.0: {} 2215 | 2216 | esutils@2.0.3: {} 2217 | 2218 | eventemitter3@5.0.1: {} 2219 | 2220 | fast-deep-equal@3.1.3: {} 2221 | 2222 | fast-glob@3.3.2: 2223 | dependencies: 2224 | '@nodelib/fs.stat': 2.0.5 2225 | '@nodelib/fs.walk': 1.2.8 2226 | glob-parent: 5.1.2 2227 | merge2: 1.4.1 2228 | micromatch: 4.0.8 2229 | 2230 | fast-json-stable-stringify@2.1.0: {} 2231 | 2232 | fast-levenshtein@2.0.6: {} 2233 | 2234 | fastq@1.17.1: 2235 | dependencies: 2236 | reusify: 1.0.4 2237 | 2238 | file-entry-cache@8.0.0: 2239 | dependencies: 2240 | flat-cache: 4.0.1 2241 | 2242 | fill-range@7.1.1: 2243 | dependencies: 2244 | to-regex-range: 5.0.1 2245 | 2246 | find-up@5.0.0: 2247 | dependencies: 2248 | locate-path: 6.0.0 2249 | path-exists: 4.0.0 2250 | 2251 | flat-cache@4.0.1: 2252 | dependencies: 2253 | flatted: 3.3.1 2254 | keyv: 4.5.4 2255 | 2256 | flatted@3.3.1: {} 2257 | 2258 | fsevents@2.3.3: 2259 | optional: true 2260 | 2261 | gensync@1.0.0-beta.2: {} 2262 | 2263 | glob-parent@5.1.2: 2264 | dependencies: 2265 | is-glob: 4.0.3 2266 | 2267 | glob-parent@6.0.2: 2268 | dependencies: 2269 | is-glob: 4.0.3 2270 | 2271 | globals@11.12.0: {} 2272 | 2273 | globals@14.0.0: {} 2274 | 2275 | globals@15.10.0: {} 2276 | 2277 | graphemer@1.4.0: {} 2278 | 2279 | hamt-sharding@3.0.6: 2280 | dependencies: 2281 | sparse-array: 1.3.2 2282 | uint8arrays: 5.1.0 2283 | 2284 | has-flag@3.0.0: {} 2285 | 2286 | has-flag@4.0.0: {} 2287 | 2288 | hyperdyperid@1.2.0: {} 2289 | 2290 | idb@8.0.0: {} 2291 | 2292 | ieee754@1.2.1: {} 2293 | 2294 | ignore@5.3.2: {} 2295 | 2296 | import-fresh@3.3.0: 2297 | dependencies: 2298 | parent-module: 1.0.1 2299 | resolve-from: 4.0.0 2300 | 2301 | imurmurhash@0.1.4: {} 2302 | 2303 | inherits@2.0.4: {} 2304 | 2305 | interface-blockstore@5.3.1: 2306 | dependencies: 2307 | interface-store: 6.0.2 2308 | multiformats: 13.3.0 2309 | 2310 | interface-store@6.0.2: {} 2311 | 2312 | ipfs-unixfs-exporter@13.6.1: 2313 | dependencies: 2314 | '@ipld/dag-cbor': 9.2.1 2315 | '@ipld/dag-json': 10.2.2 2316 | '@ipld/dag-pb': 4.1.2 2317 | '@multiformats/murmur3': 2.1.8 2318 | hamt-sharding: 3.0.6 2319 | interface-blockstore: 5.3.1 2320 | ipfs-unixfs: 11.2.0 2321 | it-filter: 3.1.1 2322 | it-last: 3.0.6 2323 | it-map: 3.1.1 2324 | it-parallel: 3.0.8 2325 | it-pipe: 3.0.1 2326 | it-pushable: 3.2.3 2327 | multiformats: 13.3.0 2328 | p-queue: 8.0.1 2329 | progress-events: 1.0.1 2330 | 2331 | ipfs-unixfs@11.2.0: 2332 | dependencies: 2333 | protons-runtime: 5.5.0 2334 | uint8arraylist: 2.4.8 2335 | 2336 | is-extglob@2.1.1: {} 2337 | 2338 | is-glob@4.0.3: 2339 | dependencies: 2340 | is-extglob: 2.1.1 2341 | 2342 | is-number@7.0.0: {} 2343 | 2344 | is-path-inside@3.0.3: {} 2345 | 2346 | isexe@2.0.0: {} 2347 | 2348 | it-filter@3.1.1: 2349 | dependencies: 2350 | it-peekable: 3.0.5 2351 | 2352 | it-last@3.0.6: {} 2353 | 2354 | it-map@3.1.1: 2355 | dependencies: 2356 | it-peekable: 3.0.5 2357 | 2358 | it-merge@3.0.5: 2359 | dependencies: 2360 | it-pushable: 3.2.3 2361 | 2362 | it-parallel@3.0.8: 2363 | dependencies: 2364 | p-defer: 4.0.1 2365 | 2366 | it-peekable@3.0.5: {} 2367 | 2368 | it-pipe@3.0.1: 2369 | dependencies: 2370 | it-merge: 3.0.5 2371 | it-pushable: 3.2.3 2372 | it-stream-types: 2.0.2 2373 | 2374 | it-pushable@3.2.3: 2375 | dependencies: 2376 | p-defer: 4.0.1 2377 | 2378 | it-stream-types@2.0.2: {} 2379 | 2380 | js-tokens@4.0.0: {} 2381 | 2382 | js-yaml@4.1.0: 2383 | dependencies: 2384 | argparse: 2.0.1 2385 | 2386 | jsesc@3.0.2: {} 2387 | 2388 | json-buffer@3.0.1: {} 2389 | 2390 | json-schema-traverse@0.4.1: {} 2391 | 2392 | json-stable-stringify-without-jsonify@1.0.1: {} 2393 | 2394 | json5@2.2.3: {} 2395 | 2396 | keyv@4.5.4: 2397 | dependencies: 2398 | json-buffer: 3.0.1 2399 | 2400 | levn@0.4.1: 2401 | dependencies: 2402 | prelude-ls: 1.2.1 2403 | type-check: 0.4.0 2404 | 2405 | locate-path@6.0.0: 2406 | dependencies: 2407 | p-locate: 5.0.0 2408 | 2409 | lodash.merge@4.6.2: {} 2410 | 2411 | long@5.2.3: {} 2412 | 2413 | loose-envify@1.4.0: 2414 | dependencies: 2415 | js-tokens: 4.0.0 2416 | 2417 | lru-cache@5.1.1: 2418 | dependencies: 2419 | yallist: 3.1.1 2420 | 2421 | memfs@4.12.0: 2422 | dependencies: 2423 | '@jsonjoy.com/json-pack': 1.1.0(tslib@2.7.0) 2424 | '@jsonjoy.com/util': 1.3.0(tslib@2.7.0) 2425 | tree-dump: 1.0.2(tslib@2.7.0) 2426 | tslib: 2.7.0 2427 | 2428 | merge2@1.4.1: {} 2429 | 2430 | micromatch@4.0.8: 2431 | dependencies: 2432 | braces: 3.0.3 2433 | picomatch: 2.3.1 2434 | 2435 | minimatch@3.1.2: 2436 | dependencies: 2437 | brace-expansion: 1.1.11 2438 | 2439 | minimatch@9.0.5: 2440 | dependencies: 2441 | brace-expansion: 2.0.1 2442 | 2443 | ms@2.1.3: {} 2444 | 2445 | multiformats@13.3.0: {} 2446 | 2447 | murmurhash3js-revisited@3.0.0: {} 2448 | 2449 | nanoid@3.3.7: {} 2450 | 2451 | natural-compare@1.4.0: {} 2452 | 2453 | node-fetch@2.7.0: 2454 | dependencies: 2455 | whatwg-url: 5.0.0 2456 | 2457 | node-releases@2.0.18: {} 2458 | 2459 | node-sql-parser@3.9.4: 2460 | dependencies: 2461 | big-integer: 1.6.52 2462 | 2463 | optionator@0.9.4: 2464 | dependencies: 2465 | deep-is: 0.1.4 2466 | fast-levenshtein: 2.0.6 2467 | levn: 0.4.1 2468 | prelude-ls: 1.2.1 2469 | type-check: 0.4.0 2470 | word-wrap: 1.2.5 2471 | 2472 | p-defer@4.0.1: {} 2473 | 2474 | p-limit@3.1.0: 2475 | dependencies: 2476 | yocto-queue: 0.1.0 2477 | 2478 | p-limit@6.1.0: 2479 | dependencies: 2480 | yocto-queue: 1.1.1 2481 | 2482 | p-locate@5.0.0: 2483 | dependencies: 2484 | p-limit: 3.1.0 2485 | 2486 | p-queue@8.0.1: 2487 | dependencies: 2488 | eventemitter3: 5.0.1 2489 | p-timeout: 6.1.2 2490 | 2491 | p-timeout@6.1.2: {} 2492 | 2493 | parent-module@1.0.1: 2494 | dependencies: 2495 | callsites: 3.1.0 2496 | 2497 | path-exists@4.0.0: {} 2498 | 2499 | path-key@3.1.1: {} 2500 | 2501 | picocolors@1.1.0: {} 2502 | 2503 | picomatch@2.3.1: {} 2504 | 2505 | postcss@8.4.47: 2506 | dependencies: 2507 | nanoid: 3.3.7 2508 | picocolors: 1.1.0 2509 | source-map-js: 1.2.1 2510 | 2511 | prelude-ls@1.2.1: {} 2512 | 2513 | progress-events@1.0.1: {} 2514 | 2515 | prolly-trees@1.0.4: 2516 | dependencies: 2517 | bl: 4.1.0 2518 | node-sql-parser: 3.9.4 2519 | 2520 | protobufjs@7.4.0: 2521 | dependencies: 2522 | '@protobufjs/aspromise': 1.1.2 2523 | '@protobufjs/base64': 1.1.2 2524 | '@protobufjs/codegen': 2.0.4 2525 | '@protobufjs/eventemitter': 1.1.0 2526 | '@protobufjs/fetch': 1.1.0 2527 | '@protobufjs/float': 1.0.2 2528 | '@protobufjs/inquire': 1.1.0 2529 | '@protobufjs/path': 1.1.2 2530 | '@protobufjs/pool': 1.1.0 2531 | '@protobufjs/utf8': 1.1.0 2532 | '@types/node': 22.7.4 2533 | long: 5.2.3 2534 | 2535 | protons-runtime@5.5.0: 2536 | dependencies: 2537 | uint8-varint: 2.0.4 2538 | uint8arraylist: 2.4.8 2539 | uint8arrays: 5.1.0 2540 | 2541 | punycode@2.3.1: {} 2542 | 2543 | queue-microtask@1.2.3: {} 2544 | 2545 | rabin-rs@2.1.0: {} 2546 | 2547 | react-dom@18.3.1(react@18.3.1): 2548 | dependencies: 2549 | loose-envify: 1.4.0 2550 | react: 18.3.1 2551 | scheduler: 0.23.2 2552 | 2553 | react-refresh@0.14.2: {} 2554 | 2555 | react@18.3.1: 2556 | dependencies: 2557 | loose-envify: 1.4.0 2558 | 2559 | readable-stream@3.6.2: 2560 | dependencies: 2561 | inherits: 2.0.4 2562 | string_decoder: 1.3.0 2563 | util-deprecate: 1.0.2 2564 | 2565 | resolve-from@4.0.0: {} 2566 | 2567 | reusify@1.0.4: {} 2568 | 2569 | rollup@4.24.0: 2570 | dependencies: 2571 | '@types/estree': 1.0.6 2572 | optionalDependencies: 2573 | '@rollup/rollup-android-arm-eabi': 4.24.0 2574 | '@rollup/rollup-android-arm64': 4.24.0 2575 | '@rollup/rollup-darwin-arm64': 4.24.0 2576 | '@rollup/rollup-darwin-x64': 4.24.0 2577 | '@rollup/rollup-linux-arm-gnueabihf': 4.24.0 2578 | '@rollup/rollup-linux-arm-musleabihf': 4.24.0 2579 | '@rollup/rollup-linux-arm64-gnu': 4.24.0 2580 | '@rollup/rollup-linux-arm64-musl': 4.24.0 2581 | '@rollup/rollup-linux-powerpc64le-gnu': 4.24.0 2582 | '@rollup/rollup-linux-riscv64-gnu': 4.24.0 2583 | '@rollup/rollup-linux-s390x-gnu': 4.24.0 2584 | '@rollup/rollup-linux-x64-gnu': 4.24.0 2585 | '@rollup/rollup-linux-x64-musl': 4.24.0 2586 | '@rollup/rollup-win32-arm64-msvc': 4.24.0 2587 | '@rollup/rollup-win32-ia32-msvc': 4.24.0 2588 | '@rollup/rollup-win32-x64-msvc': 4.24.0 2589 | fsevents: 2.3.3 2590 | 2591 | run-parallel@1.2.0: 2592 | dependencies: 2593 | queue-microtask: 1.2.3 2594 | 2595 | safe-buffer@5.2.1: {} 2596 | 2597 | scheduler@0.23.2: 2598 | dependencies: 2599 | loose-envify: 1.4.0 2600 | 2601 | semver@6.3.1: {} 2602 | 2603 | semver@7.6.3: {} 2604 | 2605 | shebang-command@2.0.0: 2606 | dependencies: 2607 | shebang-regex: 3.0.0 2608 | 2609 | shebang-regex@3.0.0: {} 2610 | 2611 | source-map-js@1.2.1: {} 2612 | 2613 | sparse-array@1.3.2: {} 2614 | 2615 | string_decoder@1.3.0: 2616 | dependencies: 2617 | safe-buffer: 5.2.1 2618 | 2619 | strip-ansi@6.0.1: 2620 | dependencies: 2621 | ansi-regex: 5.0.1 2622 | 2623 | strip-json-comments@3.1.1: {} 2624 | 2625 | supports-color@5.5.0: 2626 | dependencies: 2627 | has-flag: 3.0.0 2628 | 2629 | supports-color@7.2.0: 2630 | dependencies: 2631 | has-flag: 4.0.0 2632 | 2633 | text-table@0.2.0: {} 2634 | 2635 | thingies@1.21.0(tslib@2.7.0): 2636 | dependencies: 2637 | tslib: 2.7.0 2638 | 2639 | to-fast-properties@2.0.0: {} 2640 | 2641 | to-regex-range@5.0.1: 2642 | dependencies: 2643 | is-number: 7.0.0 2644 | 2645 | tr46@0.0.3: {} 2646 | 2647 | tree-dump@1.0.2(tslib@2.7.0): 2648 | dependencies: 2649 | tslib: 2.7.0 2650 | 2651 | ts-api-utils@1.3.0(typescript@5.6.2): 2652 | dependencies: 2653 | typescript: 5.6.2 2654 | 2655 | ts-essentials@10.0.2(typescript@5.6.2): 2656 | optionalDependencies: 2657 | typescript: 5.6.2 2658 | 2659 | tslib@2.7.0: {} 2660 | 2661 | type-check@0.4.0: 2662 | dependencies: 2663 | prelude-ls: 1.2.1 2664 | 2665 | typescript-eslint@8.8.0(eslint@9.11.1)(typescript@5.6.2): 2666 | dependencies: 2667 | '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1)(typescript@5.6.2))(eslint@9.11.1)(typescript@5.6.2) 2668 | '@typescript-eslint/parser': 8.8.0(eslint@9.11.1)(typescript@5.6.2) 2669 | '@typescript-eslint/utils': 8.8.0(eslint@9.11.1)(typescript@5.6.2) 2670 | optionalDependencies: 2671 | typescript: 5.6.2 2672 | transitivePeerDependencies: 2673 | - eslint 2674 | - supports-color 2675 | 2676 | typescript@5.6.2: {} 2677 | 2678 | uint8-varint@2.0.4: 2679 | dependencies: 2680 | uint8arraylist: 2.4.8 2681 | uint8arrays: 5.1.0 2682 | 2683 | uint8arraylist@2.4.8: 2684 | dependencies: 2685 | uint8arrays: 5.1.0 2686 | 2687 | uint8arrays@5.1.0: 2688 | dependencies: 2689 | multiformats: 13.3.0 2690 | 2691 | undici-types@6.19.8: {} 2692 | 2693 | update-browserslist-db@1.1.1(browserslist@4.24.0): 2694 | dependencies: 2695 | browserslist: 4.24.0 2696 | escalade: 3.2.0 2697 | picocolors: 1.1.0 2698 | 2699 | uri-js@4.4.1: 2700 | dependencies: 2701 | punycode: 2.3.1 2702 | 2703 | use-fireproof@0.19.11-dev-dryrun2(react@18.3.1)(typescript@5.6.2): 2704 | dependencies: 2705 | '@adviser/cement': 0.2.31(typescript@5.6.2) 2706 | '@ipld/car': 5.3.2 2707 | '@ipld/unixfs': 3.0.0 2708 | '@web3-storage/pail': 0.6.0 2709 | cborg: 4.2.4 2710 | charwise: 3.0.1 2711 | idb: 8.0.0 2712 | ipfs-unixfs-exporter: 13.6.1 2713 | p-limit: 6.1.0 2714 | prolly-trees: 1.0.4 2715 | react: 18.3.1 2716 | transitivePeerDependencies: 2717 | - typescript 2718 | 2719 | util-deprecate@1.0.2: {} 2720 | 2721 | varint@6.0.0: {} 2722 | 2723 | vite@5.4.8(@types/node@22.7.4): 2724 | dependencies: 2725 | esbuild: 0.21.5 2726 | postcss: 8.4.47 2727 | rollup: 4.24.0 2728 | optionalDependencies: 2729 | '@types/node': 22.7.4 2730 | fsevents: 2.3.3 2731 | 2732 | webidl-conversions@3.0.1: {} 2733 | 2734 | whatwg-url@5.0.0: 2735 | dependencies: 2736 | tr46: 0.0.3 2737 | webidl-conversions: 3.0.1 2738 | 2739 | which@2.0.2: 2740 | dependencies: 2741 | isexe: 2.0.0 2742 | 2743 | word-wrap@1.2.5: {} 2744 | 2745 | yallist@3.1.1: {} 2746 | 2747 | yaml@2.5.1: {} 2748 | 2749 | yocto-queue@0.1.0: {} 2750 | 2751 | yocto-queue@1.1.1: {} 2752 | --------------------------------------------------------------------------------