From acdf87b23769d7a45950689ca0e91aff3e6f0b7f Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Sun, 30 Nov 2025 22:18:14 +0100 Subject: [PATCH] initial --- .gitignore | 24 + README.md | 150 ++ eslint.config.js | 23 + index.html | 13 + package-lock.json | 3223 ++++++++++++++++++++++++ package.json | 32 + public/pystitch-1.0.0-py3-none-any.whl | Bin 0 -> 118293 bytes public/vite.svg | 1 + src/App.css | 645 +++++ src/App.tsx | 107 + src/assets/react.svg | 1 + src/components/ConfirmDialog.tsx | 73 + src/components/FileUpload.tsx | 136 + src/components/MachineConnection.tsx | 134 + src/components/PatternCanvas.tsx | 284 +++ src/components/ProgressMonitor.tsx | 310 +++ src/hooks/useBrotherMachine.ts | 355 +++ src/index.css | 13 + src/main.tsx | 10 + src/services/BrotherPP1Service.ts | 452 ++++ src/services/PatternCacheService.ts | 155 ++ src/types/machine.ts | 103 + src/utils/errorCodeHelpers.ts | 100 + src/utils/machineStateHelpers.ts | 184 ++ src/utils/penParser.ts | 128 + src/utils/pyodideLoader.ts | 90 + src/utils/pystitchConverter.ts | 233 ++ src/web-bluetooth.d.ts | 125 + tsconfig.app.json | 28 + tsconfig.json | 7 + tsconfig.node.json | 26 + vite.config.ts | 37 + 32 files changed, 7202 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 eslint.config.js create mode 100644 index.html create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 public/pystitch-1.0.0-py3-none-any.whl create mode 100644 public/vite.svg create mode 100644 src/App.css create mode 100644 src/App.tsx create mode 100644 src/assets/react.svg create mode 100644 src/components/ConfirmDialog.tsx create mode 100644 src/components/FileUpload.tsx create mode 100644 src/components/MachineConnection.tsx create mode 100644 src/components/PatternCanvas.tsx create mode 100644 src/components/ProgressMonitor.tsx create mode 100644 src/hooks/useBrotherMachine.ts create mode 100644 src/index.css create mode 100644 src/main.tsx create mode 100644 src/services/BrotherPP1Service.ts create mode 100644 src/services/PatternCacheService.ts create mode 100644 src/types/machine.ts create mode 100644 src/utils/errorCodeHelpers.ts create mode 100644 src/utils/machineStateHelpers.ts create mode 100644 src/utils/penParser.ts create mode 100644 src/utils/pyodideLoader.ts create mode 100644 src/utils/pystitchConverter.ts create mode 100644 src/web-bluetooth.d.ts create mode 100644 tsconfig.app.json create mode 100644 tsconfig.json create mode 100644 tsconfig.node.json create mode 100644 vite.config.ts diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/README.md b/README.md new file mode 100644 index 0000000..6aa1644 --- /dev/null +++ b/README.md @@ -0,0 +1,150 @@ +# Brother Embroidery Machine Web Controller + +A modern web application for controlling Brother embroidery machines via WebBluetooth. + +## Features + +- **WebBluetooth Connection**: Connect directly to Brother PP1 embroidery machines from your browser +- **Pattern Upload**: Load and upload PEN format embroidery files +- **Pattern Visualization**: Preview embroidery patterns on an interactive canvas with color information +- **Real-time Monitoring**: Monitor sewing progress, position, and status in real-time +- **Machine Control**: Start mask trace, start sewing, and manage patterns + +## Requirements + +- Modern browser with WebBluetooth support (Chrome, Edge, Opera) +- HTTPS connection (required for WebBluetooth API) +- Brother PP1 compatible embroidery machine with BLE + +## Getting Started + +### Installation + +```bash +npm install +``` + +### Development + +```bash +npm run dev +``` + +The application will be available at `http://localhost:5173` + +**Note**: WebBluetooth requires HTTPS. For local development, you can use: +- `localhost` (works with HTTP) +- A reverse proxy with SSL +- Vite's HTTPS mode: `npm run dev -- --https` + +### Build for Production + +```bash +npm run build +``` + +The built files will be in the `dist` directory. + +### Preview Production Build + +```bash +npm run preview +``` + +## Usage + +1. **Connect to Machine** + - Click "Connect to Machine" + - Select your Brother embroidery machine from the browser's Bluetooth device picker + - Machine information and status will be displayed + +2. **Load Pattern** + - Click "Choose PEN File" and select a `.pen` embroidery file + - Pattern details and preview will be shown on the canvas + - Different colors are displayed in the preview + +3. **Upload to Machine** + - Click "Upload to Machine" to transfer the pattern + - Upload progress will be shown + - Pattern information will be retrieved from the machine + +4. **Start Mask Trace** (optional) + - Click "Start Mask Trace" to trace the pattern outline + - Confirm on the machine when prompted + +5. **Start Sewing** + - Click "Start Sewing" to begin the embroidery process + - Real-time progress, position, and status will be displayed + - Follow machine prompts for color changes + +6. **Monitor Progress** + - View current stitch count and completion percentage + - See real-time needle position + - Track elapsed time + +## Project Structure + +``` +web/ +├── src/ +│ ├── components/ # React components +│ │ ├── MachineConnection.tsx +│ │ ├── FileUpload.tsx +│ │ ├── PatternCanvas.tsx +│ │ └── ProgressMonitor.tsx +│ ├── hooks/ # Custom React hooks +│ │ └── useBrotherMachine.ts +│ ├── services/ # BLE communication +│ │ └── BrotherPP1Service.ts +│ ├── types/ # TypeScript types +│ │ └── machine.ts +│ ├── utils/ # Utility functions +│ │ └── penParser.ts +│ ├── App.tsx # Main application component +│ ├── App.css # Application styles +│ └── main.tsx # Entry point +├── public/ # Static assets +├── package.json +├── tsconfig.json +└── vite.config.ts +``` + +## Technology Stack + +- **React 18**: UI framework +- **TypeScript**: Type safety +- **Vite**: Build tool and dev server +- **WebBluetooth API**: BLE communication +- **HTML5 Canvas**: Pattern visualization + +## Protocol + +The application implements the Brother PP1 BLE protocol: +- Service UUID: `a76eb9e0-f3ac-4990-84cf-3a94d2426b2b` +- Write Characteristic: `a76eb9e2-f3ac-4990-84cf-3a94d2426b2b` +- Read Characteristic: `a76eb9e1-f3ac-4990-84cf-3a94d2426b2b` + +See `../emulator/PROTOCOL.md` for detailed protocol documentation. + +## PEN Format + +The application supports PEN format embroidery files: +- Binary format with 4-byte stitch records +- Coordinates in 0.1mm units +- Supports multiple colors and color changes +- Includes jump stitches and flags + +## Browser Compatibility + +WebBluetooth is supported in: +- Chrome 56+ +- Edge 79+ +- Opera 43+ + +**Not supported in:** +- Firefox (no WebBluetooth support) +- Safari (no WebBluetooth support) + +## License + +MIT diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..5e6b472 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,23 @@ +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' +import { defineConfig, globalIgnores } from 'eslint/config' + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + js.configs.recommended, + tseslint.configs.recommended, + reactHooks.configs.flat.recommended, + reactRefresh.configs.vite, + ], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + }, +]) diff --git a/index.html b/index.html new file mode 100644 index 0000000..af88f03 --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ + + + + + + + web + + +
+ + + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..24b57bf --- /dev/null +++ b/package-lock.json @@ -0,0 +1,3223 @@ +{ + "name": "web", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "web", + "version": "0.0.0", + "dependencies": { + "pyodide": "^0.27.4", + "react": "^19.2.0", + "react-dom": "^19.2.0" + }, + "devDependencies": { + "@eslint/js": "^9.39.1", + "@types/node": "^24.10.1", + "@types/react": "^19.2.5", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^5.1.1", + "eslint": "^9.39.1", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.4.24", + "globals": "^16.5.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.46.4", + "vite": "^7.2.4", + "vite-plugin-static-copy": "^3.1.4" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz", + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz", + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz", + "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz", + "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.47", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.47.tgz", + "integrity": "sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==", + "dev": true + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz", + "integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz", + "integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz", + "integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz", + "integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz", + "integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz", + "integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz", + "integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz", + "integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz", + "integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz", + "integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz", + "integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz", + "integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz", + "integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz", + "integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz", + "integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz", + "integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz", + "integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz", + "integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz", + "integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz", + "integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz", + "integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz", + "integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "24.10.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.1.tgz", + "integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==", + "dev": true, + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.7", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz", + "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==", + "dev": true, + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.0.tgz", + "integrity": "sha512-XxXP5tL1txl13YFtrECECQYeZjBZad4fyd3cFV4a19LkAY/bIp9fev3US4S5fDVV2JaYFiKAZ/GRTOLer+mbyQ==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.48.0", + "@typescript-eslint/type-utils": "8.48.0", + "@typescript-eslint/utils": "8.48.0", + "@typescript-eslint/visitor-keys": "8.48.0", + "graphemer": "^1.4.0", + "ignore": "^7.0.0", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.48.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.48.0.tgz", + "integrity": "sha512-jCzKdm/QK0Kg4V4IK/oMlRZlY+QOcdjv89U2NgKHZk1CYTj82/RVSx1mV/0gqCVMJ/DA+Zf/S4NBWNF8GQ+eqQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "8.48.0", + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/typescript-estree": "8.48.0", + "@typescript-eslint/visitor-keys": "8.48.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.48.0.tgz", + "integrity": "sha512-Ne4CTZyRh1BecBf84siv42wv5vQvVmgtk8AuiEffKTUo3DrBaGYZueJSxxBZ8fjk/N3DrgChH4TOdIOwOwiqqw==", + "dev": true, + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.48.0", + "@typescript-eslint/types": "^8.48.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.48.0.tgz", + "integrity": "sha512-uGSSsbrtJrLduti0Q1Q9+BF1/iFKaxGoQwjWOIVNJv0o6omrdyR8ct37m4xIl5Zzpkp69Kkmvom7QFTtue89YQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/visitor-keys": "8.48.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.0.tgz", + "integrity": "sha512-WNebjBdFdyu10sR1M4OXTt2OkMd5KWIL+LLfeH9KhgP+jzfDV/LI3eXzwJ1s9+Yc0Kzo2fQCdY/OpdusCMmh6w==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.48.0.tgz", + "integrity": "sha512-zbeVaVqeXhhab6QNEKfK96Xyc7UQuoFWERhEnj3mLVnUWrQnv15cJNseUni7f3g557gm0e46LZ6IJ4NJVOgOpw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/typescript-estree": "8.48.0", + "@typescript-eslint/utils": "8.48.0", + "debug": "^4.3.4", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.48.0.tgz", + "integrity": "sha512-cQMcGQQH7kwKoVswD1xdOytxQR60MWKM1di26xSUtxehaDs/32Zpqsu5WJlXTtTTqyAVK8R7hvsUnIXRS+bjvA==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.0.tgz", + "integrity": "sha512-ljHab1CSO4rGrQIAyizUS6UGHHCiAYhbfcIZ1zVJr5nMryxlXMVWS3duFPSKvSUbFPwkXMFk1k0EMIjub4sRRQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/project-service": "8.48.0", + "@typescript-eslint/tsconfig-utils": "8.48.0", + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/visitor-keys": "8.48.0", + "debug": "^4.3.4", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.48.0.tgz", + "integrity": "sha512-yTJO1XuGxCsSfIVt1+1UrLHtue8xz16V8apzPYI06W0HbEbEWHxHXgZaAgavIkoh+GeV6hKKd5jm0sS6OYxWXQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.7.0", + "@typescript-eslint/scope-manager": "8.48.0", + "@typescript-eslint/types": "8.48.0", + "@typescript-eslint/typescript-estree": "8.48.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.0.tgz", + "integrity": "sha512-T0XJMaRPOH3+LBbAfzR2jalckP1MSG/L9eUtY0DEzUyVaXJ/t6zN0nR7co5kz0Jko/nkSYCBRkz1djvjajVTTg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "8.48.0", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.1.tgz", + "integrity": "sha512-WQfkSw0QbQ5aJ2CHYw23ZGkqnRwqKHD/KYsMeTkZzPT4Jcf0DcBxBtwMJxnu6E7oxw5+JC6ZAiePgh28uJ1HBA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.28.5", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.47", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.18.0" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.32", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.32.tgz", + "integrity": "sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==", + "dev": true, + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz", + "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "baseline-browser-mapping": "^2.8.25", + "caniuse-lite": "^1.0.30001754", + "electron-to-chromium": "^1.5.249", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.1.4" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001757", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001757.tgz", + "integrity": "sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.5.262", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.262.tgz", + "integrity": "sha512-NlAsMteRHek05jRUxUR0a5jpjYq9ykk6+kO0yRaMi5moe7u0fVIOeQ3Y30A8dIiWFBNUoQGi1ljb1i5VtS9WQQ==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.25.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz", + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.12", + "@esbuild/android-arm": "0.25.12", + "@esbuild/android-arm64": "0.25.12", + "@esbuild/android-x64": "0.25.12", + "@esbuild/darwin-arm64": "0.25.12", + "@esbuild/darwin-x64": "0.25.12", + "@esbuild/freebsd-arm64": "0.25.12", + "@esbuild/freebsd-x64": "0.25.12", + "@esbuild/linux-arm": "0.25.12", + "@esbuild/linux-arm64": "0.25.12", + "@esbuild/linux-ia32": "0.25.12", + "@esbuild/linux-loong64": "0.25.12", + "@esbuild/linux-mips64el": "0.25.12", + "@esbuild/linux-ppc64": "0.25.12", + "@esbuild/linux-riscv64": "0.25.12", + "@esbuild/linux-s390x": "0.25.12", + "@esbuild/linux-x64": "0.25.12", + "@esbuild/netbsd-arm64": "0.25.12", + "@esbuild/netbsd-x64": "0.25.12", + "@esbuild/openbsd-arm64": "0.25.12", + "@esbuild/openbsd-x64": "0.25.12", + "@esbuild/openharmony-arm64": "0.25.12", + "@esbuild/sunos-x64": "0.25.12", + "@esbuild/win32-arm64": "0.25.12", + "@esbuild/win32-ia32": "0.25.12", + "@esbuild/win32-x64": "0.25.12" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz", + "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.39.1", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz", + "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.24.tgz", + "integrity": "sha512-nLHIW7TEq3aLrEYWpVaJ1dRgFR+wLDPN8e8FpYAql/bMV2oBEfC37K0gLEGgv9fy66juNShSMV8OkTqzltcG/w==", + "dev": true, + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz", + "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz", + "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pyodide": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/pyodide/-/pyodide-0.27.7.tgz", + "integrity": "sha512-RUSVJlhQdfWfgO9hVHCiXoG+nVZQRS5D9FzgpLJ/VcgGBLSAKoPL8kTiOikxbHQm1kRISeWUBdulEgO26qpSRA==", + "dependencies": { + "ws": "^8.5.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/react": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz", + "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz", + "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.0" + } + }, + "node_modules/react-refresh": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz", + "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/readdirp/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/rollup": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.3.tgz", + "integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.53.3", + "@rollup/rollup-android-arm64": "4.53.3", + "@rollup/rollup-darwin-arm64": "4.53.3", + "@rollup/rollup-darwin-x64": "4.53.3", + "@rollup/rollup-freebsd-arm64": "4.53.3", + "@rollup/rollup-freebsd-x64": "4.53.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.53.3", + "@rollup/rollup-linux-arm-musleabihf": "4.53.3", + "@rollup/rollup-linux-arm64-gnu": "4.53.3", + "@rollup/rollup-linux-arm64-musl": "4.53.3", + "@rollup/rollup-linux-loong64-gnu": "4.53.3", + "@rollup/rollup-linux-ppc64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-musl": "4.53.3", + "@rollup/rollup-linux-s390x-gnu": "4.53.3", + "@rollup/rollup-linux-x64-gnu": "4.53.3", + "@rollup/rollup-linux-x64-musl": "4.53.3", + "@rollup/rollup-openharmony-arm64": "4.53.3", + "@rollup/rollup-win32-arm64-msvc": "4.53.3", + "@rollup/rollup-win32-ia32-msvc": "4.53.3", + "@rollup/rollup-win32-x64-gnu": "4.53.3", + "@rollup/rollup-win32-x64-msvc": "4.53.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.48.0.tgz", + "integrity": "sha512-fcKOvQD9GUn3Xw63EgiDqhvWJ5jsyZUaekl3KVpGsDJnN46WJTe3jWxtQP9lMZm1LJNkFLlTaWAxK2vUQR+cqw==", + "dev": true, + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.48.0", + "@typescript-eslint/parser": "8.48.0", + "@typescript-eslint/typescript-estree": "8.48.0", + "@typescript-eslint/utils": "8.48.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/vite": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.2.4.tgz", + "integrity": "sha512-NL8jTlbo0Tn4dUEXEsUg8KeyG/Lkmc4Fnzb8JXN/Ykm9G4HNImjtABMJgkQoVjOBN/j2WAwDTRytdqJbZsah7w==", + "dev": true, + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite-plugin-static-copy": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/vite-plugin-static-copy/-/vite-plugin-static-copy-3.1.4.tgz", + "integrity": "sha512-iCmr4GSw4eSnaB+G8zc2f4dxSuDjbkjwpuBLLGvQYR9IW7rnDzftnUjOH5p4RYR+d4GsiBqXRvzuFhs5bnzVyw==", + "dev": true, + "dependencies": { + "chokidar": "^3.6.0", + "p-map": "^7.0.3", + "picocolors": "^1.1.1", + "tinyglobby": "^0.2.15" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ws": { + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.13.tgz", + "integrity": "sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..aedf1ce --- /dev/null +++ b/package.json @@ -0,0 +1,32 @@ +{ + "name": "web", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite --host 0.0.0.0", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview" + }, + "dependencies": { + "react": "^19.2.0", + "react-dom": "^19.2.0", + "pyodide": "^0.27.4" + }, + "devDependencies": { + "@eslint/js": "^9.39.1", + "@types/node": "^24.10.1", + "@types/react": "^19.2.5", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^5.1.1", + "eslint": "^9.39.1", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.4.24", + "globals": "^16.5.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.46.4", + "vite": "^7.2.4", + "vite-plugin-static-copy": "^3.1.4" + } +} diff --git a/public/pystitch-1.0.0-py3-none-any.whl b/public/pystitch-1.0.0-py3-none-any.whl new file mode 100644 index 0000000000000000000000000000000000000000..a91b9afb03dca6bcdfae0bc515b18a6115a8d187 GIT binary patch literal 118293 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

*``ipNa56s6Rsrlwg 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 E2SQg6k^lez literal 0 HcmV?d00001 diff --git a/public/vite.svg b/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/App.css b/src/App.css new file mode 100644 index 0000000..7ab2332 --- /dev/null +++ b/src/App.css @@ -0,0 +1,645 @@ +:root { + --primary-color: #0066cc; + --secondary-color: #6c757d; + --danger-color: #dc3545; + --success-color: #28a745; + --warning-color: #ffc107; + --info-color: #17a2b8; + --background: #f5f5f5; + --panel-background: #ffffff; + --border-color: #dee2e6; + --text-color: #212529; + --text-muted: #6c757d; +} + +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + background-color: var(--background); + color: var(--text-color); +} + +.app { + min-height: 100vh; + display: flex; + flex-direction: column; +} + +.app-header { + background-color: var(--panel-background); + padding: 1.5rem 2rem; + border-bottom: 1px solid var(--border-color); + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +.app-header h1 { + font-size: 1.75rem; + font-weight: 600; + margin-bottom: 0.5rem; +} + +.error-message { + background-color: #f8d7da; + color: #721c24; + padding: 0.75rem 1rem; + border-radius: 4px; + margin-top: 1rem; + border: 1px solid #f5c6cb; +} + +.app-content { + flex: 1; + display: grid; + grid-template-columns: 400px 1fr; + gap: 1.5rem; + padding: 1.5rem; + max-width: 1600px; + width: 100%; + margin: 0 auto; +} + +.left-panel { + display: flex; + flex-direction: column; + gap: 1.5rem; +} + +.right-panel { + display: flex; + flex-direction: column; +} + +.connection-panel, +.file-upload-panel, +.progress-panel, +.canvas-panel { + background-color: var(--panel-background); + padding: 1.5rem; + border-radius: 8px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +h2 { + font-size: 1.25rem; + font-weight: 600; + margin-bottom: 1rem; + padding-bottom: 0.5rem; + border-bottom: 2px solid var(--border-color); +} + +h3 { + font-size: 1rem; + font-weight: 600; + margin: 1rem 0 0.5rem 0; +} + +.detail-row { + display: flex; + justify-content: space-between; + padding: 0.5rem 0; + border-bottom: 1px solid var(--border-color); +} + +.detail-row:last-child { + border-bottom: none; +} + +.detail-row .label { + font-weight: 500; + color: var(--text-muted); +} + +.detail-row .value { + font-weight: 600; +} + +.status-bar { + display: flex; + align-items: center; + gap: 1rem; + margin-bottom: 1rem; + padding: 0.75rem; + background-color: var(--background); + border-radius: 4px; +} + +.status-indicator { + padding: 0.5rem 1rem; + border-radius: 4px; + font-weight: 600; + font-size: 0.875rem; + text-transform: uppercase; +} + +.status-indicator.status-16 { /* IDLE */ + background-color: #d1ecf1; + color: #0c5460; +} + +.status-indicator.status-17 { /* SEWING_WAIT */ + background-color: #d4edda; + color: #155724; +} + +.status-indicator.status-48 { /* SEWING */ + background-color: #fff3cd; + color: #856404; +} + +.status-indicator.status-49 { /* SEWING_COMPLETE */ + background-color: #d4edda; + color: #155724; +} + +.status-indicator.status-64 { /* COLOR_CHANGE_WAIT */ + background-color: #fff3cd; + color: #856404; +} + +.error-indicator { + background-color: #f8d7da; + color: #721c24; + padding: 0.5rem 1rem; + border-radius: 4px; + font-weight: 600; + font-size: 0.875rem; +} + +.polling-indicator { + color: var(--primary-color); + font-size: 0.75rem; + animation: pulse 1s ease-in-out infinite; +} + +@keyframes pulse { + 0%, 100% { + opacity: 1; + } + 50% { + opacity: 0.3; + } +} + +.connection-actions, +.progress-actions { + display: flex; + gap: 0.75rem; + margin-top: 1rem; + flex-wrap: wrap; +} + +button { + padding: 0.75rem 1.5rem; + border: none; + border-radius: 4px; + font-size: 0.875rem; + font-weight: 600; + cursor: pointer; + transition: all 0.2s; +} + +button:disabled { + opacity: 0.5; + cursor: not-allowed; +} + +.btn-primary { + background-color: var(--primary-color); + color: white; +} + +.btn-primary:hover:not(:disabled) { + background-color: #0052a3; +} + +.btn-secondary { + background-color: var(--secondary-color); + color: white; +} + +.btn-secondary:hover:not(:disabled) { + background-color: #5a6268; +} + +.btn-danger { + background-color: var(--danger-color); + color: white; +} + +.btn-danger:hover:not(:disabled) { + background-color: #c82333; +} + +.file-input { + display: none; +} + +.progress-bar { + height: 8px; + background-color: var(--border-color); + border-radius: 4px; + overflow: hidden; + margin: 1rem 0; +} + +.progress-fill { + height: 100%; + background-color: var(--primary-color); + transition: width 0.3s; +} + +.pattern-canvas { + width: 100%; + height: 600px; + border: 1px solid var(--border-color); + border-radius: 4px; + background-color: #fafafa; +} + +.canvas-placeholder { + display: flex; + align-items: center; + justify-content: center; + height: 600px; + color: var(--text-muted); + font-style: italic; +} + +.status-message { + padding: 1rem; + border-radius: 4px; + margin: 1rem 0; + font-weight: 500; +} + +.status-message.success { + background-color: #d4edda; + color: #155724; + border: 1px solid #c3e6cb; +} + +.status-message.warning { + background-color: #fff3cd; + color: #856404; + border: 1px solid #ffeeba; +} + +.status-message.info { + background-color: #d1ecf1; + color: #0c5460; + border: 1px solid #bee5eb; +} + +/* Color Block Progress Styles */ +.color-blocks { + margin-top: 1.5rem; + padding-top: 1rem; + border-top: 1px solid var(--border-color); +} + +.color-block-list { + display: flex; + flex-direction: column; + gap: 0.5rem; +} + +.color-block-item { + padding: 0.75rem; + border-radius: 4px; + background-color: var(--background); + border: 2px solid transparent; + transition: all 0.3s; +} + +.color-block-item.completed { + border-color: var(--success-color); + background-color: #f0f9f4; +} + +.color-block-item.current { + border-color: var(--primary-color); + background-color: #e7f3ff; + box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2); +} + +.color-block-item.pending { + opacity: 0.6; +} + +.block-header { + display: flex; + align-items: center; + gap: 0.75rem; +} + +.color-swatch { + width: 24px; + height: 24px; + border-radius: 4px; + border: 2px solid var(--border-color); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); +} + +.block-label { + font-weight: 600; + flex: 1; +} + +.block-status { + font-size: 1.25rem; + font-weight: bold; + color: var(--text-muted); +} + +.color-block-item.completed .block-status { + color: var(--success-color); +} + +.color-block-item.current .block-status { + color: var(--primary-color); +} + +.block-stitches { + font-size: 0.875rem; + color: var(--text-muted); +} + +.block-progress-bar { + margin-top: 0.5rem; + height: 4px; + background-color: #fff; + border-radius: 2px; + overflow: hidden; +} + +.block-progress-fill { + height: 100%; + background-color: var(--primary-color); + transition: width 0.3s; +} + +@media (max-width: 1024px) { + .app-content { + grid-template-columns: 1fr; + } +} + +/* ========================================================================== + State-Based UX Safety Styles + ========================================================================== */ + +/* Confirmation Dialog Styles */ +.confirm-dialog-overlay { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.5); + display: flex; + align-items: center; + justify-content: center; + z-index: 1000; +} + +.confirm-dialog { + background-color: var(--panel-background); + border-radius: 8px; + box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); + max-width: 500px; + width: 90%; + margin: 1rem; +} + +.confirm-dialog-danger { + border-top: 4px solid #dc3545; +} + +.confirm-dialog-warning { + border-top: 4px solid #ffc107; +} + +.confirm-dialog-header { + padding: 1.5rem; + border-bottom: 1px solid var(--border-color); +} + +.confirm-dialog-header h3 { + margin: 0; + font-size: 1.25rem; + font-weight: 600; +} + +.confirm-dialog-body { + padding: 1.5rem; +} + +.confirm-dialog-body p { + margin: 0; + line-height: 1.5; + color: var(--text-color); +} + +.confirm-dialog-actions { + padding: 1rem 1.5rem; + display: flex; + gap: 0.75rem; + justify-content: flex-end; + border-top: 1px solid var(--border-color); +} + +/* Enhanced Status Badge */ +.status-badge { + display: flex; + align-items: center; + gap: 0.5rem; + padding: 0.5rem 1rem; + border-radius: 4px; + font-weight: 600; + font-size: 0.875rem; +} + +.status-badge-idle, +.status-badge-info { + background-color: #d1ecf1; + color: #0c5460; + border: 1px solid #bee5eb; +} + +.status-badge-active, +.status-badge-waiting, +.status-badge-warning { + background-color: #fff3cd; + color: #856404; + border: 1px solid #ffeeba; +} + +.status-badge-complete, +.status-badge-success { + background-color: #d4edda; + color: #155724; + border: 1px solid #c3e6cb; +} + +.status-badge-interrupted, +.status-badge-error, +.status-badge-danger { + background-color: #f8d7da; + color: #721c24; + border: 1px solid #f5c6cb; +} + +.status-icon { + font-size: 1.1rem; + line-height: 1; +} + +.status-text { + text-transform: uppercase; + letter-spacing: 0.5px; +} + +/* State Indicator Component */ +.state-indicator { + display: flex; + align-items: center; + gap: 1rem; + padding: 1rem; + border-radius: 8px; + margin: 1rem 0; + border-left: 4px solid transparent; +} + +.state-indicator-idle, +.state-indicator-info { + background-color: #e7f3ff; + border-left-color: #0066cc; +} + +.state-indicator-active, +.state-indicator-waiting, +.state-indicator-warning { + background-color: #fff8e1; + border-left-color: #ffc107; +} + +.state-indicator-complete, +.state-indicator-success { + background-color: #e8f5e9; + border-left-color: #28a745; +} + +.state-indicator-interrupted, +.state-indicator-error, +.state-indicator-danger { + background-color: #ffebee; + border-left-color: #dc3545; +} + +.state-icon { + font-size: 2rem; + line-height: 1; +} + +.state-info { + flex: 1; +} + +.state-label { + font-weight: 600; + font-size: 1rem; + margin-bottom: 0.25rem; +} + +.state-description { + font-size: 0.875rem; + color: #666; +} + +/* Enhanced Progress Visualization */ +.progress-bar { + height: 12px; + background-color: var(--border-color); + border-radius: 6px; + overflow: hidden; + margin: 1rem 0; + position: relative; + box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); +} + +.progress-fill { + height: 100%; + background: linear-gradient(90deg, var(--primary-color), #0052a3); + transition: width 0.3s ease; + position: relative; + overflow: hidden; +} + +.progress-fill::after { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: linear-gradient( + 90deg, + transparent, + rgba(255, 255, 255, 0.3), + transparent + ); + animation: shimmer 2s infinite; +} + +@keyframes shimmer { + 0% { + transform: translateX(-100%); + } + 100% { + transform: translateX(100%); + } +} + +/* Button enhancements for safety */ +button.btn-danger:hover:not(:disabled) { + background-color: #c82333; + box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3); + transform: translateY(-1px); +} + +button.btn-primary:hover:not(:disabled) { + box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3); + transform: translateY(-1px); +} + +button.btn-secondary:hover:not(:disabled) { + box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3); + transform: translateY(-1px); +} + +button:active:not(:disabled) { + transform: translateY(0); +} + +/* Info message styles */ +.status-message.info { + background-color: #d1ecf1; + color: #0c5460; + border: 1px solid #bee5eb; +} + +/* Enhanced visual feedback for disabled state */ +button:disabled { + opacity: 0.5; + cursor: not-allowed; + filter: grayscale(0.3); +} diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..248c4d4 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,107 @@ +import { useState, useEffect } from 'react'; +import { useBrotherMachine } from './hooks/useBrotherMachine'; +import { MachineConnection } from './components/MachineConnection'; +import { FileUpload } from './components/FileUpload'; +import { PatternCanvas } from './components/PatternCanvas'; +import { ProgressMonitor } from './components/ProgressMonitor'; +import type { PesPatternData } from './utils/pystitchConverter'; +import { pyodideLoader } from './utils/pyodideLoader'; +import './App.css'; + +function App() { + const machine = useBrotherMachine(); + const [pesData, setPesData] = useState(null); + const [pyodideReady, setPyodideReady] = useState(false); + const [pyodideError, setPyodideError] = useState(null); + + // Initialize Pyodide on mount + useEffect(() => { + pyodideLoader + .initialize() + .then(() => { + setPyodideReady(true); + console.log('[App] Pyodide initialized successfully'); + }) + .catch((err) => { + setPyodideError(err instanceof Error ? err.message : 'Failed to initialize Python environment'); + console.error('[App] Failed to initialize Pyodide:', err); + }); + }, []); + + // Auto-load cached pattern when available + useEffect(() => { + if (machine.resumedPattern && !pesData) { + console.log('[App] Loading resumed pattern:', machine.resumeFileName); + setPesData(machine.resumedPattern); + } + }, [machine.resumedPattern, pesData, machine.resumeFileName]); + + const handlePatternLoaded = (data: PesPatternData) => { + setPesData(data); + }; + + return ( +

+ ); +} + +export default App; diff --git a/src/assets/react.svg b/src/assets/react.svg new file mode 100644 index 0000000..6c87de9 --- /dev/null +++ b/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/ConfirmDialog.tsx b/src/components/ConfirmDialog.tsx new file mode 100644 index 0000000..9fb27a2 --- /dev/null +++ b/src/components/ConfirmDialog.tsx @@ -0,0 +1,73 @@ +import { useEffect, useCallback } from 'react'; + +interface ConfirmDialogProps { + isOpen: boolean; + title: string; + message: string; + confirmText?: string; + cancelText?: string; + onConfirm: () => void; + onCancel: () => void; + variant?: 'danger' | 'warning'; +} + +export function ConfirmDialog({ + isOpen, + title, + message, + confirmText = 'Confirm', + cancelText = 'Cancel', + onConfirm, + onCancel, + variant = 'warning', +}: ConfirmDialogProps) { + // Handle escape key + const handleEscape = useCallback((e: KeyboardEvent) => { + if (e.key === 'Escape') { + onCancel(); + } + }, [onCancel]); + + useEffect(() => { + if (isOpen) { + document.addEventListener('keydown', handleEscape); + return () => document.removeEventListener('keydown', handleEscape); + } + }, [isOpen, handleEscape]); + + if (!isOpen) return null; + + return ( +
+
e.stopPropagation()} + role="dialog" + aria-labelledby="dialog-title" + aria-describedby="dialog-message" + > +
+

