@wangyaoshen/remux 0.3.8-dev.a8ceb0c
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.
- package/.github/ISSUE_TEMPLATE/bug_report.md +47 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +38 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +28 -0
- package/.github/dependabot.yml +33 -0
- package/.github/workflows/ci.yml +65 -0
- package/.github/workflows/deploy.yml +65 -0
- package/.github/workflows/publish.yml +312 -0
- package/.github/workflows/release-please.yml +21 -0
- package/.gitmodules +3 -0
- package/.nvmrc +1 -0
- package/.release-please-manifest.json +3 -0
- package/CLAUDE.md +104 -0
- package/Dockerfile +23 -0
- package/LICENSE +21 -0
- package/README.md +120 -0
- package/apps/ios/Config/signing.xcconfig +4 -0
- package/apps/ios/Package.swift +26 -0
- package/apps/ios/Remux.xcodeproj/project.pbxproj +477 -0
- package/apps/ios/Remux.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/Contents.json +23 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_1024x1024.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_120x120.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_152x152.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_167x167.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_180x180.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_20x20.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_29x29.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_40x40.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_58x58.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_60x60.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_76x76.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_80x80.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/AppIcon.appiconset/icon_87x87.png +0 -0
- package/apps/ios/Sources/Remux/Assets.xcassets/Contents.json +6 -0
- package/apps/ios/Sources/Remux/Extensions/FaceIDManager.swift +29 -0
- package/apps/ios/Sources/Remux/Extensions/InspectCache.swift +66 -0
- package/apps/ios/Sources/Remux/MainTabView.swift +32 -0
- package/apps/ios/Sources/Remux/Remux.entitlements +8 -0
- package/apps/ios/Sources/Remux/RemuxiOSApp.swift +14 -0
- package/apps/ios/Sources/Remux/RootView.swift +130 -0
- package/apps/ios/Sources/Remux/Views/Control/ControlView.swift +102 -0
- package/apps/ios/Sources/Remux/Views/Inspect/InspectView.swift +98 -0
- package/apps/ios/Sources/Remux/Views/Live/LiveTerminalView.swift +132 -0
- package/apps/ios/Sources/Remux/Views/Now/NowView.swift +173 -0
- package/apps/ios/Sources/Remux/Views/Onboarding/ManualConnectView.swift +55 -0
- package/apps/ios/Sources/Remux/Views/Onboarding/OnboardingView.swift +70 -0
- package/apps/ios/Sources/Remux/Views/Onboarding/QRScannerView.swift +92 -0
- package/apps/ios/Sources/Remux/Views/Settings/MeView.swift +136 -0
- package/apps/macos/Package.swift +37 -0
- package/apps/macos/Resources/shell-integration/bash/bash-preexec.sh +382 -0
- package/apps/macos/Resources/shell-integration/bash/ghostty.bash +315 -0
- package/apps/macos/Resources/shell-integration/elvish/lib/ghostty-integration.elv +191 -0
- package/apps/macos/Resources/shell-integration/fish/vendor_conf.d/ghostty-shell-integration.fish +246 -0
- package/apps/macos/Resources/shell-integration/nushell/vendor/autoload/ghostty.nu +110 -0
- package/apps/macos/Resources/shell-integration/zsh/.zshenv +61 -0
- package/apps/macos/Resources/shell-integration/zsh/ghostty-integration +458 -0
- package/apps/macos/Resources/terminfo/67/ghostty +0 -0
- package/apps/macos/Resources/terminfo/78/xterm-ghostty +0 -0
- package/apps/macos/Sources/Remux/AppDelegate.swift +257 -0
- package/apps/macos/Sources/Remux/CrashReporter.swift +210 -0
- package/apps/macos/Sources/Remux/FinderIntegration.swift +117 -0
- package/apps/macos/Sources/Remux/GhosttyConfig.swift +311 -0
- package/apps/macos/Sources/Remux/KeyboardShortcuts/ShortcutAction.swift +115 -0
- package/apps/macos/Sources/Remux/KeyboardShortcuts/ShortcutSettingsView.swift +271 -0
- package/apps/macos/Sources/Remux/KeyboardShortcuts/StoredShortcut.swift +149 -0
- package/apps/macos/Sources/Remux/MainContentView.swift +308 -0
- package/apps/macos/Sources/Remux/MenuBarManager.swift +275 -0
- package/apps/macos/Sources/Remux/NotificationManager.swift +145 -0
- package/apps/macos/Sources/Remux/PortScanner.swift +152 -0
- package/apps/macos/Sources/Remux/RemuxApp.swift +13 -0
- package/apps/macos/Sources/Remux/SSHDetector.swift +151 -0
- package/apps/macos/Sources/Remux/SessionPersistence.swift +226 -0
- package/apps/macos/Sources/Remux/SocketController.swift +258 -0
- package/apps/macos/Sources/Remux/UpdateChecker.swift +152 -0
- package/apps/macos/Sources/Remux/Views/CommandPalette.swift +198 -0
- package/apps/macos/Sources/Remux/Views/ConnectionView.swift +84 -0
- package/apps/macos/Sources/Remux/Views/InspectView.swift +127 -0
- package/apps/macos/Sources/Remux/Views/SettingsView.swift +77 -0
- package/apps/macos/Sources/Remux/Views/Sidebar/SidebarView.swift +410 -0
- package/apps/macos/Sources/Remux/Views/SplitTree/BrowserPanel.swift +193 -0
- package/apps/macos/Sources/Remux/Views/SplitTree/MarkdownPanel.swift +277 -0
- package/apps/macos/Sources/Remux/Views/SplitTree/PanelProtocol.swift +14 -0
- package/apps/macos/Sources/Remux/Views/SplitTree/SplitNode.swift +149 -0
- package/apps/macos/Sources/Remux/Views/SplitTree/SplitView.swift +234 -0
- package/apps/macos/Sources/Remux/Views/SplitTree/TerminalPanel.swift +26 -0
- package/apps/macos/Sources/Remux/Views/TabBarView.swift +94 -0
- package/apps/macos/Sources/Remux/Views/Terminal/ClipboardHelper.swift +101 -0
- package/apps/macos/Sources/Remux/Views/Terminal/CopyModeOverlay.swift +325 -0
- package/apps/macos/Sources/Remux/Views/Terminal/GhosttyNativeTerminalView.swift +39 -0
- package/apps/macos/Sources/Remux/Views/Terminal/GhosttyNativeView.swift +559 -0
- package/apps/macos/Sources/Remux/Views/Terminal/SurfaceSearchOverlay.swift +109 -0
- package/apps/macos/Sources/Remux/Views/Terminal/TerminalContainerView.swift +95 -0
- package/apps/macos/Sources/Remux/Views/Terminal/TerminalRelay.swift +117 -0
- package/build.mjs +33 -0
- package/native/android/DecodeGoldenPayloads.kt +487 -0
- package/native/android/ProtocolModels.kt +188 -0
- package/native/ios/DecodeGoldenPayloads.swift +711 -0
- package/native/ios/ProtocolModels.swift +200 -0
- package/package.json +45 -0
- package/packages/RemuxKit/Package.swift +27 -0
- package/packages/RemuxKit/Sources/RemuxKit/Device/DeviceManager.swift +27 -0
- package/packages/RemuxKit/Sources/RemuxKit/Models/ProtocolModels.swift +206 -0
- package/packages/RemuxKit/Sources/RemuxKit/Networking/MessageRouter.swift +108 -0
- package/packages/RemuxKit/Sources/RemuxKit/Networking/RemuxConnection.swift +395 -0
- package/packages/RemuxKit/Sources/RemuxKit/State/RemuxState.swift +188 -0
- package/packages/RemuxKit/Sources/RemuxKit/Storage/KeychainStore.swift +142 -0
- package/packages/RemuxKit/Sources/RemuxKit/Terminal/GhosttyBridge.swift +145 -0
- package/packages/RemuxKit/Sources/RemuxKit/Terminal/GhosttyTerminalView.swift +35 -0
- package/packages/RemuxKit/Sources/RemuxKit/Terminal/Resources/ghostty-terminal.html +91 -0
- package/packages/RemuxKit/Tests/RemuxKitTests/ConnectionIntegrationTest.swift +74 -0
- package/packages/RemuxKit/Tests/RemuxKitTests/KeychainStoreTests.swift +81 -0
- package/packages/RemuxKit/Tests/RemuxKitTests/ProtocolModelsTests.swift +179 -0
- package/packages/RemuxKit/Tests/RemuxKitTests/RemuxStateTests.swift +62 -0
- package/playwright.config.ts +17 -0
- package/pnpm-lock.yaml +1588 -0
- package/pty-daemon.js +303 -0
- package/release-please-config.json +14 -0
- package/scripts/auto-deploy.sh +46 -0
- package/scripts/build-dmg.sh +121 -0
- package/scripts/build-ghostty-kit.sh +43 -0
- package/scripts/check-active-terminology.mjs +132 -0
- package/scripts/setup-ci-secrets.sh +80 -0
- package/scripts/sync-ghostty-web.sh +28 -0
- package/scripts/upload-testflight.sh +100 -0
- package/server.js +7074 -0
- package/src/adapters/agent-events.ts +246 -0
- package/src/adapters/claude-code.ts +158 -0
- package/src/adapters/codex.ts +210 -0
- package/src/adapters/generic-shell.ts +58 -0
- package/src/adapters/index.ts +15 -0
- package/src/adapters/registry.ts +99 -0
- package/src/adapters/types.ts +41 -0
- package/src/auth.ts +174 -0
- package/src/e2ee.ts +236 -0
- package/src/git-service.ts +168 -0
- package/src/message-buffer.ts +137 -0
- package/src/pty-daemon.ts +357 -0
- package/src/push.ts +127 -0
- package/src/renderers.ts +455 -0
- package/src/server.ts +2407 -0
- package/src/service.ts +226 -0
- package/src/session.ts +978 -0
- package/src/store.ts +1422 -0
- package/src/team.ts +123 -0
- package/src/tunnel.ts +126 -0
- package/src/types.d.ts +50 -0
- package/src/vt-tracker.ts +188 -0
- package/src/workspace-head.ts +144 -0
- package/src/workspace.ts +153 -0
- package/src/ws-handler.ts +1526 -0
- package/start.ps1 +83 -0
- package/tests/adapters.test.js +171 -0
- package/tests/auth.test.js +243 -0
- package/tests/codex-adapter.test.js +535 -0
- package/tests/durable-stream.test.js +153 -0
- package/tests/e2e/app.spec.js +530 -0
- package/tests/e2ee.test.js +325 -0
- package/tests/message-buffer.test.js +245 -0
- package/tests/message-routing.test.js +305 -0
- package/tests/pty-daemon.test.js +346 -0
- package/tests/push.test.js +281 -0
- package/tests/renderers.test.js +391 -0
- package/tests/search-shell.test.js +499 -0
- package/tests/server.test.js +882 -0
- package/tests/service.test.js +267 -0
- package/tests/store.test.js +369 -0
- package/tests/tunnel.test.js +67 -0
- package/tests/workspace-head.test.js +116 -0
- package/tests/workspace.test.js +417 -0
- package/tsconfig.backend.json +11 -0
- package/tsconfig.json +15 -0
- package/tui/client/client_test.go +125 -0
- package/tui/client/connection.go +342 -0
- package/tui/client/host_manager.go +141 -0
- package/tui/config/cache.go +81 -0
- package/tui/config/config.go +53 -0
- package/tui/config/config_test.go +89 -0
- package/tui/go.mod +32 -0
- package/tui/go.sum +50 -0
- package/tui/main.go +261 -0
- package/tui/tests/integration_test.go +283 -0
- package/tui/ui/model.go +310 -0
- package/vitest.config.js +10 -0
package/pnpm-lock.yaml
ADDED
|
@@ -0,0 +1,1588 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
better-sqlite3:
|
|
12
|
+
specifier: ^12.8.0
|
|
13
|
+
version: 12.8.0
|
|
14
|
+
ghostty-web:
|
|
15
|
+
specifier: ^0.4.0
|
|
16
|
+
version: 0.4.0
|
|
17
|
+
node-pty:
|
|
18
|
+
specifier: ^1.1.0
|
|
19
|
+
version: 1.1.0
|
|
20
|
+
qrcode-terminal:
|
|
21
|
+
specifier: ^0.12.0
|
|
22
|
+
version: 0.12.0
|
|
23
|
+
simple-git:
|
|
24
|
+
specifier: ^3.33.0
|
|
25
|
+
version: 3.33.0
|
|
26
|
+
web-push:
|
|
27
|
+
specifier: ^3.6.7
|
|
28
|
+
version: 3.6.7
|
|
29
|
+
ws:
|
|
30
|
+
specifier: ^8.20.0
|
|
31
|
+
version: 8.20.0
|
|
32
|
+
devDependencies:
|
|
33
|
+
'@playwright/test':
|
|
34
|
+
specifier: ^1.58.2
|
|
35
|
+
version: 1.58.2
|
|
36
|
+
'@types/better-sqlite3':
|
|
37
|
+
specifier: ^7.6.13
|
|
38
|
+
version: 7.6.13
|
|
39
|
+
'@types/node':
|
|
40
|
+
specifier: ^25.5.0
|
|
41
|
+
version: 25.5.0
|
|
42
|
+
'@types/ws':
|
|
43
|
+
specifier: ^8.18.1
|
|
44
|
+
version: 8.18.1
|
|
45
|
+
esbuild:
|
|
46
|
+
specifier: ^0.27.4
|
|
47
|
+
version: 0.27.4
|
|
48
|
+
tsx:
|
|
49
|
+
specifier: ^4.21.0
|
|
50
|
+
version: 4.21.0
|
|
51
|
+
typescript:
|
|
52
|
+
specifier: ^6.0.2
|
|
53
|
+
version: 6.0.2
|
|
54
|
+
vitest:
|
|
55
|
+
specifier: ^4.1.2
|
|
56
|
+
version: 4.1.2(@types/node@25.5.0)(vite@8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(@types/node@25.5.0)(esbuild@0.27.4)(tsx@4.21.0))
|
|
57
|
+
|
|
58
|
+
packages:
|
|
59
|
+
|
|
60
|
+
'@emnapi/core@1.9.1':
|
|
61
|
+
resolution: {integrity: sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==}
|
|
62
|
+
|
|
63
|
+
'@emnapi/runtime@1.9.1':
|
|
64
|
+
resolution: {integrity: sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==}
|
|
65
|
+
|
|
66
|
+
'@emnapi/wasi-threads@1.2.0':
|
|
67
|
+
resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==}
|
|
68
|
+
|
|
69
|
+
'@esbuild/aix-ppc64@0.27.4':
|
|
70
|
+
resolution: {integrity: sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==}
|
|
71
|
+
engines: {node: '>=18'}
|
|
72
|
+
cpu: [ppc64]
|
|
73
|
+
os: [aix]
|
|
74
|
+
|
|
75
|
+
'@esbuild/android-arm64@0.27.4':
|
|
76
|
+
resolution: {integrity: sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==}
|
|
77
|
+
engines: {node: '>=18'}
|
|
78
|
+
cpu: [arm64]
|
|
79
|
+
os: [android]
|
|
80
|
+
|
|
81
|
+
'@esbuild/android-arm@0.27.4':
|
|
82
|
+
resolution: {integrity: sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==}
|
|
83
|
+
engines: {node: '>=18'}
|
|
84
|
+
cpu: [arm]
|
|
85
|
+
os: [android]
|
|
86
|
+
|
|
87
|
+
'@esbuild/android-x64@0.27.4':
|
|
88
|
+
resolution: {integrity: sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==}
|
|
89
|
+
engines: {node: '>=18'}
|
|
90
|
+
cpu: [x64]
|
|
91
|
+
os: [android]
|
|
92
|
+
|
|
93
|
+
'@esbuild/darwin-arm64@0.27.4':
|
|
94
|
+
resolution: {integrity: sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==}
|
|
95
|
+
engines: {node: '>=18'}
|
|
96
|
+
cpu: [arm64]
|
|
97
|
+
os: [darwin]
|
|
98
|
+
|
|
99
|
+
'@esbuild/darwin-x64@0.27.4':
|
|
100
|
+
resolution: {integrity: sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==}
|
|
101
|
+
engines: {node: '>=18'}
|
|
102
|
+
cpu: [x64]
|
|
103
|
+
os: [darwin]
|
|
104
|
+
|
|
105
|
+
'@esbuild/freebsd-arm64@0.27.4':
|
|
106
|
+
resolution: {integrity: sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==}
|
|
107
|
+
engines: {node: '>=18'}
|
|
108
|
+
cpu: [arm64]
|
|
109
|
+
os: [freebsd]
|
|
110
|
+
|
|
111
|
+
'@esbuild/freebsd-x64@0.27.4':
|
|
112
|
+
resolution: {integrity: sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==}
|
|
113
|
+
engines: {node: '>=18'}
|
|
114
|
+
cpu: [x64]
|
|
115
|
+
os: [freebsd]
|
|
116
|
+
|
|
117
|
+
'@esbuild/linux-arm64@0.27.4':
|
|
118
|
+
resolution: {integrity: sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==}
|
|
119
|
+
engines: {node: '>=18'}
|
|
120
|
+
cpu: [arm64]
|
|
121
|
+
os: [linux]
|
|
122
|
+
|
|
123
|
+
'@esbuild/linux-arm@0.27.4':
|
|
124
|
+
resolution: {integrity: sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==}
|
|
125
|
+
engines: {node: '>=18'}
|
|
126
|
+
cpu: [arm]
|
|
127
|
+
os: [linux]
|
|
128
|
+
|
|
129
|
+
'@esbuild/linux-ia32@0.27.4':
|
|
130
|
+
resolution: {integrity: sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==}
|
|
131
|
+
engines: {node: '>=18'}
|
|
132
|
+
cpu: [ia32]
|
|
133
|
+
os: [linux]
|
|
134
|
+
|
|
135
|
+
'@esbuild/linux-loong64@0.27.4':
|
|
136
|
+
resolution: {integrity: sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==}
|
|
137
|
+
engines: {node: '>=18'}
|
|
138
|
+
cpu: [loong64]
|
|
139
|
+
os: [linux]
|
|
140
|
+
|
|
141
|
+
'@esbuild/linux-mips64el@0.27.4':
|
|
142
|
+
resolution: {integrity: sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==}
|
|
143
|
+
engines: {node: '>=18'}
|
|
144
|
+
cpu: [mips64el]
|
|
145
|
+
os: [linux]
|
|
146
|
+
|
|
147
|
+
'@esbuild/linux-ppc64@0.27.4':
|
|
148
|
+
resolution: {integrity: sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==}
|
|
149
|
+
engines: {node: '>=18'}
|
|
150
|
+
cpu: [ppc64]
|
|
151
|
+
os: [linux]
|
|
152
|
+
|
|
153
|
+
'@esbuild/linux-riscv64@0.27.4':
|
|
154
|
+
resolution: {integrity: sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==}
|
|
155
|
+
engines: {node: '>=18'}
|
|
156
|
+
cpu: [riscv64]
|
|
157
|
+
os: [linux]
|
|
158
|
+
|
|
159
|
+
'@esbuild/linux-s390x@0.27.4':
|
|
160
|
+
resolution: {integrity: sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==}
|
|
161
|
+
engines: {node: '>=18'}
|
|
162
|
+
cpu: [s390x]
|
|
163
|
+
os: [linux]
|
|
164
|
+
|
|
165
|
+
'@esbuild/linux-x64@0.27.4':
|
|
166
|
+
resolution: {integrity: sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==}
|
|
167
|
+
engines: {node: '>=18'}
|
|
168
|
+
cpu: [x64]
|
|
169
|
+
os: [linux]
|
|
170
|
+
|
|
171
|
+
'@esbuild/netbsd-arm64@0.27.4':
|
|
172
|
+
resolution: {integrity: sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==}
|
|
173
|
+
engines: {node: '>=18'}
|
|
174
|
+
cpu: [arm64]
|
|
175
|
+
os: [netbsd]
|
|
176
|
+
|
|
177
|
+
'@esbuild/netbsd-x64@0.27.4':
|
|
178
|
+
resolution: {integrity: sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==}
|
|
179
|
+
engines: {node: '>=18'}
|
|
180
|
+
cpu: [x64]
|
|
181
|
+
os: [netbsd]
|
|
182
|
+
|
|
183
|
+
'@esbuild/openbsd-arm64@0.27.4':
|
|
184
|
+
resolution: {integrity: sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==}
|
|
185
|
+
engines: {node: '>=18'}
|
|
186
|
+
cpu: [arm64]
|
|
187
|
+
os: [openbsd]
|
|
188
|
+
|
|
189
|
+
'@esbuild/openbsd-x64@0.27.4':
|
|
190
|
+
resolution: {integrity: sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==}
|
|
191
|
+
engines: {node: '>=18'}
|
|
192
|
+
cpu: [x64]
|
|
193
|
+
os: [openbsd]
|
|
194
|
+
|
|
195
|
+
'@esbuild/openharmony-arm64@0.27.4':
|
|
196
|
+
resolution: {integrity: sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==}
|
|
197
|
+
engines: {node: '>=18'}
|
|
198
|
+
cpu: [arm64]
|
|
199
|
+
os: [openharmony]
|
|
200
|
+
|
|
201
|
+
'@esbuild/sunos-x64@0.27.4':
|
|
202
|
+
resolution: {integrity: sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==}
|
|
203
|
+
engines: {node: '>=18'}
|
|
204
|
+
cpu: [x64]
|
|
205
|
+
os: [sunos]
|
|
206
|
+
|
|
207
|
+
'@esbuild/win32-arm64@0.27.4':
|
|
208
|
+
resolution: {integrity: sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==}
|
|
209
|
+
engines: {node: '>=18'}
|
|
210
|
+
cpu: [arm64]
|
|
211
|
+
os: [win32]
|
|
212
|
+
|
|
213
|
+
'@esbuild/win32-ia32@0.27.4':
|
|
214
|
+
resolution: {integrity: sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==}
|
|
215
|
+
engines: {node: '>=18'}
|
|
216
|
+
cpu: [ia32]
|
|
217
|
+
os: [win32]
|
|
218
|
+
|
|
219
|
+
'@esbuild/win32-x64@0.27.4':
|
|
220
|
+
resolution: {integrity: sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==}
|
|
221
|
+
engines: {node: '>=18'}
|
|
222
|
+
cpu: [x64]
|
|
223
|
+
os: [win32]
|
|
224
|
+
|
|
225
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
226
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
227
|
+
|
|
228
|
+
'@kwsites/file-exists@1.1.1':
|
|
229
|
+
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
|
|
230
|
+
|
|
231
|
+
'@kwsites/promise-deferred@1.1.1':
|
|
232
|
+
resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==}
|
|
233
|
+
|
|
234
|
+
'@napi-rs/wasm-runtime@1.1.2':
|
|
235
|
+
resolution: {integrity: sha512-sNXv5oLJ7ob93xkZ1XnxisYhGYXfaG9f65/ZgYuAu3qt7b3NadcOEhLvx28hv31PgX8SZJRYrAIPQilQmFpLVw==}
|
|
236
|
+
peerDependencies:
|
|
237
|
+
'@emnapi/core': ^1.7.1
|
|
238
|
+
'@emnapi/runtime': ^1.7.1
|
|
239
|
+
|
|
240
|
+
'@oxc-project/types@0.122.0':
|
|
241
|
+
resolution: {integrity: sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==}
|
|
242
|
+
|
|
243
|
+
'@playwright/test@1.58.2':
|
|
244
|
+
resolution: {integrity: sha512-akea+6bHYBBfA9uQqSYmlJXn61cTa+jbO87xVLCWbTqbWadRVmhxlXATaOjOgcBaWU4ePo0wB41KMFv3o35IXA==}
|
|
245
|
+
engines: {node: '>=18'}
|
|
246
|
+
hasBin: true
|
|
247
|
+
|
|
248
|
+
'@rolldown/binding-android-arm64@1.0.0-rc.12':
|
|
249
|
+
resolution: {integrity: sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==}
|
|
250
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
251
|
+
cpu: [arm64]
|
|
252
|
+
os: [android]
|
|
253
|
+
|
|
254
|
+
'@rolldown/binding-darwin-arm64@1.0.0-rc.12':
|
|
255
|
+
resolution: {integrity: sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==}
|
|
256
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
257
|
+
cpu: [arm64]
|
|
258
|
+
os: [darwin]
|
|
259
|
+
|
|
260
|
+
'@rolldown/binding-darwin-x64@1.0.0-rc.12':
|
|
261
|
+
resolution: {integrity: sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==}
|
|
262
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
263
|
+
cpu: [x64]
|
|
264
|
+
os: [darwin]
|
|
265
|
+
|
|
266
|
+
'@rolldown/binding-freebsd-x64@1.0.0-rc.12':
|
|
267
|
+
resolution: {integrity: sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==}
|
|
268
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
269
|
+
cpu: [x64]
|
|
270
|
+
os: [freebsd]
|
|
271
|
+
|
|
272
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12':
|
|
273
|
+
resolution: {integrity: sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==}
|
|
274
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
275
|
+
cpu: [arm]
|
|
276
|
+
os: [linux]
|
|
277
|
+
|
|
278
|
+
'@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12':
|
|
279
|
+
resolution: {integrity: sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==}
|
|
280
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
281
|
+
cpu: [arm64]
|
|
282
|
+
os: [linux]
|
|
283
|
+
|
|
284
|
+
'@rolldown/binding-linux-arm64-musl@1.0.0-rc.12':
|
|
285
|
+
resolution: {integrity: sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==}
|
|
286
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
287
|
+
cpu: [arm64]
|
|
288
|
+
os: [linux]
|
|
289
|
+
|
|
290
|
+
'@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12':
|
|
291
|
+
resolution: {integrity: sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==}
|
|
292
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
293
|
+
cpu: [ppc64]
|
|
294
|
+
os: [linux]
|
|
295
|
+
|
|
296
|
+
'@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12':
|
|
297
|
+
resolution: {integrity: sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==}
|
|
298
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
299
|
+
cpu: [s390x]
|
|
300
|
+
os: [linux]
|
|
301
|
+
|
|
302
|
+
'@rolldown/binding-linux-x64-gnu@1.0.0-rc.12':
|
|
303
|
+
resolution: {integrity: sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==}
|
|
304
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
305
|
+
cpu: [x64]
|
|
306
|
+
os: [linux]
|
|
307
|
+
|
|
308
|
+
'@rolldown/binding-linux-x64-musl@1.0.0-rc.12':
|
|
309
|
+
resolution: {integrity: sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==}
|
|
310
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
311
|
+
cpu: [x64]
|
|
312
|
+
os: [linux]
|
|
313
|
+
|
|
314
|
+
'@rolldown/binding-openharmony-arm64@1.0.0-rc.12':
|
|
315
|
+
resolution: {integrity: sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==}
|
|
316
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
317
|
+
cpu: [arm64]
|
|
318
|
+
os: [openharmony]
|
|
319
|
+
|
|
320
|
+
'@rolldown/binding-wasm32-wasi@1.0.0-rc.12':
|
|
321
|
+
resolution: {integrity: sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==}
|
|
322
|
+
engines: {node: '>=14.0.0'}
|
|
323
|
+
cpu: [wasm32]
|
|
324
|
+
|
|
325
|
+
'@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12':
|
|
326
|
+
resolution: {integrity: sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==}
|
|
327
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
328
|
+
cpu: [arm64]
|
|
329
|
+
os: [win32]
|
|
330
|
+
|
|
331
|
+
'@rolldown/binding-win32-x64-msvc@1.0.0-rc.12':
|
|
332
|
+
resolution: {integrity: sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==}
|
|
333
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
334
|
+
cpu: [x64]
|
|
335
|
+
os: [win32]
|
|
336
|
+
|
|
337
|
+
'@rolldown/pluginutils@1.0.0-rc.12':
|
|
338
|
+
resolution: {integrity: sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==}
|
|
339
|
+
|
|
340
|
+
'@standard-schema/spec@1.1.0':
|
|
341
|
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
342
|
+
|
|
343
|
+
'@tybys/wasm-util@0.10.1':
|
|
344
|
+
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
|
|
345
|
+
|
|
346
|
+
'@types/better-sqlite3@7.6.13':
|
|
347
|
+
resolution: {integrity: sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==}
|
|
348
|
+
|
|
349
|
+
'@types/chai@5.2.3':
|
|
350
|
+
resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
|
|
351
|
+
|
|
352
|
+
'@types/deep-eql@4.0.2':
|
|
353
|
+
resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
|
|
354
|
+
|
|
355
|
+
'@types/estree@1.0.8':
|
|
356
|
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
357
|
+
|
|
358
|
+
'@types/node@25.5.0':
|
|
359
|
+
resolution: {integrity: sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==}
|
|
360
|
+
|
|
361
|
+
'@types/ws@8.18.1':
|
|
362
|
+
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
|
|
363
|
+
|
|
364
|
+
'@vitest/expect@4.1.2':
|
|
365
|
+
resolution: {integrity: sha512-gbu+7B0YgUJ2nkdsRJrFFW6X7NTP44WlhiclHniUhxADQJH5Szt9mZ9hWnJPJ8YwOK5zUOSSlSvyzRf0u1DSBQ==}
|
|
366
|
+
|
|
367
|
+
'@vitest/mocker@4.1.2':
|
|
368
|
+
resolution: {integrity: sha512-Ize4iQtEALHDttPRCmN+FKqOl2vxTiNUhzobQFFt/BM1lRUTG7zRCLOykG/6Vo4E4hnUdfVLo5/eqKPukcWW7Q==}
|
|
369
|
+
peerDependencies:
|
|
370
|
+
msw: ^2.4.9
|
|
371
|
+
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
372
|
+
peerDependenciesMeta:
|
|
373
|
+
msw:
|
|
374
|
+
optional: true
|
|
375
|
+
vite:
|
|
376
|
+
optional: true
|
|
377
|
+
|
|
378
|
+
'@vitest/pretty-format@4.1.2':
|
|
379
|
+
resolution: {integrity: sha512-dwQga8aejqeuB+TvXCMzSQemvV9hNEtDDpgUKDzOmNQayl2OG241PSWeJwKRH3CiC+sESrmoFd49rfnq7T4RnA==}
|
|
380
|
+
|
|
381
|
+
'@vitest/runner@4.1.2':
|
|
382
|
+
resolution: {integrity: sha512-Gr+FQan34CdiYAwpGJmQG8PgkyFVmARK8/xSijia3eTFgVfpcpztWLuP6FttGNfPLJhaZVP/euvujeNYar36OQ==}
|
|
383
|
+
|
|
384
|
+
'@vitest/snapshot@4.1.2':
|
|
385
|
+
resolution: {integrity: sha512-g7yfUmxYS4mNxk31qbOYsSt2F4m1E02LFqO53Xpzg3zKMhLAPZAjjfyl9e6z7HrW6LvUdTwAQR3HHfLjpko16A==}
|
|
386
|
+
|
|
387
|
+
'@vitest/spy@4.1.2':
|
|
388
|
+
resolution: {integrity: sha512-DU4fBnbVCJGNBwVA6xSToNXrkZNSiw59H8tcuUspVMsBDBST4nfvsPsEHDHGtWRRnqBERBQu7TrTKskmjqTXKA==}
|
|
389
|
+
|
|
390
|
+
'@vitest/utils@4.1.2':
|
|
391
|
+
resolution: {integrity: sha512-xw2/TiX82lQHA06cgbqRKFb5lCAy3axQ4H4SoUFhUsg+wztiet+co86IAMDtF6Vm1hc7J6j09oh/rgDn+JdKIQ==}
|
|
392
|
+
|
|
393
|
+
agent-base@7.1.4:
|
|
394
|
+
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
|
|
395
|
+
engines: {node: '>= 14'}
|
|
396
|
+
|
|
397
|
+
asn1.js@5.4.1:
|
|
398
|
+
resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==}
|
|
399
|
+
|
|
400
|
+
assertion-error@2.0.1:
|
|
401
|
+
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
|
|
402
|
+
engines: {node: '>=12'}
|
|
403
|
+
|
|
404
|
+
base64-js@1.5.1:
|
|
405
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
406
|
+
|
|
407
|
+
better-sqlite3@12.8.0:
|
|
408
|
+
resolution: {integrity: sha512-RxD2Vd96sQDjQr20kdP+F+dK/1OUNiVOl200vKBZY8u0vTwysfolF6Hq+3ZK2+h8My9YvZhHsF+RSGZW2VYrPQ==}
|
|
409
|
+
engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x}
|
|
410
|
+
|
|
411
|
+
bindings@1.5.0:
|
|
412
|
+
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
|
|
413
|
+
|
|
414
|
+
bl@4.1.0:
|
|
415
|
+
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
|
|
416
|
+
|
|
417
|
+
bn.js@4.12.3:
|
|
418
|
+
resolution: {integrity: sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==}
|
|
419
|
+
|
|
420
|
+
buffer-equal-constant-time@1.0.1:
|
|
421
|
+
resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
|
|
422
|
+
|
|
423
|
+
buffer@5.7.1:
|
|
424
|
+
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
|
|
425
|
+
|
|
426
|
+
chai@6.2.2:
|
|
427
|
+
resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==}
|
|
428
|
+
engines: {node: '>=18'}
|
|
429
|
+
|
|
430
|
+
chownr@1.1.4:
|
|
431
|
+
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
|
|
432
|
+
|
|
433
|
+
convert-source-map@2.0.0:
|
|
434
|
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
435
|
+
|
|
436
|
+
debug@4.4.3:
|
|
437
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
438
|
+
engines: {node: '>=6.0'}
|
|
439
|
+
peerDependencies:
|
|
440
|
+
supports-color: '*'
|
|
441
|
+
peerDependenciesMeta:
|
|
442
|
+
supports-color:
|
|
443
|
+
optional: true
|
|
444
|
+
|
|
445
|
+
decompress-response@6.0.0:
|
|
446
|
+
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
|
|
447
|
+
engines: {node: '>=10'}
|
|
448
|
+
|
|
449
|
+
deep-extend@0.6.0:
|
|
450
|
+
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
|
|
451
|
+
engines: {node: '>=4.0.0'}
|
|
452
|
+
|
|
453
|
+
detect-libc@2.1.2:
|
|
454
|
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
455
|
+
engines: {node: '>=8'}
|
|
456
|
+
|
|
457
|
+
ecdsa-sig-formatter@1.0.11:
|
|
458
|
+
resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==}
|
|
459
|
+
|
|
460
|
+
end-of-stream@1.4.5:
|
|
461
|
+
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
|
|
462
|
+
|
|
463
|
+
es-module-lexer@2.0.0:
|
|
464
|
+
resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==}
|
|
465
|
+
|
|
466
|
+
esbuild@0.27.4:
|
|
467
|
+
resolution: {integrity: sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==}
|
|
468
|
+
engines: {node: '>=18'}
|
|
469
|
+
hasBin: true
|
|
470
|
+
|
|
471
|
+
estree-walker@3.0.3:
|
|
472
|
+
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
|
473
|
+
|
|
474
|
+
expand-template@2.0.3:
|
|
475
|
+
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
|
|
476
|
+
engines: {node: '>=6'}
|
|
477
|
+
|
|
478
|
+
expect-type@1.3.0:
|
|
479
|
+
resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
|
|
480
|
+
engines: {node: '>=12.0.0'}
|
|
481
|
+
|
|
482
|
+
fdir@6.5.0:
|
|
483
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
484
|
+
engines: {node: '>=12.0.0'}
|
|
485
|
+
peerDependencies:
|
|
486
|
+
picomatch: ^3 || ^4
|
|
487
|
+
peerDependenciesMeta:
|
|
488
|
+
picomatch:
|
|
489
|
+
optional: true
|
|
490
|
+
|
|
491
|
+
file-uri-to-path@1.0.0:
|
|
492
|
+
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
|
|
493
|
+
|
|
494
|
+
fs-constants@1.0.0:
|
|
495
|
+
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
|
|
496
|
+
|
|
497
|
+
fsevents@2.3.2:
|
|
498
|
+
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
|
|
499
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
500
|
+
os: [darwin]
|
|
501
|
+
|
|
502
|
+
fsevents@2.3.3:
|
|
503
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
504
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
505
|
+
os: [darwin]
|
|
506
|
+
|
|
507
|
+
get-tsconfig@4.13.7:
|
|
508
|
+
resolution: {integrity: sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==}
|
|
509
|
+
|
|
510
|
+
ghostty-web@0.4.0:
|
|
511
|
+
resolution: {integrity: sha512-0puDBik2qapbD/QQBW9o5ZHfXnZBqZWx/ctBiVtKZ6ZLds4NYb+wZuw1cRLXZk9zYovIQ908z3rvFhexAvc5Hg==}
|
|
512
|
+
|
|
513
|
+
github-from-package@0.0.0:
|
|
514
|
+
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
|
|
515
|
+
|
|
516
|
+
http_ece@1.2.0:
|
|
517
|
+
resolution: {integrity: sha512-JrF8SSLVmcvc5NducxgyOrKXe3EsyHMgBFgSaIUGmArKe+rwr0uphRkRXvwiom3I+fpIfoItveHrfudL8/rxuA==}
|
|
518
|
+
engines: {node: '>=16'}
|
|
519
|
+
|
|
520
|
+
https-proxy-agent@7.0.6:
|
|
521
|
+
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
|
|
522
|
+
engines: {node: '>= 14'}
|
|
523
|
+
|
|
524
|
+
ieee754@1.2.1:
|
|
525
|
+
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
|
526
|
+
|
|
527
|
+
inherits@2.0.4:
|
|
528
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
529
|
+
|
|
530
|
+
ini@1.3.8:
|
|
531
|
+
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
|
|
532
|
+
|
|
533
|
+
jwa@2.0.1:
|
|
534
|
+
resolution: {integrity: sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==}
|
|
535
|
+
|
|
536
|
+
jws@4.0.1:
|
|
537
|
+
resolution: {integrity: sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==}
|
|
538
|
+
|
|
539
|
+
lightningcss-android-arm64@1.32.0:
|
|
540
|
+
resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==}
|
|
541
|
+
engines: {node: '>= 12.0.0'}
|
|
542
|
+
cpu: [arm64]
|
|
543
|
+
os: [android]
|
|
544
|
+
|
|
545
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
546
|
+
resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==}
|
|
547
|
+
engines: {node: '>= 12.0.0'}
|
|
548
|
+
cpu: [arm64]
|
|
549
|
+
os: [darwin]
|
|
550
|
+
|
|
551
|
+
lightningcss-darwin-x64@1.32.0:
|
|
552
|
+
resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==}
|
|
553
|
+
engines: {node: '>= 12.0.0'}
|
|
554
|
+
cpu: [x64]
|
|
555
|
+
os: [darwin]
|
|
556
|
+
|
|
557
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
558
|
+
resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==}
|
|
559
|
+
engines: {node: '>= 12.0.0'}
|
|
560
|
+
cpu: [x64]
|
|
561
|
+
os: [freebsd]
|
|
562
|
+
|
|
563
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
564
|
+
resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==}
|
|
565
|
+
engines: {node: '>= 12.0.0'}
|
|
566
|
+
cpu: [arm]
|
|
567
|
+
os: [linux]
|
|
568
|
+
|
|
569
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
570
|
+
resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==}
|
|
571
|
+
engines: {node: '>= 12.0.0'}
|
|
572
|
+
cpu: [arm64]
|
|
573
|
+
os: [linux]
|
|
574
|
+
|
|
575
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
576
|
+
resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
|
|
577
|
+
engines: {node: '>= 12.0.0'}
|
|
578
|
+
cpu: [arm64]
|
|
579
|
+
os: [linux]
|
|
580
|
+
|
|
581
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
582
|
+
resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
|
|
583
|
+
engines: {node: '>= 12.0.0'}
|
|
584
|
+
cpu: [x64]
|
|
585
|
+
os: [linux]
|
|
586
|
+
|
|
587
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
588
|
+
resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
|
|
589
|
+
engines: {node: '>= 12.0.0'}
|
|
590
|
+
cpu: [x64]
|
|
591
|
+
os: [linux]
|
|
592
|
+
|
|
593
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
594
|
+
resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
|
|
595
|
+
engines: {node: '>= 12.0.0'}
|
|
596
|
+
cpu: [arm64]
|
|
597
|
+
os: [win32]
|
|
598
|
+
|
|
599
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
600
|
+
resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==}
|
|
601
|
+
engines: {node: '>= 12.0.0'}
|
|
602
|
+
cpu: [x64]
|
|
603
|
+
os: [win32]
|
|
604
|
+
|
|
605
|
+
lightningcss@1.32.0:
|
|
606
|
+
resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==}
|
|
607
|
+
engines: {node: '>= 12.0.0'}
|
|
608
|
+
|
|
609
|
+
magic-string@0.30.21:
|
|
610
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
611
|
+
|
|
612
|
+
mimic-response@3.1.0:
|
|
613
|
+
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
|
|
614
|
+
engines: {node: '>=10'}
|
|
615
|
+
|
|
616
|
+
minimalistic-assert@1.0.1:
|
|
617
|
+
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
|
|
618
|
+
|
|
619
|
+
minimist@1.2.8:
|
|
620
|
+
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
|
621
|
+
|
|
622
|
+
mkdirp-classic@0.5.3:
|
|
623
|
+
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
|
|
624
|
+
|
|
625
|
+
ms@2.1.3:
|
|
626
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
627
|
+
|
|
628
|
+
nanoid@3.3.11:
|
|
629
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
630
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
631
|
+
hasBin: true
|
|
632
|
+
|
|
633
|
+
napi-build-utils@2.0.0:
|
|
634
|
+
resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==}
|
|
635
|
+
|
|
636
|
+
node-abi@3.89.0:
|
|
637
|
+
resolution: {integrity: sha512-6u9UwL0HlAl21+agMN3YAMXcKByMqwGx+pq+P76vii5f7hTPtKDp08/H9py6DY+cfDw7kQNTGEj/rly3IgbNQA==}
|
|
638
|
+
engines: {node: '>=10'}
|
|
639
|
+
|
|
640
|
+
node-addon-api@7.1.1:
|
|
641
|
+
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
|
|
642
|
+
|
|
643
|
+
node-pty@1.1.0:
|
|
644
|
+
resolution: {integrity: sha512-20JqtutY6JPXTUnL0ij1uad7Qe1baT46lyolh2sSENDd4sTzKZ4nmAFkeAARDKwmlLjPx6XKRlwRUxwjOy+lUg==}
|
|
645
|
+
|
|
646
|
+
obug@2.1.1:
|
|
647
|
+
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
|
|
648
|
+
|
|
649
|
+
once@1.4.0:
|
|
650
|
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
|
651
|
+
|
|
652
|
+
pathe@2.0.3:
|
|
653
|
+
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
654
|
+
|
|
655
|
+
picocolors@1.1.1:
|
|
656
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
657
|
+
|
|
658
|
+
picomatch@4.0.4:
|
|
659
|
+
resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
|
|
660
|
+
engines: {node: '>=12'}
|
|
661
|
+
|
|
662
|
+
playwright-core@1.58.2:
|
|
663
|
+
resolution: {integrity: sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg==}
|
|
664
|
+
engines: {node: '>=18'}
|
|
665
|
+
hasBin: true
|
|
666
|
+
|
|
667
|
+
playwright@1.58.2:
|
|
668
|
+
resolution: {integrity: sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A==}
|
|
669
|
+
engines: {node: '>=18'}
|
|
670
|
+
hasBin: true
|
|
671
|
+
|
|
672
|
+
postcss@8.5.8:
|
|
673
|
+
resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
|
|
674
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
675
|
+
|
|
676
|
+
prebuild-install@7.1.3:
|
|
677
|
+
resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
|
|
678
|
+
engines: {node: '>=10'}
|
|
679
|
+
deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
|
|
680
|
+
hasBin: true
|
|
681
|
+
|
|
682
|
+
pump@3.0.4:
|
|
683
|
+
resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==}
|
|
684
|
+
|
|
685
|
+
qrcode-terminal@0.12.0:
|
|
686
|
+
resolution: {integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==}
|
|
687
|
+
hasBin: true
|
|
688
|
+
|
|
689
|
+
rc@1.2.8:
|
|
690
|
+
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
|
|
691
|
+
hasBin: true
|
|
692
|
+
|
|
693
|
+
readable-stream@3.6.2:
|
|
694
|
+
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
695
|
+
engines: {node: '>= 6'}
|
|
696
|
+
|
|
697
|
+
resolve-pkg-maps@1.0.0:
|
|
698
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
699
|
+
|
|
700
|
+
rolldown@1.0.0-rc.12:
|
|
701
|
+
resolution: {integrity: sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==}
|
|
702
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
703
|
+
hasBin: true
|
|
704
|
+
|
|
705
|
+
safe-buffer@5.2.1:
|
|
706
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
707
|
+
|
|
708
|
+
safer-buffer@2.1.2:
|
|
709
|
+
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
710
|
+
|
|
711
|
+
semver@7.7.4:
|
|
712
|
+
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
|
|
713
|
+
engines: {node: '>=10'}
|
|
714
|
+
hasBin: true
|
|
715
|
+
|
|
716
|
+
siginfo@2.0.0:
|
|
717
|
+
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
|
|
718
|
+
|
|
719
|
+
simple-concat@1.0.1:
|
|
720
|
+
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
|
|
721
|
+
|
|
722
|
+
simple-get@4.0.1:
|
|
723
|
+
resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
|
|
724
|
+
|
|
725
|
+
simple-git@3.33.0:
|
|
726
|
+
resolution: {integrity: sha512-D4V/tGC2sjsoNhoMybKyGoE+v8A60hRawKQ1iFRA1zwuDgGZCBJ4ByOzZ5J8joBbi4Oam0qiPH+GhzmSBwbJng==}
|
|
727
|
+
|
|
728
|
+
source-map-js@1.2.1:
|
|
729
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
730
|
+
engines: {node: '>=0.10.0'}
|
|
731
|
+
|
|
732
|
+
stackback@0.0.2:
|
|
733
|
+
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
|
|
734
|
+
|
|
735
|
+
std-env@4.0.0:
|
|
736
|
+
resolution: {integrity: sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==}
|
|
737
|
+
|
|
738
|
+
string_decoder@1.3.0:
|
|
739
|
+
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
740
|
+
|
|
741
|
+
strip-json-comments@2.0.1:
|
|
742
|
+
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
|
|
743
|
+
engines: {node: '>=0.10.0'}
|
|
744
|
+
|
|
745
|
+
tar-fs@2.1.4:
|
|
746
|
+
resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==}
|
|
747
|
+
|
|
748
|
+
tar-stream@2.2.0:
|
|
749
|
+
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
|
|
750
|
+
engines: {node: '>=6'}
|
|
751
|
+
|
|
752
|
+
tinybench@2.9.0:
|
|
753
|
+
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
|
|
754
|
+
|
|
755
|
+
tinyexec@1.0.4:
|
|
756
|
+
resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==}
|
|
757
|
+
engines: {node: '>=18'}
|
|
758
|
+
|
|
759
|
+
tinyglobby@0.2.15:
|
|
760
|
+
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
761
|
+
engines: {node: '>=12.0.0'}
|
|
762
|
+
|
|
763
|
+
tinyrainbow@3.1.0:
|
|
764
|
+
resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==}
|
|
765
|
+
engines: {node: '>=14.0.0'}
|
|
766
|
+
|
|
767
|
+
tslib@2.8.1:
|
|
768
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
769
|
+
|
|
770
|
+
tsx@4.21.0:
|
|
771
|
+
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
|
772
|
+
engines: {node: '>=18.0.0'}
|
|
773
|
+
hasBin: true
|
|
774
|
+
|
|
775
|
+
tunnel-agent@0.6.0:
|
|
776
|
+
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
|
|
777
|
+
|
|
778
|
+
typescript@6.0.2:
|
|
779
|
+
resolution: {integrity: sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==}
|
|
780
|
+
engines: {node: '>=14.17'}
|
|
781
|
+
hasBin: true
|
|
782
|
+
|
|
783
|
+
undici-types@7.18.2:
|
|
784
|
+
resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
|
|
785
|
+
|
|
786
|
+
util-deprecate@1.0.2:
|
|
787
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
788
|
+
|
|
789
|
+
vite@8.0.3:
|
|
790
|
+
resolution: {integrity: sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==}
|
|
791
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
792
|
+
hasBin: true
|
|
793
|
+
peerDependencies:
|
|
794
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
795
|
+
'@vitejs/devtools': ^0.1.0
|
|
796
|
+
esbuild: ^0.27.0
|
|
797
|
+
jiti: '>=1.21.0'
|
|
798
|
+
less: ^4.0.0
|
|
799
|
+
sass: ^1.70.0
|
|
800
|
+
sass-embedded: ^1.70.0
|
|
801
|
+
stylus: '>=0.54.8'
|
|
802
|
+
sugarss: ^5.0.0
|
|
803
|
+
terser: ^5.16.0
|
|
804
|
+
tsx: ^4.8.1
|
|
805
|
+
yaml: ^2.4.2
|
|
806
|
+
peerDependenciesMeta:
|
|
807
|
+
'@types/node':
|
|
808
|
+
optional: true
|
|
809
|
+
'@vitejs/devtools':
|
|
810
|
+
optional: true
|
|
811
|
+
esbuild:
|
|
812
|
+
optional: true
|
|
813
|
+
jiti:
|
|
814
|
+
optional: true
|
|
815
|
+
less:
|
|
816
|
+
optional: true
|
|
817
|
+
sass:
|
|
818
|
+
optional: true
|
|
819
|
+
sass-embedded:
|
|
820
|
+
optional: true
|
|
821
|
+
stylus:
|
|
822
|
+
optional: true
|
|
823
|
+
sugarss:
|
|
824
|
+
optional: true
|
|
825
|
+
terser:
|
|
826
|
+
optional: true
|
|
827
|
+
tsx:
|
|
828
|
+
optional: true
|
|
829
|
+
yaml:
|
|
830
|
+
optional: true
|
|
831
|
+
|
|
832
|
+
vitest@4.1.2:
|
|
833
|
+
resolution: {integrity: sha512-xjR1dMTVHlFLh98JE3i/f/WePqJsah4A0FK9cc8Ehp9Udk0AZk6ccpIZhh1qJ/yxVWRZ+Q54ocnD8TXmkhspGg==}
|
|
834
|
+
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
|
|
835
|
+
hasBin: true
|
|
836
|
+
peerDependencies:
|
|
837
|
+
'@edge-runtime/vm': '*'
|
|
838
|
+
'@opentelemetry/api': ^1.9.0
|
|
839
|
+
'@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
|
|
840
|
+
'@vitest/browser-playwright': 4.1.2
|
|
841
|
+
'@vitest/browser-preview': 4.1.2
|
|
842
|
+
'@vitest/browser-webdriverio': 4.1.2
|
|
843
|
+
'@vitest/ui': 4.1.2
|
|
844
|
+
happy-dom: '*'
|
|
845
|
+
jsdom: '*'
|
|
846
|
+
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
847
|
+
peerDependenciesMeta:
|
|
848
|
+
'@edge-runtime/vm':
|
|
849
|
+
optional: true
|
|
850
|
+
'@opentelemetry/api':
|
|
851
|
+
optional: true
|
|
852
|
+
'@types/node':
|
|
853
|
+
optional: true
|
|
854
|
+
'@vitest/browser-playwright':
|
|
855
|
+
optional: true
|
|
856
|
+
'@vitest/browser-preview':
|
|
857
|
+
optional: true
|
|
858
|
+
'@vitest/browser-webdriverio':
|
|
859
|
+
optional: true
|
|
860
|
+
'@vitest/ui':
|
|
861
|
+
optional: true
|
|
862
|
+
happy-dom:
|
|
863
|
+
optional: true
|
|
864
|
+
jsdom:
|
|
865
|
+
optional: true
|
|
866
|
+
|
|
867
|
+
web-push@3.6.7:
|
|
868
|
+
resolution: {integrity: sha512-OpiIUe8cuGjrj3mMBFWY+e4MMIkW3SVT+7vEIjvD9kejGUypv8GPDf84JdPWskK8zMRIJ6xYGm+Kxr8YkPyA0A==}
|
|
869
|
+
engines: {node: '>= 16'}
|
|
870
|
+
hasBin: true
|
|
871
|
+
|
|
872
|
+
why-is-node-running@2.3.0:
|
|
873
|
+
resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
|
|
874
|
+
engines: {node: '>=8'}
|
|
875
|
+
hasBin: true
|
|
876
|
+
|
|
877
|
+
wrappy@1.0.2:
|
|
878
|
+
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
879
|
+
|
|
880
|
+
ws@8.20.0:
|
|
881
|
+
resolution: {integrity: sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==}
|
|
882
|
+
engines: {node: '>=10.0.0'}
|
|
883
|
+
peerDependencies:
|
|
884
|
+
bufferutil: ^4.0.1
|
|
885
|
+
utf-8-validate: '>=5.0.2'
|
|
886
|
+
peerDependenciesMeta:
|
|
887
|
+
bufferutil:
|
|
888
|
+
optional: true
|
|
889
|
+
utf-8-validate:
|
|
890
|
+
optional: true
|
|
891
|
+
|
|
892
|
+
snapshots:
|
|
893
|
+
|
|
894
|
+
'@emnapi/core@1.9.1':
|
|
895
|
+
dependencies:
|
|
896
|
+
'@emnapi/wasi-threads': 1.2.0
|
|
897
|
+
tslib: 2.8.1
|
|
898
|
+
optional: true
|
|
899
|
+
|
|
900
|
+
'@emnapi/runtime@1.9.1':
|
|
901
|
+
dependencies:
|
|
902
|
+
tslib: 2.8.1
|
|
903
|
+
optional: true
|
|
904
|
+
|
|
905
|
+
'@emnapi/wasi-threads@1.2.0':
|
|
906
|
+
dependencies:
|
|
907
|
+
tslib: 2.8.1
|
|
908
|
+
optional: true
|
|
909
|
+
|
|
910
|
+
'@esbuild/aix-ppc64@0.27.4':
|
|
911
|
+
optional: true
|
|
912
|
+
|
|
913
|
+
'@esbuild/android-arm64@0.27.4':
|
|
914
|
+
optional: true
|
|
915
|
+
|
|
916
|
+
'@esbuild/android-arm@0.27.4':
|
|
917
|
+
optional: true
|
|
918
|
+
|
|
919
|
+
'@esbuild/android-x64@0.27.4':
|
|
920
|
+
optional: true
|
|
921
|
+
|
|
922
|
+
'@esbuild/darwin-arm64@0.27.4':
|
|
923
|
+
optional: true
|
|
924
|
+
|
|
925
|
+
'@esbuild/darwin-x64@0.27.4':
|
|
926
|
+
optional: true
|
|
927
|
+
|
|
928
|
+
'@esbuild/freebsd-arm64@0.27.4':
|
|
929
|
+
optional: true
|
|
930
|
+
|
|
931
|
+
'@esbuild/freebsd-x64@0.27.4':
|
|
932
|
+
optional: true
|
|
933
|
+
|
|
934
|
+
'@esbuild/linux-arm64@0.27.4':
|
|
935
|
+
optional: true
|
|
936
|
+
|
|
937
|
+
'@esbuild/linux-arm@0.27.4':
|
|
938
|
+
optional: true
|
|
939
|
+
|
|
940
|
+
'@esbuild/linux-ia32@0.27.4':
|
|
941
|
+
optional: true
|
|
942
|
+
|
|
943
|
+
'@esbuild/linux-loong64@0.27.4':
|
|
944
|
+
optional: true
|
|
945
|
+
|
|
946
|
+
'@esbuild/linux-mips64el@0.27.4':
|
|
947
|
+
optional: true
|
|
948
|
+
|
|
949
|
+
'@esbuild/linux-ppc64@0.27.4':
|
|
950
|
+
optional: true
|
|
951
|
+
|
|
952
|
+
'@esbuild/linux-riscv64@0.27.4':
|
|
953
|
+
optional: true
|
|
954
|
+
|
|
955
|
+
'@esbuild/linux-s390x@0.27.4':
|
|
956
|
+
optional: true
|
|
957
|
+
|
|
958
|
+
'@esbuild/linux-x64@0.27.4':
|
|
959
|
+
optional: true
|
|
960
|
+
|
|
961
|
+
'@esbuild/netbsd-arm64@0.27.4':
|
|
962
|
+
optional: true
|
|
963
|
+
|
|
964
|
+
'@esbuild/netbsd-x64@0.27.4':
|
|
965
|
+
optional: true
|
|
966
|
+
|
|
967
|
+
'@esbuild/openbsd-arm64@0.27.4':
|
|
968
|
+
optional: true
|
|
969
|
+
|
|
970
|
+
'@esbuild/openbsd-x64@0.27.4':
|
|
971
|
+
optional: true
|
|
972
|
+
|
|
973
|
+
'@esbuild/openharmony-arm64@0.27.4':
|
|
974
|
+
optional: true
|
|
975
|
+
|
|
976
|
+
'@esbuild/sunos-x64@0.27.4':
|
|
977
|
+
optional: true
|
|
978
|
+
|
|
979
|
+
'@esbuild/win32-arm64@0.27.4':
|
|
980
|
+
optional: true
|
|
981
|
+
|
|
982
|
+
'@esbuild/win32-ia32@0.27.4':
|
|
983
|
+
optional: true
|
|
984
|
+
|
|
985
|
+
'@esbuild/win32-x64@0.27.4':
|
|
986
|
+
optional: true
|
|
987
|
+
|
|
988
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
989
|
+
|
|
990
|
+
'@kwsites/file-exists@1.1.1':
|
|
991
|
+
dependencies:
|
|
992
|
+
debug: 4.4.3
|
|
993
|
+
transitivePeerDependencies:
|
|
994
|
+
- supports-color
|
|
995
|
+
|
|
996
|
+
'@kwsites/promise-deferred@1.1.1': {}
|
|
997
|
+
|
|
998
|
+
'@napi-rs/wasm-runtime@1.1.2(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)':
|
|
999
|
+
dependencies:
|
|
1000
|
+
'@emnapi/core': 1.9.1
|
|
1001
|
+
'@emnapi/runtime': 1.9.1
|
|
1002
|
+
'@tybys/wasm-util': 0.10.1
|
|
1003
|
+
optional: true
|
|
1004
|
+
|
|
1005
|
+
'@oxc-project/types@0.122.0': {}
|
|
1006
|
+
|
|
1007
|
+
'@playwright/test@1.58.2':
|
|
1008
|
+
dependencies:
|
|
1009
|
+
playwright: 1.58.2
|
|
1010
|
+
|
|
1011
|
+
'@rolldown/binding-android-arm64@1.0.0-rc.12':
|
|
1012
|
+
optional: true
|
|
1013
|
+
|
|
1014
|
+
'@rolldown/binding-darwin-arm64@1.0.0-rc.12':
|
|
1015
|
+
optional: true
|
|
1016
|
+
|
|
1017
|
+
'@rolldown/binding-darwin-x64@1.0.0-rc.12':
|
|
1018
|
+
optional: true
|
|
1019
|
+
|
|
1020
|
+
'@rolldown/binding-freebsd-x64@1.0.0-rc.12':
|
|
1021
|
+
optional: true
|
|
1022
|
+
|
|
1023
|
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12':
|
|
1024
|
+
optional: true
|
|
1025
|
+
|
|
1026
|
+
'@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12':
|
|
1027
|
+
optional: true
|
|
1028
|
+
|
|
1029
|
+
'@rolldown/binding-linux-arm64-musl@1.0.0-rc.12':
|
|
1030
|
+
optional: true
|
|
1031
|
+
|
|
1032
|
+
'@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12':
|
|
1033
|
+
optional: true
|
|
1034
|
+
|
|
1035
|
+
'@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12':
|
|
1036
|
+
optional: true
|
|
1037
|
+
|
|
1038
|
+
'@rolldown/binding-linux-x64-gnu@1.0.0-rc.12':
|
|
1039
|
+
optional: true
|
|
1040
|
+
|
|
1041
|
+
'@rolldown/binding-linux-x64-musl@1.0.0-rc.12':
|
|
1042
|
+
optional: true
|
|
1043
|
+
|
|
1044
|
+
'@rolldown/binding-openharmony-arm64@1.0.0-rc.12':
|
|
1045
|
+
optional: true
|
|
1046
|
+
|
|
1047
|
+
'@rolldown/binding-wasm32-wasi@1.0.0-rc.12(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)':
|
|
1048
|
+
dependencies:
|
|
1049
|
+
'@napi-rs/wasm-runtime': 1.1.2(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)
|
|
1050
|
+
transitivePeerDependencies:
|
|
1051
|
+
- '@emnapi/core'
|
|
1052
|
+
- '@emnapi/runtime'
|
|
1053
|
+
optional: true
|
|
1054
|
+
|
|
1055
|
+
'@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12':
|
|
1056
|
+
optional: true
|
|
1057
|
+
|
|
1058
|
+
'@rolldown/binding-win32-x64-msvc@1.0.0-rc.12':
|
|
1059
|
+
optional: true
|
|
1060
|
+
|
|
1061
|
+
'@rolldown/pluginutils@1.0.0-rc.12': {}
|
|
1062
|
+
|
|
1063
|
+
'@standard-schema/spec@1.1.0': {}
|
|
1064
|
+
|
|
1065
|
+
'@tybys/wasm-util@0.10.1':
|
|
1066
|
+
dependencies:
|
|
1067
|
+
tslib: 2.8.1
|
|
1068
|
+
optional: true
|
|
1069
|
+
|
|
1070
|
+
'@types/better-sqlite3@7.6.13':
|
|
1071
|
+
dependencies:
|
|
1072
|
+
'@types/node': 25.5.0
|
|
1073
|
+
|
|
1074
|
+
'@types/chai@5.2.3':
|
|
1075
|
+
dependencies:
|
|
1076
|
+
'@types/deep-eql': 4.0.2
|
|
1077
|
+
assertion-error: 2.0.1
|
|
1078
|
+
|
|
1079
|
+
'@types/deep-eql@4.0.2': {}
|
|
1080
|
+
|
|
1081
|
+
'@types/estree@1.0.8': {}
|
|
1082
|
+
|
|
1083
|
+
'@types/node@25.5.0':
|
|
1084
|
+
dependencies:
|
|
1085
|
+
undici-types: 7.18.2
|
|
1086
|
+
|
|
1087
|
+
'@types/ws@8.18.1':
|
|
1088
|
+
dependencies:
|
|
1089
|
+
'@types/node': 25.5.0
|
|
1090
|
+
|
|
1091
|
+
'@vitest/expect@4.1.2':
|
|
1092
|
+
dependencies:
|
|
1093
|
+
'@standard-schema/spec': 1.1.0
|
|
1094
|
+
'@types/chai': 5.2.3
|
|
1095
|
+
'@vitest/spy': 4.1.2
|
|
1096
|
+
'@vitest/utils': 4.1.2
|
|
1097
|
+
chai: 6.2.2
|
|
1098
|
+
tinyrainbow: 3.1.0
|
|
1099
|
+
|
|
1100
|
+
'@vitest/mocker@4.1.2(vite@8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(@types/node@25.5.0)(esbuild@0.27.4)(tsx@4.21.0))':
|
|
1101
|
+
dependencies:
|
|
1102
|
+
'@vitest/spy': 4.1.2
|
|
1103
|
+
estree-walker: 3.0.3
|
|
1104
|
+
magic-string: 0.30.21
|
|
1105
|
+
optionalDependencies:
|
|
1106
|
+
vite: 8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(@types/node@25.5.0)(esbuild@0.27.4)(tsx@4.21.0)
|
|
1107
|
+
|
|
1108
|
+
'@vitest/pretty-format@4.1.2':
|
|
1109
|
+
dependencies:
|
|
1110
|
+
tinyrainbow: 3.1.0
|
|
1111
|
+
|
|
1112
|
+
'@vitest/runner@4.1.2':
|
|
1113
|
+
dependencies:
|
|
1114
|
+
'@vitest/utils': 4.1.2
|
|
1115
|
+
pathe: 2.0.3
|
|
1116
|
+
|
|
1117
|
+
'@vitest/snapshot@4.1.2':
|
|
1118
|
+
dependencies:
|
|
1119
|
+
'@vitest/pretty-format': 4.1.2
|
|
1120
|
+
'@vitest/utils': 4.1.2
|
|
1121
|
+
magic-string: 0.30.21
|
|
1122
|
+
pathe: 2.0.3
|
|
1123
|
+
|
|
1124
|
+
'@vitest/spy@4.1.2': {}
|
|
1125
|
+
|
|
1126
|
+
'@vitest/utils@4.1.2':
|
|
1127
|
+
dependencies:
|
|
1128
|
+
'@vitest/pretty-format': 4.1.2
|
|
1129
|
+
convert-source-map: 2.0.0
|
|
1130
|
+
tinyrainbow: 3.1.0
|
|
1131
|
+
|
|
1132
|
+
agent-base@7.1.4: {}
|
|
1133
|
+
|
|
1134
|
+
asn1.js@5.4.1:
|
|
1135
|
+
dependencies:
|
|
1136
|
+
bn.js: 4.12.3
|
|
1137
|
+
inherits: 2.0.4
|
|
1138
|
+
minimalistic-assert: 1.0.1
|
|
1139
|
+
safer-buffer: 2.1.2
|
|
1140
|
+
|
|
1141
|
+
assertion-error@2.0.1: {}
|
|
1142
|
+
|
|
1143
|
+
base64-js@1.5.1: {}
|
|
1144
|
+
|
|
1145
|
+
better-sqlite3@12.8.0:
|
|
1146
|
+
dependencies:
|
|
1147
|
+
bindings: 1.5.0
|
|
1148
|
+
prebuild-install: 7.1.3
|
|
1149
|
+
|
|
1150
|
+
bindings@1.5.0:
|
|
1151
|
+
dependencies:
|
|
1152
|
+
file-uri-to-path: 1.0.0
|
|
1153
|
+
|
|
1154
|
+
bl@4.1.0:
|
|
1155
|
+
dependencies:
|
|
1156
|
+
buffer: 5.7.1
|
|
1157
|
+
inherits: 2.0.4
|
|
1158
|
+
readable-stream: 3.6.2
|
|
1159
|
+
|
|
1160
|
+
bn.js@4.12.3: {}
|
|
1161
|
+
|
|
1162
|
+
buffer-equal-constant-time@1.0.1: {}
|
|
1163
|
+
|
|
1164
|
+
buffer@5.7.1:
|
|
1165
|
+
dependencies:
|
|
1166
|
+
base64-js: 1.5.1
|
|
1167
|
+
ieee754: 1.2.1
|
|
1168
|
+
|
|
1169
|
+
chai@6.2.2: {}
|
|
1170
|
+
|
|
1171
|
+
chownr@1.1.4: {}
|
|
1172
|
+
|
|
1173
|
+
convert-source-map@2.0.0: {}
|
|
1174
|
+
|
|
1175
|
+
debug@4.4.3:
|
|
1176
|
+
dependencies:
|
|
1177
|
+
ms: 2.1.3
|
|
1178
|
+
|
|
1179
|
+
decompress-response@6.0.0:
|
|
1180
|
+
dependencies:
|
|
1181
|
+
mimic-response: 3.1.0
|
|
1182
|
+
|
|
1183
|
+
deep-extend@0.6.0: {}
|
|
1184
|
+
|
|
1185
|
+
detect-libc@2.1.2: {}
|
|
1186
|
+
|
|
1187
|
+
ecdsa-sig-formatter@1.0.11:
|
|
1188
|
+
dependencies:
|
|
1189
|
+
safe-buffer: 5.2.1
|
|
1190
|
+
|
|
1191
|
+
end-of-stream@1.4.5:
|
|
1192
|
+
dependencies:
|
|
1193
|
+
once: 1.4.0
|
|
1194
|
+
|
|
1195
|
+
es-module-lexer@2.0.0: {}
|
|
1196
|
+
|
|
1197
|
+
esbuild@0.27.4:
|
|
1198
|
+
optionalDependencies:
|
|
1199
|
+
'@esbuild/aix-ppc64': 0.27.4
|
|
1200
|
+
'@esbuild/android-arm': 0.27.4
|
|
1201
|
+
'@esbuild/android-arm64': 0.27.4
|
|
1202
|
+
'@esbuild/android-x64': 0.27.4
|
|
1203
|
+
'@esbuild/darwin-arm64': 0.27.4
|
|
1204
|
+
'@esbuild/darwin-x64': 0.27.4
|
|
1205
|
+
'@esbuild/freebsd-arm64': 0.27.4
|
|
1206
|
+
'@esbuild/freebsd-x64': 0.27.4
|
|
1207
|
+
'@esbuild/linux-arm': 0.27.4
|
|
1208
|
+
'@esbuild/linux-arm64': 0.27.4
|
|
1209
|
+
'@esbuild/linux-ia32': 0.27.4
|
|
1210
|
+
'@esbuild/linux-loong64': 0.27.4
|
|
1211
|
+
'@esbuild/linux-mips64el': 0.27.4
|
|
1212
|
+
'@esbuild/linux-ppc64': 0.27.4
|
|
1213
|
+
'@esbuild/linux-riscv64': 0.27.4
|
|
1214
|
+
'@esbuild/linux-s390x': 0.27.4
|
|
1215
|
+
'@esbuild/linux-x64': 0.27.4
|
|
1216
|
+
'@esbuild/netbsd-arm64': 0.27.4
|
|
1217
|
+
'@esbuild/netbsd-x64': 0.27.4
|
|
1218
|
+
'@esbuild/openbsd-arm64': 0.27.4
|
|
1219
|
+
'@esbuild/openbsd-x64': 0.27.4
|
|
1220
|
+
'@esbuild/openharmony-arm64': 0.27.4
|
|
1221
|
+
'@esbuild/sunos-x64': 0.27.4
|
|
1222
|
+
'@esbuild/win32-arm64': 0.27.4
|
|
1223
|
+
'@esbuild/win32-ia32': 0.27.4
|
|
1224
|
+
'@esbuild/win32-x64': 0.27.4
|
|
1225
|
+
|
|
1226
|
+
estree-walker@3.0.3:
|
|
1227
|
+
dependencies:
|
|
1228
|
+
'@types/estree': 1.0.8
|
|
1229
|
+
|
|
1230
|
+
expand-template@2.0.3: {}
|
|
1231
|
+
|
|
1232
|
+
expect-type@1.3.0: {}
|
|
1233
|
+
|
|
1234
|
+
fdir@6.5.0(picomatch@4.0.4):
|
|
1235
|
+
optionalDependencies:
|
|
1236
|
+
picomatch: 4.0.4
|
|
1237
|
+
|
|
1238
|
+
file-uri-to-path@1.0.0: {}
|
|
1239
|
+
|
|
1240
|
+
fs-constants@1.0.0: {}
|
|
1241
|
+
|
|
1242
|
+
fsevents@2.3.2:
|
|
1243
|
+
optional: true
|
|
1244
|
+
|
|
1245
|
+
fsevents@2.3.3:
|
|
1246
|
+
optional: true
|
|
1247
|
+
|
|
1248
|
+
get-tsconfig@4.13.7:
|
|
1249
|
+
dependencies:
|
|
1250
|
+
resolve-pkg-maps: 1.0.0
|
|
1251
|
+
|
|
1252
|
+
ghostty-web@0.4.0: {}
|
|
1253
|
+
|
|
1254
|
+
github-from-package@0.0.0: {}
|
|
1255
|
+
|
|
1256
|
+
http_ece@1.2.0: {}
|
|
1257
|
+
|
|
1258
|
+
https-proxy-agent@7.0.6:
|
|
1259
|
+
dependencies:
|
|
1260
|
+
agent-base: 7.1.4
|
|
1261
|
+
debug: 4.4.3
|
|
1262
|
+
transitivePeerDependencies:
|
|
1263
|
+
- supports-color
|
|
1264
|
+
|
|
1265
|
+
ieee754@1.2.1: {}
|
|
1266
|
+
|
|
1267
|
+
inherits@2.0.4: {}
|
|
1268
|
+
|
|
1269
|
+
ini@1.3.8: {}
|
|
1270
|
+
|
|
1271
|
+
jwa@2.0.1:
|
|
1272
|
+
dependencies:
|
|
1273
|
+
buffer-equal-constant-time: 1.0.1
|
|
1274
|
+
ecdsa-sig-formatter: 1.0.11
|
|
1275
|
+
safe-buffer: 5.2.1
|
|
1276
|
+
|
|
1277
|
+
jws@4.0.1:
|
|
1278
|
+
dependencies:
|
|
1279
|
+
jwa: 2.0.1
|
|
1280
|
+
safe-buffer: 5.2.1
|
|
1281
|
+
|
|
1282
|
+
lightningcss-android-arm64@1.32.0:
|
|
1283
|
+
optional: true
|
|
1284
|
+
|
|
1285
|
+
lightningcss-darwin-arm64@1.32.0:
|
|
1286
|
+
optional: true
|
|
1287
|
+
|
|
1288
|
+
lightningcss-darwin-x64@1.32.0:
|
|
1289
|
+
optional: true
|
|
1290
|
+
|
|
1291
|
+
lightningcss-freebsd-x64@1.32.0:
|
|
1292
|
+
optional: true
|
|
1293
|
+
|
|
1294
|
+
lightningcss-linux-arm-gnueabihf@1.32.0:
|
|
1295
|
+
optional: true
|
|
1296
|
+
|
|
1297
|
+
lightningcss-linux-arm64-gnu@1.32.0:
|
|
1298
|
+
optional: true
|
|
1299
|
+
|
|
1300
|
+
lightningcss-linux-arm64-musl@1.32.0:
|
|
1301
|
+
optional: true
|
|
1302
|
+
|
|
1303
|
+
lightningcss-linux-x64-gnu@1.32.0:
|
|
1304
|
+
optional: true
|
|
1305
|
+
|
|
1306
|
+
lightningcss-linux-x64-musl@1.32.0:
|
|
1307
|
+
optional: true
|
|
1308
|
+
|
|
1309
|
+
lightningcss-win32-arm64-msvc@1.32.0:
|
|
1310
|
+
optional: true
|
|
1311
|
+
|
|
1312
|
+
lightningcss-win32-x64-msvc@1.32.0:
|
|
1313
|
+
optional: true
|
|
1314
|
+
|
|
1315
|
+
lightningcss@1.32.0:
|
|
1316
|
+
dependencies:
|
|
1317
|
+
detect-libc: 2.1.2
|
|
1318
|
+
optionalDependencies:
|
|
1319
|
+
lightningcss-android-arm64: 1.32.0
|
|
1320
|
+
lightningcss-darwin-arm64: 1.32.0
|
|
1321
|
+
lightningcss-darwin-x64: 1.32.0
|
|
1322
|
+
lightningcss-freebsd-x64: 1.32.0
|
|
1323
|
+
lightningcss-linux-arm-gnueabihf: 1.32.0
|
|
1324
|
+
lightningcss-linux-arm64-gnu: 1.32.0
|
|
1325
|
+
lightningcss-linux-arm64-musl: 1.32.0
|
|
1326
|
+
lightningcss-linux-x64-gnu: 1.32.0
|
|
1327
|
+
lightningcss-linux-x64-musl: 1.32.0
|
|
1328
|
+
lightningcss-win32-arm64-msvc: 1.32.0
|
|
1329
|
+
lightningcss-win32-x64-msvc: 1.32.0
|
|
1330
|
+
|
|
1331
|
+
magic-string@0.30.21:
|
|
1332
|
+
dependencies:
|
|
1333
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1334
|
+
|
|
1335
|
+
mimic-response@3.1.0: {}
|
|
1336
|
+
|
|
1337
|
+
minimalistic-assert@1.0.1: {}
|
|
1338
|
+
|
|
1339
|
+
minimist@1.2.8: {}
|
|
1340
|
+
|
|
1341
|
+
mkdirp-classic@0.5.3: {}
|
|
1342
|
+
|
|
1343
|
+
ms@2.1.3: {}
|
|
1344
|
+
|
|
1345
|
+
nanoid@3.3.11: {}
|
|
1346
|
+
|
|
1347
|
+
napi-build-utils@2.0.0: {}
|
|
1348
|
+
|
|
1349
|
+
node-abi@3.89.0:
|
|
1350
|
+
dependencies:
|
|
1351
|
+
semver: 7.7.4
|
|
1352
|
+
|
|
1353
|
+
node-addon-api@7.1.1: {}
|
|
1354
|
+
|
|
1355
|
+
node-pty@1.1.0:
|
|
1356
|
+
dependencies:
|
|
1357
|
+
node-addon-api: 7.1.1
|
|
1358
|
+
|
|
1359
|
+
obug@2.1.1: {}
|
|
1360
|
+
|
|
1361
|
+
once@1.4.0:
|
|
1362
|
+
dependencies:
|
|
1363
|
+
wrappy: 1.0.2
|
|
1364
|
+
|
|
1365
|
+
pathe@2.0.3: {}
|
|
1366
|
+
|
|
1367
|
+
picocolors@1.1.1: {}
|
|
1368
|
+
|
|
1369
|
+
picomatch@4.0.4: {}
|
|
1370
|
+
|
|
1371
|
+
playwright-core@1.58.2: {}
|
|
1372
|
+
|
|
1373
|
+
playwright@1.58.2:
|
|
1374
|
+
dependencies:
|
|
1375
|
+
playwright-core: 1.58.2
|
|
1376
|
+
optionalDependencies:
|
|
1377
|
+
fsevents: 2.3.2
|
|
1378
|
+
|
|
1379
|
+
postcss@8.5.8:
|
|
1380
|
+
dependencies:
|
|
1381
|
+
nanoid: 3.3.11
|
|
1382
|
+
picocolors: 1.1.1
|
|
1383
|
+
source-map-js: 1.2.1
|
|
1384
|
+
|
|
1385
|
+
prebuild-install@7.1.3:
|
|
1386
|
+
dependencies:
|
|
1387
|
+
detect-libc: 2.1.2
|
|
1388
|
+
expand-template: 2.0.3
|
|
1389
|
+
github-from-package: 0.0.0
|
|
1390
|
+
minimist: 1.2.8
|
|
1391
|
+
mkdirp-classic: 0.5.3
|
|
1392
|
+
napi-build-utils: 2.0.0
|
|
1393
|
+
node-abi: 3.89.0
|
|
1394
|
+
pump: 3.0.4
|
|
1395
|
+
rc: 1.2.8
|
|
1396
|
+
simple-get: 4.0.1
|
|
1397
|
+
tar-fs: 2.1.4
|
|
1398
|
+
tunnel-agent: 0.6.0
|
|
1399
|
+
|
|
1400
|
+
pump@3.0.4:
|
|
1401
|
+
dependencies:
|
|
1402
|
+
end-of-stream: 1.4.5
|
|
1403
|
+
once: 1.4.0
|
|
1404
|
+
|
|
1405
|
+
qrcode-terminal@0.12.0: {}
|
|
1406
|
+
|
|
1407
|
+
rc@1.2.8:
|
|
1408
|
+
dependencies:
|
|
1409
|
+
deep-extend: 0.6.0
|
|
1410
|
+
ini: 1.3.8
|
|
1411
|
+
minimist: 1.2.8
|
|
1412
|
+
strip-json-comments: 2.0.1
|
|
1413
|
+
|
|
1414
|
+
readable-stream@3.6.2:
|
|
1415
|
+
dependencies:
|
|
1416
|
+
inherits: 2.0.4
|
|
1417
|
+
string_decoder: 1.3.0
|
|
1418
|
+
util-deprecate: 1.0.2
|
|
1419
|
+
|
|
1420
|
+
resolve-pkg-maps@1.0.0: {}
|
|
1421
|
+
|
|
1422
|
+
rolldown@1.0.0-rc.12(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1):
|
|
1423
|
+
dependencies:
|
|
1424
|
+
'@oxc-project/types': 0.122.0
|
|
1425
|
+
'@rolldown/pluginutils': 1.0.0-rc.12
|
|
1426
|
+
optionalDependencies:
|
|
1427
|
+
'@rolldown/binding-android-arm64': 1.0.0-rc.12
|
|
1428
|
+
'@rolldown/binding-darwin-arm64': 1.0.0-rc.12
|
|
1429
|
+
'@rolldown/binding-darwin-x64': 1.0.0-rc.12
|
|
1430
|
+
'@rolldown/binding-freebsd-x64': 1.0.0-rc.12
|
|
1431
|
+
'@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.12
|
|
1432
|
+
'@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.12
|
|
1433
|
+
'@rolldown/binding-linux-arm64-musl': 1.0.0-rc.12
|
|
1434
|
+
'@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.12
|
|
1435
|
+
'@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.12
|
|
1436
|
+
'@rolldown/binding-linux-x64-gnu': 1.0.0-rc.12
|
|
1437
|
+
'@rolldown/binding-linux-x64-musl': 1.0.0-rc.12
|
|
1438
|
+
'@rolldown/binding-openharmony-arm64': 1.0.0-rc.12
|
|
1439
|
+
'@rolldown/binding-wasm32-wasi': 1.0.0-rc.12(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)
|
|
1440
|
+
'@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.12
|
|
1441
|
+
'@rolldown/binding-win32-x64-msvc': 1.0.0-rc.12
|
|
1442
|
+
transitivePeerDependencies:
|
|
1443
|
+
- '@emnapi/core'
|
|
1444
|
+
- '@emnapi/runtime'
|
|
1445
|
+
|
|
1446
|
+
safe-buffer@5.2.1: {}
|
|
1447
|
+
|
|
1448
|
+
safer-buffer@2.1.2: {}
|
|
1449
|
+
|
|
1450
|
+
semver@7.7.4: {}
|
|
1451
|
+
|
|
1452
|
+
siginfo@2.0.0: {}
|
|
1453
|
+
|
|
1454
|
+
simple-concat@1.0.1: {}
|
|
1455
|
+
|
|
1456
|
+
simple-get@4.0.1:
|
|
1457
|
+
dependencies:
|
|
1458
|
+
decompress-response: 6.0.0
|
|
1459
|
+
once: 1.4.0
|
|
1460
|
+
simple-concat: 1.0.1
|
|
1461
|
+
|
|
1462
|
+
simple-git@3.33.0:
|
|
1463
|
+
dependencies:
|
|
1464
|
+
'@kwsites/file-exists': 1.1.1
|
|
1465
|
+
'@kwsites/promise-deferred': 1.1.1
|
|
1466
|
+
debug: 4.4.3
|
|
1467
|
+
transitivePeerDependencies:
|
|
1468
|
+
- supports-color
|
|
1469
|
+
|
|
1470
|
+
source-map-js@1.2.1: {}
|
|
1471
|
+
|
|
1472
|
+
stackback@0.0.2: {}
|
|
1473
|
+
|
|
1474
|
+
std-env@4.0.0: {}
|
|
1475
|
+
|
|
1476
|
+
string_decoder@1.3.0:
|
|
1477
|
+
dependencies:
|
|
1478
|
+
safe-buffer: 5.2.1
|
|
1479
|
+
|
|
1480
|
+
strip-json-comments@2.0.1: {}
|
|
1481
|
+
|
|
1482
|
+
tar-fs@2.1.4:
|
|
1483
|
+
dependencies:
|
|
1484
|
+
chownr: 1.1.4
|
|
1485
|
+
mkdirp-classic: 0.5.3
|
|
1486
|
+
pump: 3.0.4
|
|
1487
|
+
tar-stream: 2.2.0
|
|
1488
|
+
|
|
1489
|
+
tar-stream@2.2.0:
|
|
1490
|
+
dependencies:
|
|
1491
|
+
bl: 4.1.0
|
|
1492
|
+
end-of-stream: 1.4.5
|
|
1493
|
+
fs-constants: 1.0.0
|
|
1494
|
+
inherits: 2.0.4
|
|
1495
|
+
readable-stream: 3.6.2
|
|
1496
|
+
|
|
1497
|
+
tinybench@2.9.0: {}
|
|
1498
|
+
|
|
1499
|
+
tinyexec@1.0.4: {}
|
|
1500
|
+
|
|
1501
|
+
tinyglobby@0.2.15:
|
|
1502
|
+
dependencies:
|
|
1503
|
+
fdir: 6.5.0(picomatch@4.0.4)
|
|
1504
|
+
picomatch: 4.0.4
|
|
1505
|
+
|
|
1506
|
+
tinyrainbow@3.1.0: {}
|
|
1507
|
+
|
|
1508
|
+
tslib@2.8.1:
|
|
1509
|
+
optional: true
|
|
1510
|
+
|
|
1511
|
+
tsx@4.21.0:
|
|
1512
|
+
dependencies:
|
|
1513
|
+
esbuild: 0.27.4
|
|
1514
|
+
get-tsconfig: 4.13.7
|
|
1515
|
+
optionalDependencies:
|
|
1516
|
+
fsevents: 2.3.3
|
|
1517
|
+
|
|
1518
|
+
tunnel-agent@0.6.0:
|
|
1519
|
+
dependencies:
|
|
1520
|
+
safe-buffer: 5.2.1
|
|
1521
|
+
|
|
1522
|
+
typescript@6.0.2: {}
|
|
1523
|
+
|
|
1524
|
+
undici-types@7.18.2: {}
|
|
1525
|
+
|
|
1526
|
+
util-deprecate@1.0.2: {}
|
|
1527
|
+
|
|
1528
|
+
vite@8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(@types/node@25.5.0)(esbuild@0.27.4)(tsx@4.21.0):
|
|
1529
|
+
dependencies:
|
|
1530
|
+
lightningcss: 1.32.0
|
|
1531
|
+
picomatch: 4.0.4
|
|
1532
|
+
postcss: 8.5.8
|
|
1533
|
+
rolldown: 1.0.0-rc.12(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)
|
|
1534
|
+
tinyglobby: 0.2.15
|
|
1535
|
+
optionalDependencies:
|
|
1536
|
+
'@types/node': 25.5.0
|
|
1537
|
+
esbuild: 0.27.4
|
|
1538
|
+
fsevents: 2.3.3
|
|
1539
|
+
tsx: 4.21.0
|
|
1540
|
+
transitivePeerDependencies:
|
|
1541
|
+
- '@emnapi/core'
|
|
1542
|
+
- '@emnapi/runtime'
|
|
1543
|
+
|
|
1544
|
+
vitest@4.1.2(@types/node@25.5.0)(vite@8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(@types/node@25.5.0)(esbuild@0.27.4)(tsx@4.21.0)):
|
|
1545
|
+
dependencies:
|
|
1546
|
+
'@vitest/expect': 4.1.2
|
|
1547
|
+
'@vitest/mocker': 4.1.2(vite@8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(@types/node@25.5.0)(esbuild@0.27.4)(tsx@4.21.0))
|
|
1548
|
+
'@vitest/pretty-format': 4.1.2
|
|
1549
|
+
'@vitest/runner': 4.1.2
|
|
1550
|
+
'@vitest/snapshot': 4.1.2
|
|
1551
|
+
'@vitest/spy': 4.1.2
|
|
1552
|
+
'@vitest/utils': 4.1.2
|
|
1553
|
+
es-module-lexer: 2.0.0
|
|
1554
|
+
expect-type: 1.3.0
|
|
1555
|
+
magic-string: 0.30.21
|
|
1556
|
+
obug: 2.1.1
|
|
1557
|
+
pathe: 2.0.3
|
|
1558
|
+
picomatch: 4.0.4
|
|
1559
|
+
std-env: 4.0.0
|
|
1560
|
+
tinybench: 2.9.0
|
|
1561
|
+
tinyexec: 1.0.4
|
|
1562
|
+
tinyglobby: 0.2.15
|
|
1563
|
+
tinyrainbow: 3.1.0
|
|
1564
|
+
vite: 8.0.3(@emnapi/core@1.9.1)(@emnapi/runtime@1.9.1)(@types/node@25.5.0)(esbuild@0.27.4)(tsx@4.21.0)
|
|
1565
|
+
why-is-node-running: 2.3.0
|
|
1566
|
+
optionalDependencies:
|
|
1567
|
+
'@types/node': 25.5.0
|
|
1568
|
+
transitivePeerDependencies:
|
|
1569
|
+
- msw
|
|
1570
|
+
|
|
1571
|
+
web-push@3.6.7:
|
|
1572
|
+
dependencies:
|
|
1573
|
+
asn1.js: 5.4.1
|
|
1574
|
+
http_ece: 1.2.0
|
|
1575
|
+
https-proxy-agent: 7.0.6
|
|
1576
|
+
jws: 4.0.1
|
|
1577
|
+
minimist: 1.2.8
|
|
1578
|
+
transitivePeerDependencies:
|
|
1579
|
+
- supports-color
|
|
1580
|
+
|
|
1581
|
+
why-is-node-running@2.3.0:
|
|
1582
|
+
dependencies:
|
|
1583
|
+
siginfo: 2.0.0
|
|
1584
|
+
stackback: 0.0.2
|
|
1585
|
+
|
|
1586
|
+
wrappy@1.0.2: {}
|
|
1587
|
+
|
|
1588
|
+
ws@8.20.0: {}
|