@untemps/react-vocal 2.0.0-beta.5 → 2.0.0-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/README.md +4 -1
  3. package/dist/index.es.js +99 -78
  4. package/dist/index.js +2 -2
  5. package/dist/index.umd.js +2 -2
  6. package/package.json +7 -1
  7. package/.github/workflows/publish.yml +0 -32
  8. package/.husky/commit-msg +0 -1
  9. package/.husky/pre-commit +0 -1
  10. package/.prettierignore +0 -3
  11. package/.prettierrc +0 -29
  12. package/CLAUDE.md +0 -59
  13. package/assets/icon-idle.png +0 -0
  14. package/assets/icon-listening.png +0 -0
  15. package/assets/microphone.png +0 -0
  16. package/assets/react-vocal.png +0 -0
  17. package/commitlint.config.js +0 -7
  18. package/dev/index.html +0 -24
  19. package/dev/package.json +0 -18
  20. package/dev/public/index.html +0 -24
  21. package/dev/src/index.jsx +0 -58
  22. package/dev/vite.config.js +0 -10
  23. package/dev/yarn.lock +0 -325
  24. package/dist/index.es.js.map +0 -1
  25. package/dist/index.js.map +0 -1
  26. package/dist/index.umd.js.map +0 -1
  27. package/src/components/Icon.jsx +0 -24
  28. package/src/components/Vocal.jsx +0 -233
  29. package/src/components/__tests__/Icon.test.jsx +0 -38
  30. package/src/components/__tests__/Vocal.test.jsx +0 -611
  31. package/src/components/__tests__/VocalWithMockedUseVocal.test.jsx +0 -38
  32. package/src/components/__tests__/__snapshots__/Icon.test.jsx.snap +0 -21
  33. package/src/components/__tests__/__snapshots__/Vocal.test.jsx.snap +0 -28
  34. package/src/hooks/__tests__/useCommands.test.js +0 -115
  35. package/src/hooks/__tests__/useTimeout.test.js +0 -69
  36. package/src/hooks/__tests__/useVocal.test.js +0 -202
  37. package/src/hooks/useCommands.js +0 -75
  38. package/src/hooks/useTimeout.js +0 -21
  39. package/src/hooks/useVocal.js +0 -56
  40. package/src/index.js +0 -7
  41. package/vite.config.js +0 -36
  42. package/vitest.setup.js +0 -77