{title}

+
+
+

{message}

+
+
+ + +
+
+
+ ); +} diff --git a/src/components/FileUpload.tsx b/src/components/FileUpload.tsx new file mode 100644 index 0000000..76a62bf --- /dev/null +++ b/src/components/FileUpload.tsx @@ -0,0 +1,136 @@ +import { useState, useCallback } from 'react'; +import { convertPesToPen, type PesPatternData } from '../utils/pystitchConverter'; +import { MachineStatus } from '../types/machine'; +import { canUploadPattern, getMachineStateCategory } from '../utils/machineStateHelpers'; + +interface FileUploadProps { + isConnected: boolean; + machineStatus: MachineStatus; + uploadProgress: number; + onPatternLoaded: (pesData: PesPatternData) => void; + onUpload: (penData: Uint8Array, pesData: PesPatternData, fileName: string) => void; + pyodideReady: boolean; +} + +export function FileUpload({ + isConnected, + machineStatus, + uploadProgress, + onPatternLoaded, + onUpload, + pyodideReady, +}: FileUploadProps) { + const [pesData, setPesData] = useState(null); + const [fileName, setFileName] = useState(''); + const [isLoading, setIsLoading] = useState(false); + + const handleFileChange = useCallback( + async (event: React.ChangeEvent) => { + const file = event.target.files?.[0]; + if (!file) return; + + if (!pyodideReady) { + alert('Python environment is still loading. Please wait...'); + return; + } + + setIsLoading(true); + try { + const data = await convertPesToPen(file); + setPesData(data); + setFileName(file.name); + onPatternLoaded(data); + } catch (err) { + alert( + `Failed to load PES file: ${ + err instanceof Error ? err.message : 'Unknown error' + }` + ); + } finally { + setIsLoading(false); + } + }, + [onPatternLoaded, pyodideReady] + ); + + const handleUpload = useCallback(() => { + if (pesData && fileName) { + onUpload(pesData.penData, pesData, fileName); + } + }, [pesData, fileName, onUpload]); + + return ( +
+

Pattern File

+ +
+ + + + {pesData && ( +
+

Pattern Details

+
+ Total Stitches: + {pesData.stitchCount} +
+
+ Colors: + {pesData.colorCount} +
+
+ Size: + + {((pesData.bounds.maxX - pesData.bounds.minX) / 10).toFixed(1)} x{' '} + {((pesData.bounds.maxY - pesData.bounds.minY) / 10).toFixed(1)} mm + +
+
+ Bounds: + + ({pesData.bounds.minX}, {pesData.bounds.minY}) to ( + {pesData.bounds.maxX}, {pesData.bounds.maxY}) + +
+
+ )} + + {pesData && canUploadPattern(machineStatus) && ( + + )} + + {pesData && !canUploadPattern(machineStatus) && ( +
+ Cannot upload pattern while machine is {getMachineStateCategory(machineStatus)} +
+ )} + + {uploadProgress > 0 && uploadProgress < 100 && ( +
+
+
+ )} +
+
+ ); +} diff --git a/src/components/MachineConnection.tsx b/src/components/MachineConnection.tsx new file mode 100644 index 0000000..d2507dd --- /dev/null +++ b/src/components/MachineConnection.tsx @@ -0,0 +1,134 @@ +import { useState } from 'react'; +import type { MachineInfo } from '../types/machine'; +import { MachineStatus } from '../types/machine'; +import { ConfirmDialog } from './ConfirmDialog'; +import { shouldConfirmDisconnect, getStateVisualInfo } from '../utils/machineStateHelpers'; +import { hasError, getErrorMessage } from '../utils/errorCodeHelpers'; + +interface MachineConnectionProps { + isConnected: boolean; + machineInfo: MachineInfo | null; + machineStatus: MachineStatus; + machineStatusName: string; + machineError: number; + isPolling: boolean; + resumeAvailable: boolean; + resumeFileName: string | null; + onConnect: () => void; + onDisconnect: () => void; + onRefresh: () => void; +} + +export function MachineConnection({ + isConnected, + machineInfo, + machineStatus, + machineStatusName, + machineError, + isPolling, + resumeAvailable, + resumeFileName, + onConnect, + onDisconnect, + onRefresh, +}: MachineConnectionProps) { + const [showDisconnectConfirm, setShowDisconnectConfirm] = useState(false); + + const handleDisconnectClick = () => { + if (shouldConfirmDisconnect(machineStatus)) { + setShowDisconnectConfirm(true); + } else { + onDisconnect(); + } + }; + + const handleConfirmDisconnect = () => { + setShowDisconnectConfirm(false); + onDisconnect(); + }; + + const stateVisual = getStateVisualInfo(machineStatus); + + return ( +
+

Machine Connection

+ + {!isConnected ? ( +
+ +
+ ) : ( +
+
+ + {stateVisual.icon} + {machineStatusName} + + {isPolling && ( + + )} + {hasError(machineError) && ( + {getErrorMessage(machineError)} + )} +
+ + {machineInfo && ( +
+
+ Model: + {machineInfo.modelNumber} +
+
+ Serial: + {machineInfo.serialNumber} +
+
+ Software: + {machineInfo.softwareVersion} +
+
+ Max Area: + + {(machineInfo.maxWidth / 10).toFixed(1)} x{' '} + {(machineInfo.maxHeight / 10).toFixed(1)} mm + +
+
+ MAC: + {machineInfo.macAddress} +
+
+ )} + + {resumeAvailable && resumeFileName && ( +
+ Loaded cached pattern: "{resumeFileName}" +
+ )} + +
+ + +
+
+ )} + + setShowDisconnectConfirm(false)} + variant="danger" + /> +
+ ); +} diff --git a/src/components/PatternCanvas.tsx b/src/components/PatternCanvas.tsx new file mode 100644 index 0000000..8467109 --- /dev/null +++ b/src/components/PatternCanvas.tsx @@ -0,0 +1,284 @@ +import { useEffect, useRef } from 'react'; +import type { PesPatternData } from '../utils/pystitchConverter'; +import { getThreadColor } from '../utils/pystitchConverter'; +import type { SewingProgress, MachineInfo } from '../types/machine'; + +interface PatternCanvasProps { + pesData: PesPatternData | null; + sewingProgress: SewingProgress | null; + machineInfo: MachineInfo | null; +} + +export function PatternCanvas({ pesData, sewingProgress, machineInfo }: PatternCanvasProps) { + const canvasRef = useRef(null); + + useEffect(() => { + if (!canvasRef.current || !pesData) return; + + const canvas = canvasRef.current; + const ctx = canvas.getContext('2d'); + if (!ctx) return; + + // Clear canvas + ctx.clearRect(0, 0, canvas.width, canvas.height); + + const currentStitch = sewingProgress?.currentStitch || 0; + + const { stitches, bounds } = pesData; + const { minX, maxX, minY, maxY } = bounds; + const patternWidth = maxX - minX; + const patternHeight = maxY - minY; + + const padding = 40; + + // Calculate scale based on hoop size if available, otherwise pattern size + let scale: number; + let viewWidth: number; + let viewHeight: number; + + if (machineInfo) { + // Use hoop dimensions to determine scale + viewWidth = machineInfo.maxWidth; + viewHeight = machineInfo.maxHeight; + } else { + // Fallback to pattern dimensions + viewWidth = patternWidth; + viewHeight = patternHeight; + } + + const scaleX = (canvas.width - 2 * padding) / viewWidth; + const scaleY = (canvas.height - 2 * padding) / viewHeight; + scale = Math.min(scaleX, scaleY); + + // Center the view (hoop or pattern) in canvas + // The origin (0,0) should be at the center of the hoop + const offsetX = canvas.width / 2; + const offsetY = canvas.height / 2; + + // Draw grid + ctx.strokeStyle = '#e0e0e0'; + ctx.lineWidth = 1; + const gridSize = 100; // 10mm grid (100 units in 0.1mm) + + // Determine grid bounds based on hoop or pattern + const gridMinX = machineInfo ? -machineInfo.maxWidth / 2 : minX; + const gridMaxX = machineInfo ? machineInfo.maxWidth / 2 : maxX; + const gridMinY = machineInfo ? -machineInfo.maxHeight / 2 : minY; + const gridMaxY = machineInfo ? machineInfo.maxHeight / 2 : maxY; + + for (let x = Math.floor(gridMinX / gridSize) * gridSize; x <= gridMaxX; x += gridSize) { + const canvasX = x * scale + offsetX; + ctx.beginPath(); + ctx.moveTo(canvasX, padding); + ctx.lineTo(canvasX, canvas.height - padding); + ctx.stroke(); + } + for (let y = Math.floor(gridMinY / gridSize) * gridSize; y <= gridMaxY; y += gridSize) { + const canvasY = y * scale + offsetY; + ctx.beginPath(); + ctx.moveTo(padding, canvasY); + ctx.lineTo(canvas.width - padding, canvasY); + ctx.stroke(); + } + + // Draw origin + ctx.strokeStyle = '#888'; + ctx.lineWidth = 2; + ctx.beginPath(); + ctx.moveTo(offsetX - 10, offsetY); + ctx.lineTo(offsetX + 10, offsetY); + ctx.stroke(); + ctx.beginPath(); + ctx.moveTo(offsetX, offsetY - 10); + ctx.lineTo(offsetX, offsetY + 10); + ctx.stroke(); + + // Draw hoop boundary (if machine info available) + if (machineInfo) { + // Machine info stores dimensions in 0.1mm units + const hoopWidth = machineInfo.maxWidth; + const hoopHeight = machineInfo.maxHeight; + + // Hoop is centered at origin (0, 0) + const hoopLeft = -hoopWidth / 2; + const hoopTop = -hoopHeight / 2; + const hoopRight = hoopWidth / 2; + const hoopBottom = hoopHeight / 2; + + // Draw hoop boundary + ctx.strokeStyle = '#2196F3'; + ctx.lineWidth = 3; + ctx.setLineDash([10, 5]); + ctx.strokeRect( + hoopLeft * scale + offsetX, + hoopTop * scale + offsetY, + hoopWidth * scale, + hoopHeight * scale + ); + + // Draw hoop label + ctx.setLineDash([]); + ctx.fillStyle = '#2196F3'; + ctx.font = 'bold 14px sans-serif'; + ctx.fillText( + `Hoop: ${(hoopWidth / 10).toFixed(0)} x ${(hoopHeight / 10).toFixed(0)} mm`, + hoopLeft * scale + offsetX + 10, + hoopTop * scale + offsetY + 25 + ); + } + + // Draw stitches + // stitches is number[][], each stitch is [x, y, command, colorIndex] + const MOVE = 0x10; + + ctx.lineWidth = 1.5; + let lastX = 0; + let lastY = 0; + let threadColor = getThreadColor(pesData, 0); + let currentPosX = 0; + let currentPosY = 0; + + for (let i = 0; i < stitches.length; i++) { + const stitch = stitches[i]; + const x = stitch[0] * scale + offsetX; + const y = stitch[1] * scale + offsetY; + const cmd = stitch[2]; + const colorIndex = stitch[3]; // Color index from PyStitch + + // Update thread color based on stitch's color index + threadColor = getThreadColor(pesData, colorIndex); + + // Track current position for highlighting + if (i === currentStitch) { + currentPosX = x; + currentPosY = y; + } + + if (i > 0) { + const isCompleted = i < currentStitch; + const isCurrent = i === currentStitch; + + if ((cmd & MOVE) !== 0) { + // Draw jump as dashed line + ctx.strokeStyle = isCompleted ? '#cccccc' : '#e8e8e8'; + ctx.setLineDash([3, 3]); + } else { + // Draw stitch as solid line with actual thread color + // Dim pending stitches + if (isCompleted) { + ctx.strokeStyle = threadColor; + ctx.globalAlpha = 1.0; + } else { + ctx.strokeStyle = threadColor; + ctx.globalAlpha = 0.3; + } + ctx.setLineDash([]); + } + + ctx.beginPath(); + ctx.moveTo(lastX, lastY); + ctx.lineTo(x, y); + ctx.stroke(); + ctx.globalAlpha = 1.0; + } + + lastX = x; + lastY = y; + } + + // Draw current position indicator + if (currentStitch > 0 && currentStitch < stitches.length) { + // Draw a pulsing circle at current position + ctx.strokeStyle = '#ff0000'; + ctx.fillStyle = 'rgba(255, 0, 0, 0.3)'; + ctx.lineWidth = 3; + ctx.setLineDash([]); + + ctx.beginPath(); + ctx.arc(currentPosX, currentPosY, 8, 0, 2 * Math.PI); + ctx.fill(); + ctx.stroke(); + + // Draw crosshair + ctx.strokeStyle = '#ff0000'; + ctx.lineWidth = 2; + ctx.beginPath(); + ctx.moveTo(currentPosX - 12, currentPosY); + ctx.lineTo(currentPosX - 3, currentPosY); + ctx.stroke(); + ctx.beginPath(); + ctx.moveTo(currentPosX + 12, currentPosY); + ctx.lineTo(currentPosX + 3, currentPosY); + ctx.stroke(); + ctx.beginPath(); + ctx.moveTo(currentPosX, currentPosY - 12); + ctx.lineTo(currentPosX, currentPosY - 3); + ctx.stroke(); + ctx.beginPath(); + ctx.moveTo(currentPosX, currentPosY + 12); + ctx.lineTo(currentPosX, currentPosY + 3); + ctx.stroke(); + } + + // Draw bounds + ctx.strokeStyle = '#ff0000'; + ctx.lineWidth = 2; + ctx.setLineDash([5, 5]); + ctx.strokeRect( + minX * scale + offsetX, + minY * scale + offsetY, + patternWidth * scale, + patternHeight * scale + ); + + // Draw color legend using actual thread colors + ctx.setLineDash([]); + let legendY = 20; + + // Draw legend for each thread + for (let i = 0; i < pesData.threads.length; i++) { + const color = getThreadColor(pesData, i); + + ctx.fillStyle = color; + ctx.fillRect(10, legendY, 20, 20); + ctx.strokeStyle = '#000'; + ctx.lineWidth = 1; + ctx.strokeRect(10, legendY, 20, 20); + + ctx.fillStyle = '#000'; + ctx.font = '12px sans-serif'; + ctx.fillText( + `Thread ${i + 1}`, + 35, + legendY + 15 + ); + legendY += 25; + } + + // Draw dimensions + ctx.fillStyle = '#000'; + ctx.font = '14px sans-serif'; + ctx.fillText( + `${(patternWidth / 10).toFixed(1)} x ${(patternHeight / 10).toFixed(1)} mm`, + canvas.width - 120, + canvas.height - 10 + ); + }, [pesData, sewingProgress, machineInfo]); + + return ( +
+

Pattern Preview

+ + {!pesData && ( +
+ Load a PES file to preview the pattern +
+ )} +
+ ); +} diff --git a/src/components/ProgressMonitor.tsx b/src/components/ProgressMonitor.tsx new file mode 100644 index 0000000..67b944a --- /dev/null +++ b/src/components/ProgressMonitor.tsx @@ -0,0 +1,310 @@ +import type { PatternInfo, SewingProgress } from '../types/machine'; +import { MachineStatus } from '../types/machine'; +import type { PesPatternData } from '../utils/pystitchConverter'; +import { + canStartSewing, + canStartMaskTrace, + canDeletePattern, + canResumeSewing, + getStateVisualInfo +} from '../utils/machineStateHelpers'; + +interface ProgressMonitorProps { + machineStatus: MachineStatus; + patternInfo: PatternInfo | null; + sewingProgress: SewingProgress | null; + pesData: PesPatternData | null; + onStartMaskTrace: () => void; + onStartSewing: () => void; + onResumeSewing: () => void; + onDeletePattern: () => void; +} + +export function ProgressMonitor({ + machineStatus, + patternInfo, + sewingProgress, + pesData, + onStartMaskTrace, + onStartSewing, + onResumeSewing, + onDeletePattern, +}: ProgressMonitorProps) { + // State indicators + const isSewing = machineStatus === MachineStatus.SEWING; + const isComplete = machineStatus === MachineStatus.SEWING_COMPLETE; + const isColorChange = machineStatus === MachineStatus.COLOR_CHANGE_WAIT; + const isMaskTracing = machineStatus === MachineStatus.MASK_TRACING; + const isMaskTraceComplete = machineStatus === MachineStatus.MASK_TRACE_COMPLETE; + const isMaskTraceWait = machineStatus === MachineStatus.MASK_TRACE_LOCK_WAIT; + + const stateVisual = getStateVisualInfo(machineStatus); + + const progressPercent = patternInfo + ? ((sewingProgress?.currentStitch || 0) / patternInfo.totalStitches) * 100 + : 0; + + // Calculate color block information from pesData + const colorBlocks = pesData ? (() => { + const blocks: Array<{ + colorIndex: number; + threadHex: string; + startStitch: number; + endStitch: number; + stitchCount: number; + }> = []; + + let currentColorIndex = pesData.stitches[0]?.[3] ?? 0; + let blockStartStitch = 0; + + for (let i = 0; i < pesData.stitches.length; i++) { + const stitchColorIndex = pesData.stitches[i][3]; + + // When color changes, save the previous block + if (stitchColorIndex !== currentColorIndex || i === pesData.stitches.length - 1) { + const endStitch = i === pesData.stitches.length - 1 ? i + 1 : i; + blocks.push({ + colorIndex: currentColorIndex, + threadHex: pesData.threads[currentColorIndex]?.hex || '#000000', + startStitch: blockStartStitch, + endStitch: endStitch, + stitchCount: endStitch - blockStartStitch, + }); + + currentColorIndex = stitchColorIndex; + blockStartStitch = i; + } + } + + return blocks; + })() : []; + + // Determine current color block based on current stitch + const currentStitch = sewingProgress?.currentStitch || 0; + const currentBlockIndex = colorBlocks.findIndex( + block => currentStitch >= block.startStitch && currentStitch < block.endStitch + ); + + return ( +
+

Sewing Progress

+ + {patternInfo && ( +
+
+ Total Stitches: + {patternInfo.totalStitches} +
+
+ Estimated Time: + + {Math.floor(patternInfo.totalTime / 60)}: + {(patternInfo.totalTime % 60).toString().padStart(2, '0')} + +
+
+ Speed: + {patternInfo.speed} spm +
+
+ Bounds: + + ({patternInfo.boundLeft}, {patternInfo.boundTop}) to ( + {patternInfo.boundRight}, {patternInfo.boundBottom}) + +
+
+ )} + + {colorBlocks.length > 0 && ( +
+

Color Blocks

+
+ {colorBlocks.map((block, index) => { + const isCompleted = currentStitch >= block.endStitch; + const isCurrent = index === currentBlockIndex; + const isPending = currentStitch < block.startStitch; + + // Calculate progress within current block + let blockProgress = 0; + if (isCurrent) { + blockProgress = ((currentStitch - block.startStitch) / block.stitchCount) * 100; + } else if (isCompleted) { + blockProgress = 100; + } + + return ( +
+
+
+ + Thread {block.colorIndex + 1} + + + {isCompleted ? '✓' : isCurrent ? '→' : '○'} + + + {block.stitchCount} stitches + +
+ {isCurrent && ( +
+
+
+ )} +
+ ); + })} +
+
+ )} + + {sewingProgress && ( +
+
+
+
+ +
+ Current Stitch: + + {sewingProgress.currentStitch} / {patternInfo?.totalStitches || 0} + +
+
+ Elapsed Time: + + {Math.floor(sewingProgress.currentTime / 60)}: + {(sewingProgress.currentTime % 60).toString().padStart(2, '0')} + +
+
+ Position: + + ({(sewingProgress.positionX / 10).toFixed(1)}mm,{' '} + {(sewingProgress.positionY / 10).toFixed(1)}mm) + +
+
+ Progress: + {progressPercent.toFixed(1)}% +
+
+ )} + + {/* State Visual Indicator */} + {patternInfo && ( +
+ {stateVisual.icon} +
+
{stateVisual.label}
+
{stateVisual.description}
+
+
+ )} + +
+ {/* Mask trace waiting for confirmation */} + {isMaskTraceWait && ( +
+ Press button on machine to start mask trace +
+ )} + + {/* Mask trace in progress */} + {isMaskTracing && ( +
+ Mask trace in progress... +
+ )} + + {/* Mask trace complete - waiting for confirmation */} + {isMaskTraceComplete && ( + <> +
+ Mask trace complete! +
+
+ Press button on machine to confirm (or trace again) +
+ {canStartMaskTrace(machineStatus) && ( + + )} + + )} + + {/* Ready to start (pattern uploaded) */} + {machineStatus === MachineStatus.SEWING_WAIT && ( + <> + {canStartMaskTrace(machineStatus) && ( + + )} + {canStartSewing(machineStatus) && ( + + )} + + )} + + {/* Resume sewing for interrupted states */} + {canResumeSewing(machineStatus) && ( + + )} + + {/* Color change needed */} + {isColorChange && ( +
+ Waiting for color change - change thread and press button on machine +
+ )} + + {/* Sewing in progress */} + {isSewing && ( +
+ Sewing in progress... +
+ )} + + {/* Sewing complete */} + {isComplete && ( +
+ Sewing complete! +
+ )} + + {/* Delete pattern button - ONLY show when safe */} + {patternInfo && canDeletePattern(machineStatus) && ( + + )} + + {/* Show warning when delete is unavailable */} + {patternInfo && !canDeletePattern(machineStatus) && ( +
+ Pattern cannot be deleted during active operations +
+ )} +
+
+ ); +} diff --git a/src/hooks/useBrotherMachine.ts b/src/hooks/useBrotherMachine.ts new file mode 100644 index 0000000..350a856 --- /dev/null +++ b/src/hooks/useBrotherMachine.ts @@ -0,0 +1,355 @@ +import { useState, useCallback, useEffect } from "react"; +import { BrotherPP1Service } from "../services/BrotherPP1Service"; +import type { + MachineInfo, + PatternInfo, + SewingProgress, +} from "../types/machine"; +import { MachineStatus, MachineStatusNames } from "../types/machine"; +import { + PatternCacheService, + uuidToString, +} from "../services/PatternCacheService"; +import type { PesPatternData } from "../utils/pystitchConverter"; + +export function useBrotherMachine() { + const [service] = useState(() => new BrotherPP1Service()); + const [isConnected, setIsConnected] = useState(false); + const [machineInfo, setMachineInfo] = useState(null); + const [machineStatus, setMachineStatus] = useState( + MachineStatus.None, + ); + const [machineError, setMachineError] = useState(0); + const [patternInfo, setPatternInfo] = useState(null); + const [sewingProgress, setSewingProgress] = useState( + null, + ); + const [uploadProgress, setUploadProgress] = useState(0); + const [error, setError] = useState(null); + const [isPolling, setIsPolling] = useState(false); + const [resumeAvailable, setResumeAvailable] = useState(false); + const [resumeFileName, setResumeFileName] = useState(null); + const [resumedPattern, setResumedPattern] = useState( + null, + ); + + // Define checkResume first (before connect uses it) + const checkResume = useCallback(async (): Promise => { + try { + console.log("[Resume] Checking for cached pattern..."); + + // Get UUID from machine + const machineUuid = await service.getPatternUUID(); + + console.log( + "[Resume] Machine UUID:", + machineUuid ? uuidToString(machineUuid) : "none", + ); + + if (!machineUuid) { + console.log("[Resume] No pattern loaded on machine"); + setResumeAvailable(false); + setResumeFileName(null); + return null; + } + + // Check if we have this pattern cached + const uuidStr = uuidToString(machineUuid); + const cached = PatternCacheService.getPatternByUUID(uuidStr); + + if (cached) { + console.log("[Resume] Pattern found in cache:", cached.fileName); + console.log("[Resume] Auto-loading cached pattern..."); + setResumeAvailable(true); + setResumeFileName(cached.fileName); + setResumedPattern(cached.pesData); + + // Fetch pattern info from machine + try { + const info = await service.getPatternInfo(); + setPatternInfo(info); + console.log("[Resume] Pattern info loaded from machine"); + } catch (err) { + console.error("[Resume] Failed to load pattern info:", err); + } + + // Return the cached pattern data to be loaded + return cached.pesData; + } else { + console.log("[Resume] Pattern on machine not found in cache"); + setResumeAvailable(false); + setResumeFileName(null); + return null; + } + } catch (err) { + console.error("[Resume] Failed to check resume:", err); + setResumeAvailable(false); + setResumeFileName(null); + return null; + } + }, [service]); + + const connect = useCallback(async () => { + try { + setError(null); + await service.connect(); + setIsConnected(true); + + // Fetch initial machine info and status + const info = await service.getMachineInfo(); + setMachineInfo(info); + + const state = await service.getMachineState(); + setMachineStatus(state.status); + setMachineError(state.error); + + // Check for resume possibility + await checkResume(); + } catch (err) { + console.log(err); + setError(err instanceof Error ? err.message : "Failed to connect"); + setIsConnected(false); + } + }, [service, checkResume]); + + const disconnect = useCallback(async () => { + try { + await service.disconnect(); + setIsConnected(false); + setMachineInfo(null); + setMachineStatus(MachineStatus.None); + setPatternInfo(null); + setSewingProgress(null); + setError(null); + } catch (err) { + setError(err instanceof Error ? err.message : "Failed to disconnect"); + } + }, [service]); + + const refreshStatus = useCallback(async () => { + if (!isConnected) return; + + try { + setIsPolling(true); + const state = await service.getMachineState(); + setMachineStatus(state.status); + setMachineError(state.error); + } catch (err) { + setError(err instanceof Error ? err.message : "Failed to get status"); + } finally { + setIsPolling(false); + } + }, [service, isConnected]); + + const refreshPatternInfo = useCallback(async () => { + if (!isConnected) return; + + try { + const info = await service.getPatternInfo(); + setPatternInfo(info); + } catch (err) { + setError( + err instanceof Error ? err.message : "Failed to get pattern info", + ); + } + }, [service, isConnected]); + + const refreshProgress = useCallback(async () => { + if (!isConnected) return; + + try { + const progress = await service.getSewingProgress(); + setSewingProgress(progress); + } catch (err) { + setError(err instanceof Error ? err.message : "Failed to get progress"); + } + }, [service, isConnected]); + + const loadCachedPattern = + useCallback(async (): Promise => { + if (!resumeAvailable) return null; + + try { + const machineUuid = await service.getPatternUUID(); + if (!machineUuid) return null; + + const uuidStr = uuidToString(machineUuid); + const cached = PatternCacheService.getPatternByUUID(uuidStr); + + if (cached) { + console.log("[Resume] Loading cached pattern:", cached.fileName); + // Refresh pattern info from machine + await refreshPatternInfo(); + return cached.pesData; + } + + return null; + } catch (err) { + setError( + err instanceof Error ? err.message : "Failed to load cached pattern", + ); + return null; + } + }, [service, resumeAvailable, refreshPatternInfo]); + + const uploadPattern = useCallback( + async (penData: Uint8Array, pesData: PesPatternData, fileName: string) => { + if (!isConnected) { + setError("Not connected to machine"); + return; + } + + try { + setError(null); + setUploadProgress(0); + const uuid = await service.uploadPattern(penData, (progress) => { + setUploadProgress(progress); + }); + setUploadProgress(100); + + // Cache the pattern with its UUID + const uuidStr = uuidToString(uuid); + PatternCacheService.savePattern(uuidStr, pesData, fileName); + console.log("[Cache] Saved pattern:", fileName, "with UUID:", uuidStr); + + // Clear resume state since we just uploaded + setResumeAvailable(false); + setResumeFileName(null); + + // Refresh status and pattern info after upload + await refreshStatus(); + await refreshPatternInfo(); + } catch (err) { + setError( + err instanceof Error ? err.message : "Failed to upload pattern", + ); + } + }, + [service, isConnected, refreshStatus, refreshPatternInfo], + ); + + const startMaskTrace = useCallback(async () => { + if (!isConnected) return; + + try { + setError(null); + await service.startMaskTrace(); + await refreshStatus(); + } catch (err) { + setError( + err instanceof Error ? err.message : "Failed to start mask trace", + ); + } + }, [service, isConnected, refreshStatus]); + + const startSewing = useCallback(async () => { + if (!isConnected) return; + + try { + setError(null); + await service.startSewing(); + await refreshStatus(); + } catch (err) { + setError(err instanceof Error ? err.message : "Failed to start sewing"); + } + }, [service, isConnected, refreshStatus]); + + const resumeSewing = useCallback(async () => { + if (!isConnected) return; + + try { + setError(null); + await service.resumeSewing(); + await refreshStatus(); + } catch (err) { + setError(err instanceof Error ? err.message : "Failed to resume sewing"); + } + }, [service, isConnected, refreshStatus]); + + const deletePattern = useCallback(async () => { + if (!isConnected) return; + + try { + setError(null); + await service.deletePattern(); + setPatternInfo(null); + setSewingProgress(null); + await refreshStatus(); + } catch (err) { + setError(err instanceof Error ? err.message : "Failed to delete pattern"); + } + }, [service, isConnected, refreshStatus]); + + // Periodic status monitoring when connected + useEffect(() => { + if (!isConnected) { + return; + } + + // Determine polling interval based on machine status + let pollInterval = 2000; // Default: 2 seconds for idle states + + // Fast polling for active states + if ( + machineStatus === MachineStatus.SEWING || + machineStatus === MachineStatus.MASK_TRACING || + machineStatus === MachineStatus.SEWING_DATA_RECEIVE + ) { + pollInterval = 500; // 500ms for active operations + } else if ( + machineStatus === MachineStatus.COLOR_CHANGE_WAIT || + machineStatus === MachineStatus.MASK_TRACE_LOCK_WAIT || + machineStatus === MachineStatus.SEWING_WAIT + ) { + pollInterval = 1000; // 1 second for waiting states + } + + const interval = setInterval(async () => { + await refreshStatus(); + + // Also refresh progress during sewing + if (machineStatus === MachineStatus.SEWING) { + await refreshProgress(); + } + }, pollInterval); + + return () => clearInterval(interval); + }, [isConnected, machineStatus, refreshStatus, refreshProgress]); + + // Refresh pattern info when status changes to SEWING_WAIT + // (indicates pattern was just uploaded or is ready) + useEffect(() => { + if (!isConnected) return; + + if (machineStatus === MachineStatus.SEWING_WAIT && !patternInfo) { + refreshPatternInfo(); + } + }, [isConnected, machineStatus, patternInfo, refreshPatternInfo]); + + return { + isConnected, + machineInfo, + machineStatus, + machineStatusName: MachineStatusNames[machineStatus] || "Unknown", + machineError, + patternInfo, + sewingProgress, + uploadProgress, + error, + isPolling, + resumeAvailable, + resumeFileName, + resumedPattern, + connect, + disconnect, + refreshStatus, + refreshPatternInfo, + uploadPattern, + startMaskTrace, + startSewing, + resumeSewing, + deletePattern, + checkResume, + loadCachedPattern, + }; +} diff --git a/src/index.css b/src/index.css new file mode 100644 index 0000000..ec2585e --- /dev/null +++ b/src/index.css @@ -0,0 +1,13 @@ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + monospace; +} diff --git a/src/main.tsx b/src/main.tsx new file mode 100644 index 0000000..bef5202 --- /dev/null +++ b/src/main.tsx @@ -0,0 +1,10 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import './index.css' +import App from './App.tsx' + +createRoot(document.getElementById('root')!).render( + + + , +) diff --git a/src/services/BrotherPP1Service.ts b/src/services/BrotherPP1Service.ts new file mode 100644 index 0000000..6bfe4ba --- /dev/null +++ b/src/services/BrotherPP1Service.ts @@ -0,0 +1,452 @@ +import type { + MachineInfo, + PatternInfo, + SewingProgress, +} from "../types/machine"; +import { MachineStatus } from "../types/machine"; + +// BLE Service and Characteristic UUIDs +const SERVICE_UUID = "a76eb9e0-f3ac-4990-84cf-3a94d2426b2b"; +const WRITE_CHAR_UUID = "a76eb9e2-f3ac-4990-84cf-3a94d2426b2b"; +const READ_CHAR_UUID = "a76eb9e1-f3ac-4990-84cf-3a94d2426b2b"; + +// Command IDs (big-endian) +const Commands = { + MACHINE_INFO: 0x0000, + MACHINE_STATE: 0x0001, + SERVICE_COUNT: 0x0100, + PATTERN_UUID_REQUEST: 0x0702, + MASK_TRACE: 0x0704, + LAYOUT_SEND: 0x0705, + EMB_SEWING_INFO_REQUEST: 0x0706, + PATTERN_SEWING_INFO: 0x0707, + EMB_SEWING_DATA_DELETE: 0x0708, + NEEDLE_MODE_INSTRUCTIONS: 0x0709, + EMB_UUID_SEND: 0x070a, + RESUME_FLAG_REQUEST: 0x070b, + RESUME: 0x070c, + START_SEWING: 0x070e, + MASK_TRACE_1: 0x0710, + EMB_ORG_POINT: 0x0800, + MACHINE_SETTING_INFO: 0x0c02, + SEND_DATA_INFO: 0x1200, + SEND_DATA: 0x1201, + CLEAR_ERROR: 0x1300, +}; + +export class BrotherPP1Service { + private device: BluetoothDevice | null = null; + private server: BluetoothRemoteGATTServer | null = null; + private writeCharacteristic: BluetoothRemoteGATTCharacteristic | null = null; + private readCharacteristic: BluetoothRemoteGATTCharacteristic | null = null; + private commandQueue: Array<() => Promise> = []; + private isProcessingQueue = false; + + async connect(): Promise { + this.device = await navigator.bluetooth.requestDevice({ + filters: [{ services: [SERVICE_UUID] }], + }); + + if (!this.device.gatt) { + throw new Error("GATT not available"); + } + console.log("Connecting"); + this.server = await this.device.gatt.connect(); + console.log("Connected"); + const service = await this.server.getPrimaryService(SERVICE_UUID); + console.log("Got primary service"); + + this.writeCharacteristic = await service.getCharacteristic(WRITE_CHAR_UUID); + this.readCharacteristic = await service.getCharacteristic(READ_CHAR_UUID); + + console.log("Connected to Brother PP1 machine"); + + console.log("Send dummy command"); + try { + await this.getMachineInfo(); + console.log("Dummy command success"); + } catch (e) { + console.log(e); + } + } + + async disconnect(): Promise { + // Clear any pending commands + this.commandQueue = []; + this.isProcessingQueue = false; + + if (this.server) { + this.server.disconnect(); + } + this.device = null; + this.server = null; + this.writeCharacteristic = null; + this.readCharacteristic = null; + } + + isConnected(): boolean { + return this.server?.connected ?? false; + } + + /** + * Process the command queue sequentially + */ + private async processQueue(): Promise { + if (this.isProcessingQueue || this.commandQueue.length === 0) { + return; + } + + this.isProcessingQueue = true; + + while (this.commandQueue.length > 0) { + const command = this.commandQueue.shift(); + if (command) { + try { + await command(); + } catch (err) { + console.error("Command queue error:", err); + // Continue processing queue even if one command fails + } + } + } + + this.isProcessingQueue = false; + } + + /** + * Enqueue a Bluetooth command to be executed sequentially + */ + private async enqueueCommand(operation: () => Promise): Promise { + return new Promise((resolve, reject) => { + this.commandQueue.push(async () => { + try { + const result = await operation(); + resolve(result); + } catch (err) { + reject(err); + } + }); + + // Start processing the queue + this.processQueue(); + }); + } + + private async sendCommand( + cmdId: number, + data: Uint8Array = new Uint8Array(), + ): Promise { + // Enqueue the command to ensure sequential execution + return this.enqueueCommand(async () => { + if (!this.writeCharacteristic || !this.readCharacteristic) { + throw new Error("Not connected"); + } + + // Build command with big-endian command ID + const command = new Uint8Array(2 + data.length); + command[0] = (cmdId >> 8) & 0xff; // High byte + command[1] = cmdId & 0xff; // Low byte + command.set(data, 2); + + console.log( + "Sending command:", + Array.from(command) + .map((b) => b.toString(16).padStart(2, "0")) + .join(" "), + ); + console.log("Sending command"); + // Write command and immediately read response + await this.writeCharacteristic.writeValueWithoutResponse(command); + + console.log("delay"); + // Small delay to ensure response is ready + await new Promise((resolve) => setTimeout(resolve, 50)); + console.log("reading response"); + + const responseData = await this.readCharacteristic.readValue(); + const response = new Uint8Array(responseData.buffer); + + console.log( + "Received response:", + Array.from(response) + .map((b) => b.toString(16).padStart(2, "0")) + .join(" "), + ); + + return response; + }); + } + + async getMachineInfo(): Promise { + const response = await this.sendCommand(Commands.MACHINE_INFO); + + // Skip 2-byte command header + const data = response.slice(2); + + const decoder = new TextDecoder("ascii"); + const serialNumber = decoder.decode(data.slice(2, 11)).replace(/\0/g, ""); + const modelCode = decoder.decode(data.slice(39, 50)).replace(/\0/g, ""); + + // Software version (big-endian int16) + const swVersion = (data[0] << 8) | data[1]; + + // BT version (big-endian int16) + const btVersion = (data[24] << 8) | data[25]; + + // Max dimensions (little-endian int16) + const maxWidth = data[29] | (data[30] << 8); + const maxHeight = data[31] | (data[32] << 8); + + // MAC address + const macAddress = Array.from(data.slice(16, 22)) + .map((b) => b.toString(16).padStart(2, "0")) + .join(":") + .toUpperCase(); + + return { + serialNumber, + modelNumber: modelCode, + softwareVersion: `${(swVersion / 100).toFixed(2)}.${data[35]}`, + bluetoothVersion: btVersion, + maxWidth, + maxHeight, + macAddress, + }; + } + + async getMachineState(): Promise<{ status: MachineStatus; error: number }> { + const response = await this.sendCommand(Commands.MACHINE_STATE); + + return { + status: response[2] as MachineStatus, + error: response[4], + }; + } + + async getPatternInfo(): Promise { + const response = await this.sendCommand(Commands.EMB_SEWING_INFO_REQUEST); + const data = response.slice(2); + + const readInt16LE = (offset: number) => + data[offset] | (data[offset + 1] << 8); + const readUInt16LE = (offset: number) => + data[offset] | (data[offset + 1] << 8); + + return { + boundLeft: readInt16LE(0), + boundTop: readInt16LE(2), + boundRight: readInt16LE(4), + boundBottom: readInt16LE(6), + totalTime: readUInt16LE(8), + totalStitches: readUInt16LE(10), + speed: readUInt16LE(12), + }; + } + + async getSewingProgress(): Promise { + const response = await this.sendCommand(Commands.PATTERN_SEWING_INFO); + const data = response.slice(2); + + const readInt16LE = (offset: number) => { + const value = data[offset] | (data[offset + 1] << 8); + // Convert to signed 16-bit integer + return value > 0x7fff ? value - 0x10000 : value; + }; + const readUInt16LE = (offset: number) => + data[offset] | (data[offset + 1] << 8); + + return { + currentStitch: readUInt16LE(0), + currentTime: readInt16LE(2), + stopTime: readInt16LE(4), + positionX: readInt16LE(6), + positionY: readInt16LE(8), + }; + } + + async deletePattern(): Promise { + await this.sendCommand(Commands.EMB_SEWING_DATA_DELETE); + } + + async sendDataInfo(length: number, checksum: number): Promise { + const payload = new Uint8Array(7); + payload[0] = 0x03; // Type + + // Length (little-endian uint32) + payload[1] = length & 0xff; + payload[2] = (length >> 8) & 0xff; + payload[3] = (length >> 16) & 0xff; + payload[4] = (length >> 24) & 0xff; + + // Checksum (little-endian uint16) + payload[5] = checksum & 0xff; + payload[6] = (checksum >> 8) & 0xff; + + const response = await this.sendCommand(Commands.SEND_DATA_INFO, payload); + + if (response[2] !== 0x00) { + throw new Error("Data info rejected"); + } + } + + async sendDataChunk(offset: number, data: Uint8Array): Promise { + const checksum = data.reduce((sum, byte) => (sum + byte) & 0xff, 0); + + const payload = new Uint8Array(4 + data.length + 1); + + // Offset (little-endian uint32) + payload[0] = offset & 0xff; + payload[1] = (offset >> 8) & 0xff; + payload[2] = (offset >> 16) & 0xff; + payload[3] = (offset >> 24) & 0xff; + + payload.set(data, 4); + payload[4 + data.length] = checksum; + + const response = await this.sendCommand(Commands.SEND_DATA, payload); + + // 0x00 = complete, 0x02 = continue + return response[2] === 0x00; + } + + async sendUUID(uuid: Uint8Array): Promise { + const response = await this.sendCommand(Commands.EMB_UUID_SEND, uuid); + + if (response[2] !== 0x00) { + throw new Error("UUID rejected"); + } + } + + async sendLayout( + moveX: number, + moveY: number, + sizeX: number, + sizeY: number, + rotate: number, + flip: number, + frame: number, + ): Promise { + const payload = new Uint8Array(12); + + const writeInt16LE = (offset: number, value: number) => { + payload[offset] = value & 0xff; + payload[offset + 1] = (value >> 8) & 0xff; + }; + + writeInt16LE(0, moveX); + writeInt16LE(2, moveY); + writeInt16LE(4, sizeX); + writeInt16LE(6, sizeY); + writeInt16LE(8, rotate); + payload[10] = flip; + payload[11] = frame; + + await this.sendCommand(Commands.LAYOUT_SEND, payload); + } + + async startMaskTrace(): Promise { + const payload = new Uint8Array([0x01]); + await this.sendCommand(Commands.MASK_TRACE, payload); + } + + async startSewing(): Promise { + await this.sendCommand(Commands.START_SEWING); + } + + async resumeSewing(): Promise { + // Resume uses the same START_SEWING command as initial start + // The machine tracks current position and resumes from there + await this.sendCommand(Commands.START_SEWING); + } + + async uploadPattern( + data: Uint8Array, + onProgress?: (progress: number) => void, + ): Promise { + // Calculate checksum + const checksum = data.reduce((sum, byte) => sum + byte, 0) & 0xffff; + + // Delete existing pattern + await this.deletePattern(); + + // Send data info + await this.sendDataInfo(data.length, checksum); + + // Send data in chunks (max chunk size ~500 bytes to be safe with BLE MTU) + const chunkSize = 500; + let offset = 0; + + while (offset < data.length) { + const chunk = data.slice( + offset, + Math.min(offset + chunkSize, data.length), + ); + const isComplete = await this.sendDataChunk(offset, chunk); + + offset += chunk.length; + + if (onProgress) { + onProgress((offset / data.length) * 100); + } + + if (isComplete) { + break; + } + + // Small delay between chunks + await new Promise((resolve) => setTimeout(resolve, 10)); + } + + // Generate random UUID + const uuid = crypto.getRandomValues(new Uint8Array(16)); + await this.sendUUID(uuid); + + // Send default layout (no transformation) + await this.sendLayout(0, 0, 0, 0, 0, 0, 0); + + console.log( + "Pattern uploaded successfully with UUID:", + Array.from(uuid) + .map((b) => b.toString(16).padStart(2, "0")) + .join(""), + ); + + // Return UUID for caching + return uuid; + } + + /** + * Request the UUID of the pattern currently loaded on the machine + */ + async getPatternUUID(): Promise { + try { + const response = await this.sendCommand(Commands.PATTERN_UUID_REQUEST); + + // Response format: [cmd_high, cmd_low, uuid_bytes...] + // UUID starts at index 2 (16 bytes) + if (response.length < 18) { + // Not enough data for UUID + console.log( + "[BrotherPP1] Response too short for UUID:", + response.length, + ); + return null; + } + + // Extract UUID (16 bytes starting at index 2) + const uuid = response.slice(2, 18); + + // Check if UUID is all zeros (no pattern loaded) + const allZeros = uuid.every((byte) => byte === 0); + if (allZeros) { + console.log("[BrotherPP1] UUID is all zeros, no pattern loaded"); + return null; + } + + return uuid; + } catch (err) { + console.error("[BrotherPP1] Failed to get pattern UUID:", err); + return null; + } + } +} diff --git a/src/services/PatternCacheService.ts b/src/services/PatternCacheService.ts new file mode 100644 index 0000000..b12f5b6 --- /dev/null +++ b/src/services/PatternCacheService.ts @@ -0,0 +1,155 @@ +import type { PesPatternData } from '../utils/pystitchConverter'; + +interface CachedPattern { + uuid: string; + pesData: PesPatternData; + fileName: string; + timestamp: number; +} + +const CACHE_KEY = 'brother_pattern_cache'; + +/** + * Convert UUID Uint8Array to hex string + */ +export function uuidToString(uuid: Uint8Array): string { + return Array.from(uuid).map(b => b.toString(16).padStart(2, '0')).join(''); +} + +/** + * Convert hex string to UUID Uint8Array + */ +export function stringToUuid(str: string): Uint8Array { + const bytes = new Uint8Array(16); + for (let i = 0; i < 16; i++) { + bytes[i] = parseInt(str.substr(i * 2, 2), 16); + } + return bytes; +} + +export class PatternCacheService { + /** + * Save pattern to local storage with its UUID + */ + static savePattern( + uuid: string, + pesData: PesPatternData, + fileName: string + ): void { + try { + // Convert penData Uint8Array to array for JSON serialization + const pesDataWithArrayPenData = { + ...pesData, + penData: Array.from(pesData.penData) as any, + }; + + const cached: CachedPattern = { + uuid, + pesData: pesDataWithArrayPenData, + fileName, + timestamp: Date.now(), + }; + + localStorage.setItem(CACHE_KEY, JSON.stringify(cached)); + console.log('[PatternCache] Saved pattern:', fileName, 'UUID:', uuid); + } catch (err) { + console.error('[PatternCache] Failed to save pattern:', err); + // If quota exceeded, clear and try again + if (err instanceof Error && err.name === 'QuotaExceededError') { + this.clearCache(); + } + } + } + + /** + * Get cached pattern by UUID + */ + static getPatternByUUID(uuid: string): CachedPattern | null { + try { + const cached = localStorage.getItem(CACHE_KEY); + if (!cached) { + return null; + } + + const pattern: CachedPattern = JSON.parse(cached); + + // Check if UUID matches + if (pattern.uuid !== uuid) { + console.log('[PatternCache] UUID mismatch. Cached:', pattern.uuid, 'Requested:', uuid); + return null; + } + + // Restore Uint8Array from array inside pesData + if (Array.isArray(pattern.pesData.penData)) { + pattern.pesData.penData = new Uint8Array(pattern.pesData.penData); + } + + console.log('[PatternCache] Found cached pattern:', pattern.fileName, 'UUID:', uuid); + return pattern; + } catch (err) { + console.error('[PatternCache] Failed to retrieve pattern:', err); + return null; + } + } + + /** + * Get the most recent cached pattern (regardless of UUID) + */ + static getMostRecentPattern(): CachedPattern | null { + try { + const cached = localStorage.getItem(CACHE_KEY); + if (!cached) { + return null; + } + + const pattern: CachedPattern = JSON.parse(cached); + + // Restore Uint8Array from array inside pesData + if (Array.isArray(pattern.pesData.penData)) { + pattern.pesData.penData = new Uint8Array(pattern.pesData.penData); + } + + return pattern; + } catch (err) { + console.error('[PatternCache] Failed to retrieve pattern:', err); + return null; + } + } + + /** + * Check if a pattern with the given UUID exists in cache + */ + static hasPattern(uuid: string): boolean { + const pattern = this.getMostRecentPattern(); + return pattern?.uuid === uuid; + } + + /** + * Clear the pattern cache + */ + static clearCache(): void { + try { + localStorage.removeItem(CACHE_KEY); + console.log('[PatternCache] Cache cleared'); + } catch (err) { + console.error('[PatternCache] Failed to clear cache:', err); + } + } + + /** + * Get cache info for debugging + */ + static getCacheInfo(): { hasCache: boolean; fileName?: string; uuid?: string; age?: number } { + const pattern = this.getMostRecentPattern(); + if (!pattern) { + return { hasCache: false }; + } + + return { + hasCache: true, + fileName: pattern.fileName, + uuid: pattern.uuid, + age: Date.now() - pattern.timestamp, + }; + } +} diff --git a/src/types/machine.ts b/src/types/machine.ts new file mode 100644 index 0000000..81777c5 --- /dev/null +++ b/src/types/machine.ts @@ -0,0 +1,103 @@ +// Brother PP1 Machine Types + +export const MachineStatus = { + Initial: 0x00, + LowerThread: 0x01, + IDLE: 0x10, + SEWING_WAIT: 0x11, + SEWING_DATA_RECEIVE: 0x12, + MASK_TRACE_LOCK_WAIT: 0x20, + MASK_TRACING: 0x21, + MASK_TRACE_COMPLETE: 0x22, + SEWING: 0x30, + SEWING_COMPLETE: 0x31, + SEWING_INTERRUPTION: 0x32, + COLOR_CHANGE_WAIT: 0x40, + PAUSE: 0x41, + STOP: 0x42, + HOOP_AVOIDANCE: 0x50, + HOOP_AVOIDANCEING: 0x51, + RL_RECEIVING: 0x60, + RL_RECEIVED: 0x61, + None: 0xDD, + TryConnecting: 0xFF, +} as const; + +export type MachineStatus = typeof MachineStatus[keyof typeof MachineStatus]; + +export const MachineStatusNames: Record = { + [MachineStatus.Initial]: 'Initial', + [MachineStatus.LowerThread]: 'Lower Thread', + [MachineStatus.IDLE]: 'Idle', + [MachineStatus.SEWING_WAIT]: 'Ready to Sew', + [MachineStatus.SEWING_DATA_RECEIVE]: 'Receiving Data', + [MachineStatus.MASK_TRACE_LOCK_WAIT]: 'Waiting for Mask Trace', + [MachineStatus.MASK_TRACING]: 'Mask Tracing', + [MachineStatus.MASK_TRACE_COMPLETE]: 'Mask Trace Complete', + [MachineStatus.SEWING]: 'Sewing', + [MachineStatus.SEWING_COMPLETE]: 'Complete', + [MachineStatus.SEWING_INTERRUPTION]: 'Interrupted', + [MachineStatus.COLOR_CHANGE_WAIT]: 'Waiting for Color Change', + [MachineStatus.PAUSE]: 'Paused', + [MachineStatus.STOP]: 'Stopped', + [MachineStatus.HOOP_AVOIDANCE]: 'Hoop Avoidance', + [MachineStatus.HOOP_AVOIDANCEING]: 'Hoop Avoidance In Progress', + [MachineStatus.RL_RECEIVING]: 'RL Receiving', + [MachineStatus.RL_RECEIVED]: 'RL Received', + [MachineStatus.None]: 'None', + [MachineStatus.TryConnecting]: 'Connecting', +}; + +export interface MachineInfo { + serialNumber: string; + modelNumber: string; + softwareVersion: string; + bluetoothVersion: number; + maxWidth: number; // in 0.1mm units + maxHeight: number; // in 0.1mm units + macAddress: string; +} + +export interface PatternInfo { + totalStitches: number; + totalTime: number; // seconds + speed: number; // stitches per minute + boundLeft: number; + boundTop: number; + boundRight: number; + boundBottom: number; +} + +export interface SewingProgress { + currentStitch: number; + currentTime: number; // seconds + stopTime: number; + positionX: number; // in 0.1mm units + positionY: number; // in 0.1mm units +} + +export interface PenStitch { + x: number; + y: number; + flags: number; + isJump: boolean; +} + +export interface PenColorBlock { + startStitch: number; + endStitch: number; + colorIndex: number; +} + +export interface PenData { + stitches: PenStitch[]; + colorBlocks: PenColorBlock[]; + totalStitches: number; + colorCount: number; + bounds: { + minX: number; + maxX: number; + minY: number; + maxY: number; + }; +} diff --git a/src/utils/errorCodeHelpers.ts b/src/utils/errorCodeHelpers.ts new file mode 100644 index 0000000..989be88 --- /dev/null +++ b/src/utils/errorCodeHelpers.ts @@ -0,0 +1,100 @@ +/** + * Brother PP1 Protocol Error Codes + * Based on App/Asura.Core/Models/SewingMachineError.cs + */ + +export enum SewingMachineError { + NeedlePositionError = 0x00, + SafetyError = 0x01, + LowerThreadSafetyError = 0x02, + LowerThreadFreeError = 0x03, + RestartError10 = 0x10, + RestartError11 = 0x11, + RestartError12 = 0x12, + RestartError13 = 0x13, + RestartError14 = 0x14, + RestartError15 = 0x15, + RestartError16 = 0x16, + RestartError17 = 0x17, + RestartError18 = 0x18, + RestartError19 = 0x19, + RestartError1A = 0x1A, + RestartError1B = 0x1B, + RestartError1C = 0x1C, + NeedlePlateError = 0x20, + ThreadLeverError = 0x21, + UpperThreadError = 0x60, + LowerThreadError = 0x61, + UpperThreadSewingStartError = 0x62, + PRWiperError = 0x63, + HoopError = 0x70, + NoHoopError = 0x71, + InitialHoopError = 0x72, + RegularInspectionError = 0x80, + Setting = 0x98, + None = 0xDD, + Unknown = 0xEE, + OtherError = 0xFF, +} + +/** + * Human-readable error messages + */ +const ERROR_MESSAGES: Record = { + [SewingMachineError.NeedlePositionError]: 'Needle Position Error', + [SewingMachineError.SafetyError]: 'Safety Error', + [SewingMachineError.LowerThreadSafetyError]: 'Lower Thread Safety Error', + [SewingMachineError.LowerThreadFreeError]: 'Lower Thread Free Error', + [SewingMachineError.RestartError10]: 'Restart Required (0x10)', + [SewingMachineError.RestartError11]: 'Restart Required (0x11)', + [SewingMachineError.RestartError12]: 'Restart Required (0x12)', + [SewingMachineError.RestartError13]: 'Restart Required (0x13)', + [SewingMachineError.RestartError14]: 'Restart Required (0x14)', + [SewingMachineError.RestartError15]: 'Restart Required (0x15)', + [SewingMachineError.RestartError16]: 'Restart Required (0x16)', + [SewingMachineError.RestartError17]: 'Restart Required (0x17)', + [SewingMachineError.RestartError18]: 'Restart Required (0x18)', + [SewingMachineError.RestartError19]: 'Restart Required (0x19)', + [SewingMachineError.RestartError1A]: 'Restart Required (0x1A)', + [SewingMachineError.RestartError1B]: 'Restart Required (0x1B)', + [SewingMachineError.RestartError1C]: 'Restart Required (0x1C)', + [SewingMachineError.NeedlePlateError]: 'Needle Plate Error', + [SewingMachineError.ThreadLeverError]: 'Thread Lever Error', + [SewingMachineError.UpperThreadError]: 'Upper Thread Error', + [SewingMachineError.LowerThreadError]: 'Lower Thread Error', + [SewingMachineError.UpperThreadSewingStartError]: 'Upper Thread Error at Sewing Start', + [SewingMachineError.PRWiperError]: 'PR Wiper Error', + [SewingMachineError.HoopError]: 'Hoop Error', + [SewingMachineError.NoHoopError]: 'No Hoop Detected', + [SewingMachineError.InitialHoopError]: 'Initial Hoop Error', + [SewingMachineError.RegularInspectionError]: 'Regular Inspection Required', + [SewingMachineError.Setting]: 'Settings Error', + [SewingMachineError.Unknown]: 'Unknown Error', + [SewingMachineError.OtherError]: 'Other Error', +}; + +/** + * Get human-readable error message for an error code + */ +export function getErrorMessage(errorCode: number): string | null { + // 0xDD (221) is the default "no error" value + if (errorCode === SewingMachineError.None) { + return null; // No error to display + } + + // Look up known error message + const message = ERROR_MESSAGES[errorCode]; + if (message) { + return message; + } + + // Unknown error code + return `Machine Error ${errorCode} (0x${errorCode.toString(16).toUpperCase().padStart(2, '0')})`; +} + +/** + * Check if error code represents an actual error condition + */ +export function hasError(errorCode: number): boolean { + return errorCode !== SewingMachineError.None; +} diff --git a/src/utils/machineStateHelpers.ts b/src/utils/machineStateHelpers.ts new file mode 100644 index 0000000..b1e8fc2 --- /dev/null +++ b/src/utils/machineStateHelpers.ts @@ -0,0 +1,184 @@ +import { MachineStatus } from '../types/machine'; + +/** + * Machine state categories for safety logic + */ +export const MachineStateCategory = { + IDLE: 'idle', + ACTIVE: 'active', + WAITING: 'waiting', + COMPLETE: 'complete', + INTERRUPTED: 'interrupted', + ERROR: 'error', +} as const; + +export type MachineStateCategoryType = typeof MachineStateCategory[keyof typeof MachineStateCategory]; + +/** + * Categorize a machine status into a semantic safety category + */ +export function getMachineStateCategory(status: MachineStatus): MachineStateCategoryType { + switch (status) { + // IDLE states - safe to perform any action + case MachineStatus.IDLE: + case MachineStatus.SEWING_WAIT: + case MachineStatus.Initial: + case MachineStatus.LowerThread: + return MachineStateCategory.IDLE; + + // ACTIVE states - operation in progress, dangerous to interrupt + case MachineStatus.SEWING: + case MachineStatus.MASK_TRACING: + case MachineStatus.SEWING_DATA_RECEIVE: + case MachineStatus.HOOP_AVOIDANCEING: + return MachineStateCategory.ACTIVE; + + // WAITING states - waiting for user/machine action + case MachineStatus.COLOR_CHANGE_WAIT: + case MachineStatus.MASK_TRACE_LOCK_WAIT: + case MachineStatus.HOOP_AVOIDANCE: + return MachineStateCategory.WAITING; + + // COMPLETE states - operation finished + case MachineStatus.SEWING_COMPLETE: + case MachineStatus.MASK_TRACE_COMPLETE: + case MachineStatus.RL_RECEIVED: + return MachineStateCategory.COMPLETE; + + // INTERRUPTED states - operation paused/stopped + case MachineStatus.PAUSE: + case MachineStatus.STOP: + case MachineStatus.SEWING_INTERRUPTION: + return MachineStateCategory.INTERRUPTED; + + // ERROR/UNKNOWN states + case MachineStatus.None: + case MachineStatus.TryConnecting: + case MachineStatus.RL_RECEIVING: + default: + return MachineStateCategory.ERROR; + } +} + +/** + * Determines if the pattern can be safely deleted in the current state. + * Prevents deletion during active operations (SEWING, MASK_TRACING, etc.) + */ +export function canDeletePattern(status: MachineStatus): boolean { + const category = getMachineStateCategory(status); + // Can only delete in IDLE or COMPLETE states, never during ACTIVE operations + return category === MachineStateCategory.IDLE || + category === MachineStateCategory.COMPLETE; +} + +/** + * Determines if a pattern can be safely uploaded in the current state. + * Only allow uploads when machine is idle. + */ +export function canUploadPattern(status: MachineStatus): boolean { + const category = getMachineStateCategory(status); + // Can only upload in IDLE state + return category === MachineStateCategory.IDLE; +} + +/** + * Determines if sewing can be started in the current state. + * Allows starting from ready state or resuming from interrupted states. + */ +export function canStartSewing(status: MachineStatus): boolean { + // Only in specific ready states + return status === MachineStatus.SEWING_WAIT || + status === MachineStatus.PAUSE || + status === MachineStatus.STOP || + status === MachineStatus.SEWING_INTERRUPTION; +} + +/** + * Determines if mask trace can be started in the current state. + */ +export function canStartMaskTrace(status: MachineStatus): boolean { + // Only when ready or after previous trace + return status === MachineStatus.SEWING_WAIT || + status === MachineStatus.MASK_TRACE_COMPLETE; +} + +/** + * Determines if sewing can be resumed in the current state. + * Only for interrupted operations (PAUSE, STOP, SEWING_INTERRUPTION). + */ +export function canResumeSewing(status: MachineStatus): boolean { + // Only in interrupted states + const category = getMachineStateCategory(status); + return category === MachineStateCategory.INTERRUPTED; +} + +/** + * Determines if disconnect should show a confirmation dialog. + * Confirms if disconnecting during active operation or while waiting. + */ +export function shouldConfirmDisconnect(status: MachineStatus): boolean { + const category = getMachineStateCategory(status); + // Confirm if disconnecting during active operation or waiting for action + return category === MachineStateCategory.ACTIVE || + category === MachineStateCategory.WAITING; +} + +/** + * Visual information for a machine state + */ +export interface StateVisualInfo { + color: string; + icon: string; + label: string; + description: string; +} + +/** + * Get visual styling information for a machine state. + * Returns color, icon, label, and description for UI display. + */ +export function getStateVisualInfo(status: MachineStatus): StateVisualInfo { + const category = getMachineStateCategory(status); + + // Map state category to visual properties + const visualMap: Record = { + [MachineStateCategory.IDLE]: { + color: 'info', + icon: '⭕', + label: 'Ready', + description: 'Machine is idle and ready for operations' + }, + [MachineStateCategory.ACTIVE]: { + color: 'warning', + icon: '▶️', + label: 'Active', + description: 'Operation in progress - do not interrupt' + }, + [MachineStateCategory.WAITING]: { + color: 'warning', + icon: '⏸️', + label: 'Waiting', + description: 'Waiting for user or machine action' + }, + [MachineStateCategory.COMPLETE]: { + color: 'success', + icon: '✅', + label: 'Complete', + description: 'Operation completed successfully' + }, + [MachineStateCategory.INTERRUPTED]: { + color: 'danger', + icon: '⏹️', + label: 'Interrupted', + description: 'Operation paused or stopped' + }, + [MachineStateCategory.ERROR]: { + color: 'danger', + icon: '❌', + label: 'Error', + description: 'Machine in error or unknown state' + } + }; + + return visualMap[category]; +} diff --git a/src/utils/penParser.ts b/src/utils/penParser.ts new file mode 100644 index 0000000..9c112e4 --- /dev/null +++ b/src/utils/penParser.ts @@ -0,0 +1,128 @@ +import type { PenData, PenStitch, PenColorBlock } from '../types/machine'; + +// PEN format flags +const PEN_FEED_DATA = 0x01; // Y-coordinate low byte, bit 0 +const PEN_COLOR_END = 0x03; // X-coordinate low byte, bits 0-2 +const PEN_DATA_END = 0x05; // X-coordinate low byte, bits 0-2 + +export function parsePenData(data: Uint8Array): PenData { + if (data.length < 4 || data.length % 4 !== 0) { + throw new Error(`Invalid PEN data size: ${data.length} bytes`); + } + + const stitches: PenStitch[] = []; + const colorBlocks: PenColorBlock[] = []; + const stitchCount = data.length / 4; + + let currentColorStart = 0; + let currentColor = 0; + let minX = Infinity, maxX = -Infinity; + let minY = Infinity, maxY = -Infinity; + + console.log(`Parsing PEN data: ${data.length} bytes, ${stitchCount} stitches`); + + for (let i = 0; i < stitchCount; i++) { + const offset = i * 4; + + // Extract coordinates (shifted left by 3 bits in PEN format) + const xRaw = data[offset] | (data[offset + 1] << 8); + const yRaw = data[offset + 2] | (data[offset + 3] << 8); + + // Extract flags from low 3 bits + const xFlags = data[offset] & 0x07; + const yFlags = data[offset + 2] & 0x07; + + // Decode coordinates (shift right by 3 to get actual position) + // Using signed 16-bit interpretation + let x = (xRaw >> 3); + let y = (yRaw >> 3); + + // Convert to signed if needed + if (x > 0x7FF) x = x - 0x2000; + if (y > 0x7FF) y = y - 0x2000; + + const stitch: PenStitch = { + x, + y, + flags: (xFlags & 0x07) | (yFlags & 0x07), + isJump: (yFlags & PEN_FEED_DATA) !== 0, + }; + + stitches.push(stitch); + + // Track bounds + if (!stitch.isJump) { + minX = Math.min(minX, x); + maxX = Math.max(maxX, x); + minY = Math.min(minY, y); + maxY = Math.max(maxY, y); + } + + // Check for color change or data end + if (xFlags === PEN_COLOR_END) { + const block: PenColorBlock = { + startStitch: currentColorStart, + endStitch: i, + colorIndex: currentColor, + }; + colorBlocks.push(block); + + console.log( + `Color ${currentColor}: stitches ${currentColorStart}-${i} (${ + i - currentColorStart + 1 + } stitches)` + ); + + currentColor++; + currentColorStart = i + 1; + } else if (xFlags === PEN_DATA_END) { + if (currentColorStart < i) { + const block: PenColorBlock = { + startStitch: currentColorStart, + endStitch: i, + colorIndex: currentColor, + }; + colorBlocks.push(block); + + console.log( + `Color ${currentColor} (final): stitches ${currentColorStart}-${i} (${ + i - currentColorStart + 1 + } stitches)` + ); + + currentColor++; + } + console.log(`Data end marker at stitch ${i}`); + break; + } + } + + const result: PenData = { + stitches, + colorBlocks, + totalStitches: stitches.length, + colorCount: colorBlocks.length, + bounds: { + minX: minX === Infinity ? 0 : minX, + maxX: maxX === -Infinity ? 0 : maxX, + minY: minY === Infinity ? 0 : minY, + maxY: maxY === -Infinity ? 0 : maxY, + }, + }; + + console.log( + `Parsed: ${result.totalStitches} stitches, ${result.colorCount} colors` + ); + console.log(`Bounds: (${result.bounds.minX}, ${result.bounds.minY}) to (${result.bounds.maxX}, ${result.bounds.maxY})`); + + return result; +} + +export function getStitchColor(penData: PenData, stitchIndex: number): number { + for (const block of penData.colorBlocks) { + if (stitchIndex >= block.startStitch && stitchIndex <= block.endStitch) { + return block.colorIndex; + } + } + return -1; +} diff --git a/src/utils/pyodideLoader.ts b/src/utils/pyodideLoader.ts new file mode 100644 index 0000000..7bbd519 --- /dev/null +++ b/src/utils/pyodideLoader.ts @@ -0,0 +1,90 @@ +import { loadPyodide, type PyodideInterface } from "pyodide"; + +export type PyodideState = "not_loaded" | "loading" | "ready" | "error"; + +class PyodideLoader { + private pyodide: PyodideInterface | null = null; + private state: PyodideState = "not_loaded"; + private error: string | null = null; + private loadPromise: Promise | null = null; + + /** + * Get the current Pyodide state + */ + getState(): PyodideState { + return this.state; + } + + /** + * Get the error message if state is 'error' + */ + getError(): string | null { + return this.error; + } + + /** + * Initialize Pyodide and install PyStitch + */ + async initialize(): Promise { + // If already ready, return immediately + if (this.state === "ready" && this.pyodide) { + return this.pyodide; + } + + // If currently loading, wait for the existing promise + if (this.loadPromise) { + return this.loadPromise; + } + + // Start loading + this.state = "loading"; + this.error = null; + + this.loadPromise = (async () => { + try { + console.log("[PyodideLoader] Loading Pyodide..."); + + // Load Pyodide with CDN indexURL for packages + // The core files will be loaded from our bundle, but packages will come from CDN + this.pyodide = await loadPyodide(); + + console.log("[PyodideLoader] Pyodide loaded, loading micropip..."); + + // Load micropip package + /*await this.pyodide.loadPackage('micropip'); + + console.log('[PyodideLoader] Installing PyStitch...'); + + // Install PyStitch using micropip + await this.pyodide.runPythonAsync(` + import micropip + await micropip.install('pystitch') + `);*/ + await this.pyodide.loadPackage("pystitch-1.0.0-py3-none-any.whl"); + + console.log("[PyodideLoader] PyStitch installed successfully"); + + this.state = "ready"; + return this.pyodide; + } catch (err) { + this.state = "error"; + this.error = + err instanceof Error ? err.message : "Unknown error loading Pyodide"; + console.error("[PyodideLoader] Error:", this.error); + throw err; + } + })(); + + return this.loadPromise; + } + + /** + * Get the Pyodide instance (must be initialized first) + */ + getInstance(): PyodideInterface | null { + return this.pyodide; + } +} + +// Export singleton instance +export const pyodideLoader = new PyodideLoader(); diff --git a/src/utils/pystitchConverter.ts b/src/utils/pystitchConverter.ts new file mode 100644 index 0000000..4c31af8 --- /dev/null +++ b/src/utils/pystitchConverter.ts @@ -0,0 +1,233 @@ +import { pyodideLoader } from './pyodideLoader'; + +// PEN format flags +const PEN_FEED_DATA = 0x01; // Y-coordinate low byte, bit 0 (jump) +const PEN_COLOR_END = 0x03; // X-coordinate low byte, bits 0-2 +const PEN_DATA_END = 0x05; // X-coordinate low byte, bits 0-2 + +// Embroidery command constants (from pyembroidery) +const MOVE = 0x10; +const COLOR_CHANGE = 0x40; +const STOP = 0x80; +const END = 0x100; + +export interface PesPatternData { + stitches: number[][]; + threads: Array<{ + color: number; + hex: string; + }>; + penData: Uint8Array; + colorCount: number; + stitchCount: number; + bounds: { + minX: number; + maxX: number; + minY: number; + maxY: number; + }; +} + +/** + * Reads a PES file using PyStitch and converts it to PEN format + */ +export async function convertPesToPen(file: File): Promise { + // Ensure Pyodide is initialized + const pyodide = await pyodideLoader.initialize(); + + // Read the PES file + const buffer = await file.arrayBuffer(); + const uint8Array = new Uint8Array(buffer); + + // Write file to Pyodide virtual filesystem + const filename = '/tmp/pattern.pes'; + pyodide.FS.writeFile(filename, uint8Array); + + // Read the pattern using PyStitch + const result = await pyodide.runPythonAsync(` +import pystitch + +# Read the PES file +pattern = pystitch.read('${filename}') + +# PyStitch groups stitches by color blocks using get_as_stitchblock +# This returns tuples of (thread, stitches_list) for each color block +stitches_with_colors = [] +block_index = 0 + +# Iterate through stitch blocks +# Each block is a tuple containing (thread, stitch_list) +for block in pattern.get_as_stitchblock(): + if isinstance(block, tuple): + # Extract thread and stitch list from tuple + thread_obj = None + stitches_list = None + + for elem in block: + # Check if this is the thread object (has color or hex_color attributes) + if hasattr(elem, 'color') or hasattr(elem, 'hex_color'): + thread_obj = elem + # Check if this is the stitch list + elif isinstance(elem, list) and len(elem) > 0 and isinstance(elem[0], list): + stitches_list = elem + + if stitches_list: + # Find the index of this thread in the threadlist + thread_index = block_index + if thread_obj and hasattr(pattern, 'threadlist'): + for i, t in enumerate(pattern.threadlist): + if t is thread_obj: + thread_index = i + break + + for stitch in stitches_list: + # stitch is [x, y, command] + stitches_with_colors.append([stitch[0], stitch[1], stitch[2], thread_index]) + + block_index += 1 + +# Convert to JSON-serializable format +{ + 'stitches': stitches_with_colors, + 'threads': [ + { + 'color': thread.color if hasattr(thread, 'color') else 0, + 'hex': thread.hex_color() if hasattr(thread, 'hex_color') else '#000000' + } + for thread in pattern.threadlist + ], + 'thread_count': len(pattern.threadlist), + 'stitch_count': len(stitches_with_colors), + 'block_count': block_index +} + `); + + // Convert Python result to JavaScript + const data = result.toJs({ dict_converter: Object.fromEntries }); + + // Clean up virtual file + try { + pyodide.FS.unlink(filename); + } catch (e) { + // Ignore errors + } + + // Extract stitches and validate + const stitches: number[][] = Array.from(data.stitches).map((stitch: any) => + Array.from(stitch) as number[] + ); + + if (!stitches || stitches.length === 0) { + throw new Error('Invalid PES file or no stitches found'); + } + + // Extract thread data + const threads = data.threads.map((thread: any) => ({ + color: thread.color || 0, + hex: thread.hex || '#000000', + })); + + // Track bounds + let minX = Infinity; + let maxX = -Infinity; + let minY = Infinity; + let maxY = -Infinity; + + // Convert to PEN format + const penStitches: number[] = []; + let currentColor = stitches[0]?.[3] ?? 0; // Track current color using stitch color index + + for (let i = 0; i < stitches.length; i++) { + const stitch = stitches[i]; + const x = Math.round(stitch[0]); + const y = Math.round(stitch[1]); + const cmd = stitch[2]; + const stitchColor = stitch[3]; // Color index from PyStitch + + // Track bounds for non-jump stitches + if ((cmd & MOVE) === 0) { + minX = Math.min(minX, x); + maxX = Math.max(maxX, x); + minY = Math.min(minY, y); + maxY = Math.max(maxY, y); + } + + // Encode coordinates with flags in low 3 bits + // Shift coordinates left by 3 bits to make room for flags + let xEncoded = (x << 3) & 0xFFFF; + let yEncoded = (y << 3) & 0xFFFF; + + // Add jump flag if this is a move command + if ((cmd & MOVE) !== 0) { + yEncoded |= PEN_FEED_DATA; + } + + // Check for color change by comparing stitch color index + // Mark the LAST stitch of the previous color with PEN_COLOR_END + const nextStitch = stitches[i + 1]; + const nextStitchColor = nextStitch?.[3]; + + if (nextStitchColor !== undefined && nextStitchColor !== stitchColor) { + // This is the last stitch before a color change + xEncoded = (xEncoded & 0xFFF8) | PEN_COLOR_END; + currentColor = nextStitchColor; + } + + // Add stitch as 4 bytes: [X_low, X_high, Y_low, Y_high] + penStitches.push( + xEncoded & 0xFF, + (xEncoded >> 8) & 0xFF, + yEncoded & 0xFF, + (yEncoded >> 8) & 0xFF + ); + + // Check for end command + if ((cmd & END) !== 0) { + // Mark as data end + const lastIdx = penStitches.length - 4; + penStitches[lastIdx] = (penStitches[lastIdx] & 0xF8) | PEN_DATA_END; + break; + } + } + + // Mark the last stitch with DATA_END if not already marked + if (penStitches.length > 0) { + const lastIdx = penStitches.length - 4; + if ((penStitches[lastIdx] & 0x07) !== PEN_DATA_END) { + penStitches[lastIdx] = (penStitches[lastIdx] & 0xF8) | PEN_DATA_END; + } + } + + const penData = new Uint8Array(penStitches); + + return { + stitches, + threads, + penData, + colorCount: data.thread_count, + stitchCount: data.stitch_count, + bounds: { + minX: minX === Infinity ? 0 : minX, + maxX: maxX === -Infinity ? 0 : maxX, + minY: minY === Infinity ? 0 : minY, + maxY: maxY === -Infinity ? 0 : maxY, + }, + }; +} + +/** + * Get thread color from pattern data + */ +export function getThreadColor(data: PesPatternData, colorIndex: number): string { + if (!data.threads || colorIndex < 0 || colorIndex >= data.threads.length) { + // Default colors if not specified or index out of bounds + const defaultColors = [ + '#FF0000', '#00FF00', '#0000FF', '#FFFF00', + '#FF00FF', '#00FFFF', '#FFA500', '#800080', + ]; + const safeIndex = Math.max(0, colorIndex) % defaultColors.length; + return defaultColors[safeIndex]; + } + + return data.threads[colorIndex]?.hex || '#000000'; +} diff --git a/src/web-bluetooth.d.ts b/src/web-bluetooth.d.ts new file mode 100644 index 0000000..e9a191c --- /dev/null +++ b/src/web-bluetooth.d.ts @@ -0,0 +1,125 @@ +// WebBluetooth API type declarations +// https://webbluetoothcg.github.io/web-bluetooth/ + +interface BluetoothRemoteGATTServer { + device: BluetoothDevice; + connected: boolean; + connect(): Promise; + disconnect(): void; + getPrimaryService(service: BluetoothServiceUUID): Promise; + getPrimaryServices(service?: BluetoothServiceUUID): Promise; +} + +interface BluetoothDevice extends EventTarget { + id: string; + name?: string; + gatt?: BluetoothRemoteGATTServer; + watchingAdvertisements: boolean; + watchAdvertisements(options?: WatchAdvertisementsOptions): Promise; + unwatchAdvertisements(): void; + forget(): Promise; + addEventListener( + type: 'gattserverdisconnected' | 'advertisementreceived', + listener: EventListenerOrEventListenerObject, + options?: boolean | AddEventListenerOptions + ): void; +} + +interface WatchAdvertisementsOptions { + signal?: AbortSignal; +} + +interface BluetoothRemoteGATTService extends EventTarget { + device: BluetoothDevice; + uuid: string; + isPrimary: boolean; + getCharacteristic(characteristic: BluetoothCharacteristicUUID): Promise; + getCharacteristics(characteristic?: BluetoothCharacteristicUUID): Promise; + getIncludedService(service: BluetoothServiceUUID): Promise; + getIncludedServices(service?: BluetoothServiceUUID): Promise; +} + +interface BluetoothRemoteGATTCharacteristic extends EventTarget { + service: BluetoothRemoteGATTService; + uuid: string; + properties: BluetoothCharacteristicProperties; + value?: DataView; + getDescriptor(descriptor: BluetoothDescriptorUUID): Promise; + getDescriptors(descriptor?: BluetoothDescriptorUUID): Promise; + readValue(): Promise; + writeValue(value: BufferSource): Promise; + writeValueWithResponse(value: BufferSource): Promise; + writeValueWithoutResponse(value: BufferSource): Promise; + startNotifications(): Promise; + stopNotifications(): Promise; + addEventListener( + type: 'characteristicvaluechanged', + listener: EventListenerOrEventListenerObject, + options?: boolean | AddEventListenerOptions + ): void; +} + +interface BluetoothCharacteristicProperties { + broadcast: boolean; + read: boolean; + writeWithoutResponse: boolean; + write: boolean; + notify: boolean; + indicate: boolean; + authenticatedSignedWrites: boolean; + reliableWrite: boolean; + writableAuxiliaries: boolean; +} + +interface BluetoothRemoteGATTDescriptor { + characteristic: BluetoothRemoteGATTCharacteristic; + uuid: string; + value?: DataView; + readValue(): Promise; + writeValue(value: BufferSource): Promise; +} + +interface RequestDeviceOptions { + filters?: BluetoothLEScanFilter[]; + optionalServices?: BluetoothServiceUUID[]; + acceptAllDevices?: boolean; +} + +interface BluetoothLEScanFilter { + services?: BluetoothServiceUUID[]; + name?: string; + namePrefix?: string; + manufacturerData?: BluetoothManufacturerDataFilter[]; + serviceData?: BluetoothServiceDataFilter[]; +} + +interface BluetoothManufacturerDataFilter { + companyIdentifier: number; + dataPrefix?: BufferSource; + mask?: BufferSource; +} + +interface BluetoothServiceDataFilter { + service: BluetoothServiceUUID; + dataPrefix?: BufferSource; + mask?: BufferSource; +} + +type BluetoothServiceUUID = number | string; +type BluetoothCharacteristicUUID = number | string; +type BluetoothDescriptorUUID = number | string; + +interface Bluetooth extends EventTarget { + getAvailability(): Promise; + requestDevice(options?: RequestDeviceOptions): Promise; + getDevices(): Promise; + addEventListener( + type: 'availabilitychanged', + listener: EventListenerOrEventListenerObject, + options?: boolean | AddEventListenerOptions + ): void; +} + +interface Navigator { + bluetooth: Bluetooth; +} diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..a9b5a59 --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "ES2022", + "useDefineForClassFields": true, + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "module": "ESNext", + "types": ["vite/client"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["src"] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..1ffef60 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,7 @@ +{ + "files": [], + "references": [ + { "path": "./tsconfig.app.json" }, + { "path": "./tsconfig.node.json" } + ] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..8a67f62 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2023", + "lib": ["ES2023"], + "module": "ESNext", + "types": ["node"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..8fb08db --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,37 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' +import { viteStaticCopy } from 'vite-plugin-static-copy' +import { dirname, join } from 'path' +import { fileURLToPath } from 'url' + +const PYODIDE_EXCLUDE = [ + '!**/*.{md,html}', + '!**/*.d.ts', + '!**/node_modules', +] + +function viteStaticCopyPyodide() { + const pyodideDir = dirname(fileURLToPath(import.meta.resolve('pyodide'))) + return viteStaticCopy({ + targets: [ + { + src: [join(pyodideDir, '*').replace(/\\/g, '/')].concat(PYODIDE_EXCLUDE), + dest: 'assets', + }, + ], + }) +} + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react(), viteStaticCopyPyodide()], + optimizeDeps: { + exclude: ['pyodide'], + }, + server: { + headers: { + 'Cross-Origin-Opener-Policy': 'same-origin', + 'Cross-Origin-Embedder-Policy': 'require-corp', + }, + }, +})