package/.prettierrc DELETED
@@ -1,29 +0,0 @@
1
- {
2
- "printWidth": 120,
3
- "useTabs": true,
4
- "tabWidth": 4,
5
- "singleQuote": true,
6
- "semi": false,
7
- "trailingComma": "es5",
8
- "bracketSpacing": true,
9
- "overrides": [
10
- {
11
- "files": "./**/*.js",
12
- "options": {
13
- "parser": "babel"
14
- }
15
- },
16
- {
17
- "files": "./**/*.json",
18
- "options": {
19
- "parser": "json"
20
- }
21
- },
22
- {
23
- "files": ".prettierrc",
24
- "options": {
25
- "parser": "json"
26
- }
27
- }
28
- ]
29
- }
package/CLAUDE.md DELETED
@@ -1,59 +0,0 @@
1
- # CLAUDE.md
2
-
3
- This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
4
-
5
- ## Commands
6
-
7
- ```bash
8
- yarn test # watch mode (Vitest)
9
- yarn test:ci # CI mode with coverage (also runs in pre-commit hook)
10
- yarn build # build CJS + ES + UMD to dist/ (Vite library mode)
11
- yarn dev # dev server at http://localhost:10001/ (separate dev/ package)
12
- yarn prettier # format all JS files and stage tracked changes
13
- ```
14
-
15
- Run a single test file:
16
- ```bash
17
- yarn vitest src/hooks/__tests__/useVocal.test.js
18
- ```
19
-
20
- Build formats defined in `vite.config.js` `build.lib`: `cjs` → `dist/index.js`, `es` → `dist/index.es.js`, `umd` → `dist/index.umd.js`.
21
-
22
- ## Architecture
23
-
24
- React library wrapping the [Web Speech API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Speech_API) via `@untemps/vocal` (the `SpeechRecognitionWrapper` class).
25
-
26
- ### Public API (`src/index.js`)
27
-
28
- - **`Vocal`** (default export) — the component
29
- - **`useVocal`** — named export, the hook
30
- - **`isSupported`** — boolean re-exported from `@untemps/vocal`
31
-
32
- ### Hook layer (`src/hooks/`)
33
-
34
- | Hook | Role |
35
- |------|------|
36
- | `useVocal` | Creates/manages a `SpeechRecognitionWrapper` instance in a ref. Returns `[ref, { start, stop, abort, subscribe, unsubscribe, clean }]`. Instance is re-created when `lang` or `grammars` change. |
37
- | `useCommands` | Fuzzy-matches a speech result string against a `commands` map using **fuse.js** (default score threshold `0.4` — lower = stricter). Keys are lowercased. |
38
- | `useTimeout` | Manages the recognition timeout: starts on `start` event, pauses on `speechstart`, restarts on `speechend`, fires `_onEnd` on expiry. |
39
-
40
- ### Component (`src/components/Vocal.jsx`)
41
-
42
- Composes the three hooks above. Three render modes depending on `children`:
43
- - **function** `(start, stop, isStarted) => element` — full control
44
- - **React element** — receives `onClick` injected via `cloneElement`
45
- - **no children** — renders the default `<Icon>` button
46
-
47
- All props have default values in the function signature (React 19: `defaultProps` no longer applied to function components). No `propTypes` — removed as deprecated in React 19.
48
-
49
- The `__rsInstance` prop (undocumented) injects a custom `SpeechRecognitionWrapper` instance, used exclusively in tests.
50
-
51
- ### Testing
52
-
53
- `vitest.setup.js` globally mocks `SpeechRecognition`, `Permissions`, `MediaDevices`, and `SpeechGrammarList`. The mock exposes a custom `say(sentence)` method that fires the full `speechstart → result/nomatch → speechend` event sequence synchronously — use it to simulate recognition in tests.
54
-
55
- Vitest globals are enabled (`globals: true`) — `describe`, `it`, `expect`, `vi` available without imports in test files.
56
-
57
- ## Commit convention
58
-
59
- Angular Conventional Commits (`feat`, `fix`, `chore`, `docs`, etc.). Enforced by commitlint on `commit-msg` hook.
Binary file
Binary file
Binary file
Binary file
@@ -1,7 +0,0 @@
1
- module.exports = {
2
- extends: ['@commitlint/config-conventional'],
3
- rules: {
4
- 'subject-case': [2, 'always', ['sentence-case']],
5
- 'scope-case': [2, 'always', ['lower-case', 'upper-case']]
6
- },
7
- }
package/dev/index.html DELETED
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1" />
6
- <meta name="theme-color" content="#000000" />
7
- <meta name="description" content="react-vocal" />
8
- <title>react-vocal</title>
9
- <style>
10
- * {
11
- font-family: Arial, sans-serif;
12
- font-size: 12px;
13
- }
14
- body {
15
- padding: 32px;
16
- }
17
- </style>
18
- </head>
19
- <body>
20
- <noscript>You need to enable JavaScript to run this app.</noscript>
21
- <div id="root"></div>
22
- <script type="module" src="/src/index.jsx"></script>
23
- </body>
24
- </html>
package/dev/package.json DELETED
@@ -1,18 +0,0 @@
1
- {
2
- "name": "react-vocal-demo",
3
- "version": "1.0.0",
4
- "private": true,
5
- "scripts": {
6
- "dev": "vite",
7
- "build": "vite build",
8
- "preview": "vite preview"
9
- },
10
- "dependencies": {
11
- "react": "^19.2.5",
12
- "react-dom": "^19.2.5"
13
- },
14
- "devDependencies": {
15
- "@vitejs/plugin-react": "^6.0.1",
16
- "vite": "^8.0.10"
17
- }
18
- }
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1" />
6
- <meta name="theme-color" content="#000000" />
7
- <meta name="description" content="Web site created using create-react-app" />
8
- <title>react-vocal</title>
9
- <script src="./index.js" type="module"></script>
10
- <style>
11
- * {
12
- font-family: Arial,sans-serif;
13
- font-size: 12px;
14
- }
15
- body {
16
- padding: 32px;
17
- }
18
- </style>
19
- </head>
20
- <body>
21
- <noscript>You need to enable JavaScript to run this app.</noscript>
22
- <div id="root"></div>
23
- </body>
24
- </html>
package/dev/src/index.jsx DELETED
@@ -1,58 +0,0 @@
1
- import React, { useMemo, useState } from 'react'
2
- import { createRoot } from 'react-dom/client'
3
-
4
- import Vocal from '../../src'
5
-
6
- const COMMANDS = {
7
- rouge: 'red',
8
- bleu: 'blue',
9
- vert: 'green',
10
- jaune: 'yellow',
11
- }
12
-
13
- const App = () => {
14
- const [logs, setLogs] = useState('')
15
- const [borderColor, setBorderColor] = useState()
16
-
17
- const _log = (value) => setLogs((prev) => `${prev}${prev.length > 0 ? '\n' : ''} ----- ${value}`)
18
-
19
- // Memoized to avoid recreating the commands object (and re-indexing useCommands) on every render
20
- const commands = useMemo(
21
- () =>
22
- Object.fromEntries(
23
- Object.entries(COMMANDS).map(([key, color]) => [
24
- key,
25
- (input) => {
26
- _log(`command matched: "${input}" → ${color}`)
27
- setBorderColor(color)
28
- },
29
- ])
30
- ),
31
- // eslint-disable-next-line react-hooks/exhaustive-deps
32
- []
33
- )
34
-
35
- return (
36
- <>
37
- <Vocal
38
- lang="fr"
39
- commands={commands}
40
- onStart={() => _log('start')}
41
- onEnd={() => _log('end')}
42
- onResult={(result) => _log(`result: "${result}"`)}
43
- onError={(e) => _log(`error: ${e.message}`)}
44
- maxAlternatives={3}
45
- />
46
- <p style={{ fontSize: 12, color: '#666', margin: '8px 0' }}>
47
- Commandes :{' '}
48
- {Object.keys(COMMANDS).map((k, i) => (
49
- <span key={k}>{i > 0 && ', '}<code>{k}</code></span>
50
- ))}
51
- {' '}— ou dans une phrase (ex : «&nbsp;je veux du vert&nbsp;»)
52
- </p>
53
- <textarea value={logs} rows={30} disabled style={{ width: '100%', borderColor }} />
54
- </>
55
- )
56
- }
57
-
58
- createRoot(document.getElementById('root')).render(<App />)
@@ -1,10 +0,0 @@
1
- import { defineConfig } from 'vite'
2
- import react from '@vitejs/plugin-react'
3
-
4
- export default defineConfig({
5
- plugins: [react()],
6
- server: {
7
- port: 10001,
8
- open: true,
9
- },
10
- })
package/dev/yarn.lock DELETED
@@ -1,325 +0,0 @@
1
- # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
- # yarn lockfile v1
3
-
4
-
5
- "@emnapi/core@1.10.0":
6
- version "1.10.0"
7
- resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.10.0.tgz#380ccc8f2412ea22d1d972df7f8ee23a3b9c7467"
8
- integrity sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==
9
- dependencies:
10
- "@emnapi/wasi-threads" "1.2.1"
11
- tslib "^2.4.0"
12
-
13
- "@emnapi/runtime@1.10.0":
14
- version "1.10.0"
15
- resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.10.0.tgz#4b260c0d3534204e98c6110b8db1a987d26ec87c"
16
- integrity sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==
17
- dependencies:
18
- tslib "^2.4.0"
19
-
20
- "@emnapi/wasi-threads@1.2.1":
21
- version "1.2.1"
22
- resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz#28fed21a1ba1ce797c44a070abc94d42f3ae8548"
23
- integrity sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==
24
- dependencies:
25
- tslib "^2.4.0"
26
-
27
- "@napi-rs/wasm-runtime@^1.1.4":
28
- version "1.1.4"
29
- resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz#a46bbfedc29751b7170c5d23bc1d8ee8c7e3c1e1"
30
- integrity sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==
31
- dependencies:
32
- "@tybys/wasm-util" "^0.10.1"
33
-
34
- "@oxc-project/types@=0.127.0":
35
- version "0.127.0"
36
- resolved "https://registry.yarnpkg.com/@oxc-project/types/-/types-0.127.0.tgz#8374fcdfb4a641861218daa5700c447c00b66663"
37
- integrity sha512-aIYXQBo4lCbO4z0R3FHeucQHpF46l2LbMdxRvqvuRuW2OxdnSkcng5B8+K12spgLDj93rtN3+J2Vac/TIO+ciQ==
38
-
39
- "@rolldown/binding-android-arm64@1.0.0-rc.17":
40
- version "1.0.0-rc.17"
41
- resolved "https://registry.yarnpkg.com/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.17.tgz#0a502a88c39d0ffa81aa30b561dade6f6217dcc5"
42
- integrity sha512-s70pVGhw4zqGeFnXWvAzJDlvxhlRollagdCCKRgOsgUOH3N1l0LIxf83AtGzmb5SiVM4Hjl5HyarMRfdfj3DaQ==
43
-
44
- "@rolldown/binding-darwin-arm64@1.0.0-rc.17":
45
- version "1.0.0-rc.17"
46
- resolved "https://registry.yarnpkg.com/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.17.tgz#8b7f05ac9000ab19161a79a0346b1b64a1bc7ba3"
47
- integrity sha512-4ksWc9n0mhlZpZ9PMZgTGjeOPRu8MB1Z3Tz0Mo02eWfWCHMW1zN82Qz/pL/rC+yQa+8ZnutMF0JjJe7PjwasYw==
48
-
49
- "@rolldown/binding-darwin-x64@1.0.0-rc.17":
50
- version "1.0.0-rc.17"
51
- resolved "https://registry.yarnpkg.com/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.17.tgz#f8b465b3a4e992053890b162f1ae19e4f1719a6a"
52
- integrity sha512-SUSDOI6WwUVNcWxd02QEBjLdY1VPHvlEkw6T/8nYG322iYWCTxRb1vzk4E+mWWYehTp7ERibq54LSJGjmouOsw==
53
-
54
- "@rolldown/binding-freebsd-x64@1.0.0-rc.17":
55
- version "1.0.0-rc.17"
56
- resolved "https://registry.yarnpkg.com/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.17.tgz#a8281e14fa9c243fe22dc2d0e54900e66b31935e"
57
- integrity sha512-hwnz3nw9dbJ05EDO/PvcjaaewqqDy7Y1rn1UO81l8iIK1GjenME75dl16ajbvSSMfv66WXSRCYKIqfgq2KCfxw==
58
-
59
- "@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.17":
60
- version "1.0.0-rc.17"
61
- resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.17.tgz#cd29cf869ddd4fac8d6929abf94b91ddb0494650"
62
- integrity sha512-IS+W7epTcwANmFSQFrS1SivEXHtl1JtuQA9wlxrZTcNi6mx+FDOYrakGevvvTwgj2JvWiK8B29/qD9BELZPyXQ==
63
-
64
- "@rolldown/binding-linux-arm64-gnu@1.0.0-rc.17":
65
- version "1.0.0-rc.17"
66
- resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.17.tgz#91c331236ec3728366218d61a62f0bd226546c6c"
67
- integrity sha512-e6usGaHKW5BMNZOymS1UcEYGowQMWcgZ71Z17Sl/h2+ZziNJ1a9n3Zvcz6LdRyIW5572wBCTH/Z+bKuZouGk9Q==
68
-
69
- "@rolldown/binding-linux-arm64-musl@1.0.0-rc.17":
70
- version "1.0.0-rc.17"
71
- resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.17.tgz#80108957db752e7826836e22240e56b8140e9684"
72
- integrity sha512-b/CgbwAJpmrRLp02RPfhbudf5tZnN9nsPWK82znefso832etkem8H7FSZwxrOI9djcdTP7U6YfNhbRnh7djErg==
73
-
74
- "@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.17":
75
- version "1.0.0-rc.17"
76
- resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.17.tgz#1dce51148cbc6bab3c3f9157b5323d2a31aac924"
77
- integrity sha512-4EII1iNGRUN5WwGbF/kOh/EIkoDN9HsupgLQoXfY+D1oyJm7/F4t5PYU5n8SWZgG0FEwakyM8pGgwcBYruGTlA==
78
-
79
- "@rolldown/binding-linux-s390x-gnu@1.0.0-rc.17":
80
- version "1.0.0-rc.17"
81
- resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.17.tgz#d4a0d2e01d8d441e4ac3af3fa68eec17a7d0e9cd"
82
- integrity sha512-AH8oq3XqQo4IibpVXvPeLDI5pzkpYn0WiZAfT05kFzoJ6tQNzwRdDYQ45M8I/gslbodRZwW8uxLhbSBbkv96rA==
83
-
84
- "@rolldown/binding-linux-x64-gnu@1.0.0-rc.17":
85
- version "1.0.0-rc.17"
86
- resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.17.tgz#0ac8b3139cefeea798ad147f30ea70572b133af1"
87
- integrity sha512-cLnjV3xfo7KslbU41Z7z8BH/E1y5mzUYzAqih1d1MDaIGZRCMqTijqLv76/P7fyHuvUcfGsIpqCdddbxLLK9rA==
88
-
89
- "@rolldown/binding-linux-x64-musl@1.0.0-rc.17":
90
- version "1.0.0-rc.17"
91
- resolved "https://registry.yarnpkg.com/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.17.tgz#2af61bee087571728f58f1c47734bbbd41dd7050"
92
- integrity sha512-0phclDw1spsL7dUB37sIARuis2tAgomCJXAHZlpt8PXZ4Ba0dRP1e+66lsRqrfhISeN9bEGNjQs+T/Fbd7oYGw==
93
-
94
- "@rolldown/binding-openharmony-arm64@1.0.0-rc.17":
95
- version "1.0.0-rc.17"
96
- resolved "https://registry.yarnpkg.com/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.17.tgz#56c1afbf6c592819abf47b4a983987dc288b30c1"
97
- integrity sha512-0ag/hEgXOwgw4t8QyQvUCxvEg+V0KBcA6YuOx9g0r02MprutRF5dyljgm3EmR02O292UX7UeS6HzWHAl6KgyhA==
98
-
99
- "@rolldown/binding-wasm32-wasi@1.0.0-rc.17":
100
- version "1.0.0-rc.17"
101
- resolved "https://registry.yarnpkg.com/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.17.tgz#5d112ff4dd0d268a60fb4e0eb3077e3ea2531f0d"
102
- integrity sha512-LEXei6vo0E5wTGwpkJ4KoT3OZJRnglwldt5ziLzOlc6qqb55z4tWNq2A+PFqCJuvWWdP53CVhG1Z9NtToDPJrA==
103
- dependencies:
104
- "@emnapi/core" "1.10.0"
105
- "@emnapi/runtime" "1.10.0"
106
- "@napi-rs/wasm-runtime" "^1.1.4"
107
-
108
- "@rolldown/binding-win32-arm64-msvc@1.0.0-rc.17":
109
- version "1.0.0-rc.17"
110
- resolved "https://registry.yarnpkg.com/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.17.tgz#5125a85222d64a543201d28e16a395cc45bf4d17"
111
- integrity sha512-gUmyzBl3SPMa6hrqFUth9sVfcLBlYsbMzBx5PlexMroZStgzGqlZ26pYG89rBb45Mnia+oil6YAIFeEWGWhoZA==
112
-
113
- "@rolldown/binding-win32-x64-msvc@1.0.0-rc.17":
114
- version "1.0.0-rc.17"
115
- resolved "https://registry.yarnpkg.com/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.17.tgz#fc6b78e759a0bb2054b5c0a3489da12b2cae54b4"
116
- integrity sha512-3hkiolcUAvPB9FLb3UZdfjVVNWherN1f/skkGWJP/fgSQhYUZpSIRr0/I8ZK9TkF3F7kxvJAk0+IcKvPHk9qQg==
117
-
118
- "@rolldown/pluginutils@1.0.0-rc.17":
119
- version "1.0.0-rc.17"
120
- resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.17.tgz#a89b30833fb628bc834fe2e89fea93a2da9fa69a"
121
- integrity sha512-n8iosDOt6Ig1UhJ2AYqoIhHWh/isz0xpicHTzpKBeotdVsTEcxsSA/i3EVM7gQAj0rU27OLAxCjzlj15IWY7bg==
122
-
123
- "@rolldown/pluginutils@1.0.0-rc.7":
124
- version "1.0.0-rc.7"
125
- resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.7.tgz#0414869467f0e471a6515d4f506c85fde867e022"
126
- integrity sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==
127
-
128
- "@tybys/wasm-util@^0.10.1":
129
- version "0.10.1"
130
- resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz#ecddd3205cf1e2d5274649ff0eedd2991ed7f414"
131
- integrity sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==
132
- dependencies:
133
- tslib "^2.4.0"
134
-
135
- "@vitejs/plugin-react@^6.0.1":
136
- version "6.0.1"
137
- resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-6.0.1.tgz#d9113b71a0a592714913eafd9e5e63bcafd0ff15"
138
- integrity sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==
139
- dependencies:
140
- "@rolldown/pluginutils" "1.0.0-rc.7"
141
-
142
- detect-libc@^2.0.3:
143
- version "2.1.2"
144
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.2.tgz#689c5dcdc1900ef5583a4cb9f6d7b473742074ad"
145
- integrity sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==
146
-
147
- fdir@^6.5.0:
148
- version "6.5.0"
149
- resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350"
150
- integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==
151
-
152
- fsevents@~2.3.3:
153
- version "2.3.3"
154
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
155
- integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
156
-
157
- lightningcss-android-arm64@1.32.0:
158
- version "1.32.0"
159
- resolved "https://registry.yarnpkg.com/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz#f033885116dfefd9c6f54787523e3514b61e1968"
160
- integrity sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==
161
-
162
- lightningcss-darwin-arm64@1.32.0:
163
- version "1.32.0"
164
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz#50b71871b01c8199584b649e292547faea7af9b5"
165
- integrity sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==
166
-
167
- lightningcss-darwin-x64@1.32.0:
168
- version "1.32.0"
169
- resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz#35f3e97332d130b9ca181e11b568ded6aebc6d5e"
170
- integrity sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==
171
-
172
- lightningcss-freebsd-x64@1.32.0:
173
- version "1.32.0"
174
- resolved "https://registry.yarnpkg.com/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz#9777a76472b64ed6ff94342ad64c7bafd794a575"
175
- integrity sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==
176
-
177
- lightningcss-linux-arm-gnueabihf@1.32.0:
178
- version "1.32.0"
179
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz#13ae652e1ab73b9135d7b7da172f666c410ad53d"
180
- integrity sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==
181
-
182
- lightningcss-linux-arm64-gnu@1.32.0:
183
- version "1.32.0"
184
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz#417858795a94592f680123a1b1f9da8a0e1ef335"
185
- integrity sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==
186
-
187
- lightningcss-linux-arm64-musl@1.32.0:
188
- version "1.32.0"
189
- resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz#6be36692e810b718040802fd809623cffe732133"
190
- integrity sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==
191
-
192
- lightningcss-linux-x64-gnu@1.32.0:
193
- version "1.32.0"
194
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz#0b7803af4eb21cfd38dd39fe2abbb53c7dd091f6"
195
- integrity sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==
196
-
197
- lightningcss-linux-x64-musl@1.32.0:
198
- version "1.32.0"
199
- resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz#88dc8ba865ddddb1ac5ef04b0f161804418c163b"
200
- integrity sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==
201
-
202
- lightningcss-win32-arm64-msvc@1.32.0:
203
- version "1.32.0"
204
- resolved "https://registry.yarnpkg.com/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz#4f30ba3fa5e925f5b79f945e8cc0d176c3b1ab38"
205
- integrity sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==
206
-
207
- lightningcss-win32-x64-msvc@1.32.0:
208
- version "1.32.0"
209
- resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz#141aa5605645064928902bb4af045fa7d9f4220a"
210
- integrity sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==
211
-
212
- lightningcss@^1.32.0:
213
- version "1.32.0"
214
- resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.32.0.tgz#b85aae96486dcb1bf49a7c8571221273f4f1e4a9"
215
- integrity sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==
216
- dependencies:
217
- detect-libc "^2.0.3"
218
- optionalDependencies:
219
- lightningcss-android-arm64 "1.32.0"
220
- lightningcss-darwin-arm64 "1.32.0"
221
- lightningcss-darwin-x64 "1.32.0"
222
- lightningcss-freebsd-x64 "1.32.0"
223
- lightningcss-linux-arm-gnueabihf "1.32.0"
224
- lightningcss-linux-arm64-gnu "1.32.0"
225
- lightningcss-linux-arm64-musl "1.32.0"
226
- lightningcss-linux-x64-gnu "1.32.0"
227
- lightningcss-linux-x64-musl "1.32.0"
228
- lightningcss-win32-arm64-msvc "1.32.0"
229
- lightningcss-win32-x64-msvc "1.32.0"
230
-
231
- nanoid@^3.3.11:
232
- version "3.3.12"
233
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.12.tgz#ab3d912e217a6d0a514f00a72a16543a28982c05"
234
- integrity sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==
235
-
236
- picocolors@^1.1.1:
237
- version "1.1.1"
238
- resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b"
239
- integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
240
-
241
- picomatch@^4.0.4:
242
- version "4.0.4"
243
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.4.tgz#fd6f5e00a143086e074dffe4c924b8fb293b0589"
244
- integrity sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==
245
-
246
- postcss@^8.5.10:
247
- version "8.5.13"
248
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.13.tgz#6cfaf647f2e7ef69850208eccd849e0d3f65d420"
249
- integrity sha512-qif0+jGGZoLWdHey3UFHHWP0H7Gbmsk8T5VEqyYFbWqPr1XqvLGBbk/sl8V5exGmcYJklJOhOQq1pV9IcsiFag==
250
- dependencies:
251
- nanoid "^3.3.11"
252
- picocolors "^1.1.1"
253
- source-map-js "^1.2.1"
254
-
255
- react-dom@^19.2.5:
256
- version "19.2.5"
257
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.2.5.tgz#b8768b10837d0b8e9ca5b9e2d58dff3d880ea25e"
258
- integrity sha512-J5bAZz+DXMMwW/wV3xzKke59Af6CHY7G4uYLN1OvBcKEsWOs4pQExj86BBKamxl/Ik5bx9whOrvBlSDfWzgSag==
259
- dependencies:
260
- scheduler "^0.27.0"
261
-
262
- react@^19.2.5:
263
- version "19.2.5"
264
- resolved "https://registry.yarnpkg.com/react/-/react-19.2.5.tgz#c888ab8b8ef33e2597fae8bdb2d77edbdb42858b"
265
- integrity sha512-llUJLzz1zTUBrskt2pwZgLq59AemifIftw4aB7JxOqf1HY2FDaGDxgwpAPVzHU1kdWabH7FauP4i1oEeer2WCA==
266
-
267
- rolldown@1.0.0-rc.17:
268
- version "1.0.0-rc.17"
269
- resolved "https://registry.yarnpkg.com/rolldown/-/rolldown-1.0.0-rc.17.tgz#c524fc22f6bb37b5588aec862ab1ee11382610f3"
270
- integrity sha512-ZrT53oAKrtA4+YtBWPQbtPOxIbVDbxT0orcYERKd63VJTF13zPcgXTvD4843L8pcsI7M6MErt8QtON6lrB9tyA==
271
- dependencies:
272
- "@oxc-project/types" "=0.127.0"
273
- "@rolldown/pluginutils" "1.0.0-rc.17"
274
- optionalDependencies:
275
- "@rolldown/binding-android-arm64" "1.0.0-rc.17"
276
- "@rolldown/binding-darwin-arm64" "1.0.0-rc.17"
277
- "@rolldown/binding-darwin-x64" "1.0.0-rc.17"
278
- "@rolldown/binding-freebsd-x64" "1.0.0-rc.17"
279
- "@rolldown/binding-linux-arm-gnueabihf" "1.0.0-rc.17"
280
- "@rolldown/binding-linux-arm64-gnu" "1.0.0-rc.17"
281
- "@rolldown/binding-linux-arm64-musl" "1.0.0-rc.17"
282
- "@rolldown/binding-linux-ppc64-gnu" "1.0.0-rc.17"
283
- "@rolldown/binding-linux-s390x-gnu" "1.0.0-rc.17"
284
- "@rolldown/binding-linux-x64-gnu" "1.0.0-rc.17"
285
- "@rolldown/binding-linux-x64-musl" "1.0.0-rc.17"
286
- "@rolldown/binding-openharmony-arm64" "1.0.0-rc.17"
287
- "@rolldown/binding-wasm32-wasi" "1.0.0-rc.17"
288
- "@rolldown/binding-win32-arm64-msvc" "1.0.0-rc.17"
289
- "@rolldown/binding-win32-x64-msvc" "1.0.0-rc.17"
290
-
291
- scheduler@^0.27.0:
292
- version "0.27.0"
293
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.27.0.tgz#0c4ef82d67d1e5c1e359e8fc76d3a87f045fe5bd"
294
- integrity sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==
295
-
296
- source-map-js@^1.2.1:
297
- version "1.2.1"
298
- resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
299
- integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
300
-
301
- tinyglobby@^0.2.16:
302
- version "0.2.16"
303
- resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.16.tgz#1c3b7eb953fce42b226bc5a1ee06428281aff3d6"
304
- integrity sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==
305
- dependencies:
306
- fdir "^6.5.0"
307
- picomatch "^4.0.4"
308
-
309
- tslib@^2.4.0:
310
- version "2.8.1"
311
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
312
- integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
313
-
314
- vite@^8.0.10:
315
- version "8.0.10"
316
- resolved "https://registry.yarnpkg.com/vite/-/vite-8.0.10.tgz#fb31868526ec874101fac084172a2cdc6776319b"
317
- integrity sha512-rZuUu9j6J5uotLDs+cAA4O5H4K1SfPliUlQwqa6YEwSrWDZzP4rhm00oJR5snMewjxF5V/K3D4kctsUTsIU9Mw==
318
- dependencies:
319
- lightningcss "^1.32.0"
320
- picomatch "^4.0.4"
321
- postcss "^8.5.10"
322
- rolldown "1.0.0-rc.17"
323
- tinyglobby "^0.2.16"
324
- optionalDependencies:
325
- fsevents "~2.3.3"