@harbinger-ai/harbinger 0.1.0
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/LICENSE +21 -0
- package/README.md +406 -0
- package/agents/README.md +76 -0
- package/agents/_template/CONFIG.yaml +7 -0
- package/agents/_template/HEARTBEAT.md +59 -0
- package/agents/_template/IDENTITY.md +4 -0
- package/agents/_template/SKILLS.md +1 -0
- package/agents/_template/SOUL.md +25 -0
- package/agents/_template/TOOLS.md +3 -0
- package/agents/binary-reverser/CONFIG.yaml +21 -0
- package/agents/binary-reverser/HEARTBEAT.md +65 -0
- package/agents/binary-reverser/IDENTITY.md +1 -0
- package/agents/binary-reverser/SKILLS.md +1 -0
- package/agents/binary-reverser/SOUL.md +23 -0
- package/agents/binary-reverser/TOOLS.md +99 -0
- package/agents/browser-agent/CONFIG.yaml +20 -0
- package/agents/browser-agent/HEARTBEAT.md +79 -0
- package/agents/browser-agent/IDENTITY.md +5 -0
- package/agents/browser-agent/SKILLS.md +86 -0
- package/agents/browser-agent/SOUL.md +23 -0
- package/agents/browser-agent/TOOLS.md +186 -0
- package/agents/cloud-infiltrator/CONFIG.yaml +22 -0
- package/agents/cloud-infiltrator/HEARTBEAT.md +78 -0
- package/agents/cloud-infiltrator/IDENTITY.md +1 -0
- package/agents/cloud-infiltrator/SKILLS.md +1 -0
- package/agents/cloud-infiltrator/SOUL.md +23 -0
- package/agents/cloud-infiltrator/TOOLS.md +68 -0
- package/agents/coding-assistant/CONFIG.yaml +22 -0
- package/agents/coding-assistant/HEARTBEAT.md +57 -0
- package/agents/coding-assistant/IDENTITY.md +5 -0
- package/agents/coding-assistant/SKILLS.md +69 -0
- package/agents/coding-assistant/SOUL.md +60 -0
- package/agents/coding-assistant/TOOLS.md +168 -0
- package/agents/learning-agent/CONFIG.yaml +21 -0
- package/agents/learning-agent/HEARTBEAT.md +63 -0
- package/agents/learning-agent/IDENTITY.md +5 -0
- package/agents/learning-agent/SKILLS.md +86 -0
- package/agents/learning-agent/SOUL.md +77 -0
- package/agents/learning-agent/TOOLS.md +145 -0
- package/agents/maintainer/CONFIG.yaml +31 -0
- package/agents/maintainer/HEARTBEAT.md +28 -0
- package/agents/maintainer/IDENTITY.md +33 -0
- package/agents/maintainer/SKILLS.md +24 -0
- package/agents/maintainer/SOUL.md +61 -0
- package/agents/maintainer/TOOLS.md +29 -0
- package/agents/maintainer/lib/engine.js +279 -0
- package/agents/maintainer/lib/safe-fixer.js +183 -0
- package/agents/morning-brief/CONFIG.yaml +22 -0
- package/agents/morning-brief/HEARTBEAT.md +60 -0
- package/agents/morning-brief/IDENTITY.md +5 -0
- package/agents/morning-brief/SKILLS.md +56 -0
- package/agents/morning-brief/SOUL.md +64 -0
- package/agents/morning-brief/TOOLS.md +112 -0
- package/agents/osint-detective/CONFIG.yaml +24 -0
- package/agents/osint-detective/HEARTBEAT.md +66 -0
- package/agents/osint-detective/IDENTITY.md +1 -0
- package/agents/osint-detective/SKILLS.md +1 -0
- package/agents/osint-detective/SOUL.md +23 -0
- package/agents/osint-detective/TOOLS.md +81 -0
- package/agents/recon-scout/CONFIG.yaml +22 -0
- package/agents/recon-scout/HEARTBEAT.md +79 -0
- package/agents/recon-scout/IDENTITY.md +1 -0
- package/agents/recon-scout/SKILLS.md +1 -0
- package/agents/recon-scout/SOUL.md +23 -0
- package/agents/recon-scout/TOOLS.md +93 -0
- package/agents/report-writer/CONFIG.yaml +21 -0
- package/agents/report-writer/HEARTBEAT.md +63 -0
- package/agents/report-writer/IDENTITY.md +1 -0
- package/agents/report-writer/SKILLS.md +1 -0
- package/agents/report-writer/SOUL.md +23 -0
- package/agents/report-writer/TOOLS.md +69 -0
- package/agents/shared/README.md +13 -0
- package/agents/web-hacker/CONFIG.yaml +24 -0
- package/agents/web-hacker/HEARTBEAT.md +78 -0
- package/agents/web-hacker/IDENTITY.md +1 -0
- package/agents/web-hacker/SKILLS.md +1 -0
- package/agents/web-hacker/SOUL.md +23 -0
- package/agents/web-hacker/TOOLS.md +86 -0
- package/api/CLAUDE.md +19 -0
- package/api/index.js +274 -0
- package/bin/cli.js +620 -0
- package/bin/local.sh +31 -0
- package/bin/postinstall.js +63 -0
- package/config/index.js +24 -0
- package/config/instrumentation.js +93 -0
- package/drizzle/0000_initial.sql +52 -0
- package/drizzle/0001_bounty_and_registry.sql +82 -0
- package/drizzle/0002_sync_columns.sql +7 -0
- package/drizzle/0003_graceful_bloodscream.sql +86 -0
- package/drizzle/meta/0000_snapshot.json +321 -0
- package/drizzle/meta/0003_snapshot.json +878 -0
- package/drizzle/meta/_journal.json +34 -0
- package/drizzle/relations.ts +3 -0
- package/drizzle/schema.ts +145 -0
- package/lib/actions.js +47 -0
- package/lib/agents.js +166 -0
- package/lib/ai/agent.js +96 -0
- package/lib/ai/autonomous-engine.js +261 -0
- package/lib/ai/index.js +359 -0
- package/lib/ai/model-router.js +254 -0
- package/lib/ai/model.js +73 -0
- package/lib/ai/tools.js +84 -0
- package/lib/auth/actions.js +28 -0
- package/lib/auth/config.js +27 -0
- package/lib/auth/edge-config.js +27 -0
- package/lib/auth/index.js +27 -0
- package/lib/auth/middleware.js +53 -0
- package/lib/bounty/actions.js +119 -0
- package/lib/bounty/findings.js +64 -0
- package/lib/bounty/programs.js +34 -0
- package/lib/bounty/sync-targets.js +267 -0
- package/lib/bounty/targets.js +33 -0
- package/lib/channels/base.js +56 -0
- package/lib/channels/index.js +15 -0
- package/lib/channels/telegram.js +148 -0
- package/lib/chat/actions.js +288 -0
- package/lib/chat/api.js +135 -0
- package/lib/chat/components/app-sidebar.js +237 -0
- package/lib/chat/components/app-sidebar.jsx +289 -0
- package/lib/chat/components/chat-header.js +27 -0
- package/lib/chat/components/chat-header.jsx +37 -0
- package/lib/chat/components/chat-input.js +230 -0
- package/lib/chat/components/chat-input.jsx +228 -0
- package/lib/chat/components/chat-nav-context.js +11 -0
- package/lib/chat/components/chat-nav-context.jsx +11 -0
- package/lib/chat/components/chat-page.js +81 -0
- package/lib/chat/components/chat-page.jsx +100 -0
- package/lib/chat/components/chat.js +150 -0
- package/lib/chat/components/chat.jsx +182 -0
- package/lib/chat/components/chats-page.js +302 -0
- package/lib/chat/components/chats-page.jsx +330 -0
- package/lib/chat/components/crons-page.js +172 -0
- package/lib/chat/components/crons-page.jsx +244 -0
- package/lib/chat/components/enhanced-tool-call.js +103 -0
- package/lib/chat/components/enhanced-tool-call.jsx +139 -0
- package/lib/chat/components/findings-page.js +175 -0
- package/lib/chat/components/findings-page.jsx +214 -0
- package/lib/chat/components/greeting.js +22 -0
- package/lib/chat/components/greeting.jsx +26 -0
- package/lib/chat/components/icons.js +777 -0
- package/lib/chat/components/icons.jsx +741 -0
- package/lib/chat/components/index.js +26 -0
- package/lib/chat/components/mcp-page.js +260 -0
- package/lib/chat/components/mcp-page.jsx +355 -0
- package/lib/chat/components/message.js +289 -0
- package/lib/chat/components/message.jsx +315 -0
- package/lib/chat/components/messages.js +66 -0
- package/lib/chat/components/messages.jsx +77 -0
- package/lib/chat/components/notifications-page.js +56 -0
- package/lib/chat/components/notifications-page.jsx +87 -0
- package/lib/chat/components/page-layout.js +21 -0
- package/lib/chat/components/page-layout.jsx +28 -0
- package/lib/chat/components/registry-page.js +222 -0
- package/lib/chat/components/registry-page.jsx +255 -0
- package/lib/chat/components/settings-layout.js +40 -0
- package/lib/chat/components/settings-layout.jsx +54 -0
- package/lib/chat/components/settings-secrets-page.js +216 -0
- package/lib/chat/components/settings-secrets-page.jsx +264 -0
- package/lib/chat/components/sidebar-history-item.js +132 -0
- package/lib/chat/components/sidebar-history-item.jsx +113 -0
- package/lib/chat/components/sidebar-history.js +115 -0
- package/lib/chat/components/sidebar-history.jsx +157 -0
- package/lib/chat/components/sidebar-user-nav.js +63 -0
- package/lib/chat/components/sidebar-user-nav.jsx +73 -0
- package/lib/chat/components/status-bar.js +39 -0
- package/lib/chat/components/status-bar.jsx +51 -0
- package/lib/chat/components/swarm-page.js +157 -0
- package/lib/chat/components/swarm-page.jsx +210 -0
- package/lib/chat/components/targets-page.js +376 -0
- package/lib/chat/components/targets-page.jsx +389 -0
- package/lib/chat/components/tool-call.js +86 -0
- package/lib/chat/components/tool-call.jsx +104 -0
- package/lib/chat/components/tool-panel.js +107 -0
- package/lib/chat/components/tool-panel.jsx +145 -0
- package/lib/chat/components/triggers-page.js +153 -0
- package/lib/chat/components/triggers-page.jsx +221 -0
- package/lib/chat/components/ui/confirm-dialog.js +53 -0
- package/lib/chat/components/ui/confirm-dialog.jsx +57 -0
- package/lib/chat/components/ui/dropdown-menu.js +98 -0
- package/lib/chat/components/ui/dropdown-menu.jsx +116 -0
- package/lib/chat/components/ui/rename-dialog.js +74 -0
- package/lib/chat/components/ui/rename-dialog.jsx +72 -0
- package/lib/chat/components/ui/scroll-area.js +13 -0
- package/lib/chat/components/ui/scroll-area.jsx +17 -0
- package/lib/chat/components/ui/separator.js +21 -0
- package/lib/chat/components/ui/separator.jsx +18 -0
- package/lib/chat/components/ui/sheet.js +75 -0
- package/lib/chat/components/ui/sheet.jsx +95 -0
- package/lib/chat/components/ui/sidebar.js +227 -0
- package/lib/chat/components/ui/sidebar.jsx +245 -0
- package/lib/chat/components/ui/tooltip.js +56 -0
- package/lib/chat/components/ui/tooltip.jsx +66 -0
- package/lib/chat/components/upgrade-dialog.js +151 -0
- package/lib/chat/components/upgrade-dialog.jsx +170 -0
- package/lib/chat/utils.js +11 -0
- package/lib/cron.js +246 -0
- package/lib/db/api-keys.js +163 -0
- package/lib/db/chats.js +145 -0
- package/lib/db/index.js +52 -0
- package/lib/db/notifications.js +99 -0
- package/lib/db/schema.js +145 -0
- package/lib/db/update-check.js +96 -0
- package/lib/db/users.js +89 -0
- package/lib/mcp/actions.js +104 -0
- package/lib/mcp/client.js +79 -0
- package/lib/mcp/handler.js +57 -0
- package/lib/mcp/server.js +165 -0
- package/lib/paths.js +46 -0
- package/lib/registry/actions.js +164 -0
- package/lib/registry/catalog.js +137 -0
- package/lib/registry/tools.js +71 -0
- package/lib/tools/create-job.js +99 -0
- package/lib/tools/github.js +217 -0
- package/lib/tools/openai.js +35 -0
- package/lib/tools/telegram.js +292 -0
- package/lib/triggers.js +118 -0
- package/lib/utils/render-md.js +102 -0
- package/package.json +103 -0
- package/setup/lib/auth.mjs +81 -0
- package/setup/lib/env.mjs +21 -0
- package/setup/lib/fs-utils.mjs +20 -0
- package/setup/lib/github.mjs +149 -0
- package/setup/lib/prerequisites.mjs +155 -0
- package/setup/lib/prompts.mjs +267 -0
- package/setup/lib/providers.mjs +48 -0
- package/setup/lib/sync.mjs +125 -0
- package/setup/lib/targets.mjs +45 -0
- package/setup/lib/telegram-verify.mjs +63 -0
- package/setup/lib/telegram.mjs +76 -0
- package/setup/setup-telegram.mjs +264 -0
- package/setup/setup.mjs +842 -0
- package/templates/.dockerignore +5 -0
- package/templates/.env.example +63 -0
- package/templates/.github/workflows/auto-merge.yml +117 -0
- package/templates/.github/workflows/build-image.yml +36 -0
- package/templates/.github/workflows/notify-job-failed.yml +64 -0
- package/templates/.github/workflows/notify-pr-complete.yml +119 -0
- package/templates/.github/workflows/rebuild-event-handler.yml +121 -0
- package/templates/.github/workflows/run-job.yml +89 -0
- package/templates/.github/workflows/upgrade-event-handler.yml +62 -0
- package/templates/.gitignore.template +45 -0
- package/templates/.pi/extensions/env-sanitizer/index.ts +48 -0
- package/templates/.pi/extensions/env-sanitizer/package.json +5 -0
- package/templates/CLAUDE.md +29 -0
- package/templates/CLAUDE.md.template +307 -0
- package/templates/app/api/[...thepopebot]/route.js +1 -0
- package/templates/app/api/auth/[...nextauth]/route.js +1 -0
- package/templates/app/chat/[chatId]/page.js +8 -0
- package/templates/app/chats/page.js +7 -0
- package/templates/app/components/ascii-logo.jsx +10 -0
- package/templates/app/components/login-form.jsx +92 -0
- package/templates/app/components/setup-form.jsx +82 -0
- package/templates/app/components/theme-provider.jsx +11 -0
- package/templates/app/components/theme-toggle.jsx +38 -0
- package/templates/app/components/ui/button.jsx +21 -0
- package/templates/app/components/ui/card.jsx +23 -0
- package/templates/app/components/ui/input.jsx +10 -0
- package/templates/app/components/ui/label.jsx +10 -0
- package/templates/app/crons/page.js +5 -0
- package/templates/app/findings/page.js +7 -0
- package/templates/app/globals.css +90 -0
- package/templates/app/layout.js +19 -0
- package/templates/app/login/page.js +15 -0
- package/templates/app/notifications/page.js +7 -0
- package/templates/app/page.js +7 -0
- package/templates/app/settings/crons/page.js +5 -0
- package/templates/app/settings/layout.js +7 -0
- package/templates/app/settings/mcp/page.js +5 -0
- package/templates/app/settings/page.js +5 -0
- package/templates/app/settings/secrets/page.js +5 -0
- package/templates/app/settings/triggers/page.js +5 -0
- package/templates/app/stream/chat/route.js +1 -0
- package/templates/app/swarm/page.js +7 -0
- package/templates/app/targets/page.js +7 -0
- package/templates/app/toolbox/page.js +7 -0
- package/templates/app/triggers/page.js +5 -0
- package/templates/config/AGENT.md +34 -0
- package/templates/config/CRONS.json +56 -0
- package/templates/config/EVENT_HANDLER.md +224 -0
- package/templates/config/HEARTBEAT.md +3 -0
- package/templates/config/JOB_SUMMARY.md +130 -0
- package/templates/config/MCP_SERVERS.json +1 -0
- package/templates/config/SKILL_BUILDING_GUIDE.md +90 -0
- package/templates/config/SOUL.md +17 -0
- package/templates/config/TRIGGERS.json +58 -0
- package/templates/docker/event-handler/Dockerfile +20 -0
- package/templates/docker/event-handler/ecosystem.config.cjs +8 -0
- package/templates/docker/job-claude-code/Dockerfile +34 -0
- package/templates/docker/job-claude-code/entrypoint.sh +139 -0
- package/templates/docker/job-pi-coding-agent/Dockerfile +44 -0
- package/templates/docker/job-pi-coding-agent/entrypoint.sh +163 -0
- package/templates/docker-compose.yml +63 -0
- package/templates/instrumentation.js +6 -0
- package/templates/middleware.js +1 -0
- package/templates/next.config.mjs +3 -0
- package/templates/postcss.config.mjs +5 -0
- package/templates/skills/LICENSE +21 -0
- package/templates/skills/README.md +119 -0
- package/templates/skills/brave-search/SKILL.md +79 -0
- package/templates/skills/brave-search/content.js +86 -0
- package/templates/skills/brave-search/package-lock.json +621 -0
- package/templates/skills/brave-search/package.json +14 -0
- package/templates/skills/brave-search/search.js +199 -0
- package/templates/skills/browser-tools/SKILL.md +196 -0
- package/templates/skills/browser-tools/browser-content.js +103 -0
- package/templates/skills/browser-tools/browser-cookies.js +35 -0
- package/templates/skills/browser-tools/browser-eval.js +53 -0
- package/templates/skills/browser-tools/browser-hn-scraper.js +108 -0
- package/templates/skills/browser-tools/browser-nav.js +44 -0
- package/templates/skills/browser-tools/browser-pick.js +162 -0
- package/templates/skills/browser-tools/browser-screenshot.js +34 -0
- package/templates/skills/browser-tools/browser-start.js +87 -0
- package/templates/skills/browser-tools/package-lock.json +2556 -0
- package/templates/skills/browser-tools/package.json +19 -0
- package/templates/skills/llm-secrets/SKILL.md +34 -0
- package/templates/skills/llm-secrets/llm-secrets.js +33 -0
- package/templates/skills/modify-self/SKILL.md +12 -0
|
@@ -0,0 +1,2556 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "browser-tools",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "browser-tools",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@mozilla/readability": "^0.6.0",
|
|
13
|
+
"cheerio": "^1.1.2",
|
|
14
|
+
"jsdom": "^27.0.1",
|
|
15
|
+
"puppeteer": "^24.31.0",
|
|
16
|
+
"puppeteer-core": "^23.11.1",
|
|
17
|
+
"puppeteer-extra": "^3.3.6",
|
|
18
|
+
"puppeteer-extra-plugin-stealth": "^2.11.2",
|
|
19
|
+
"turndown": "^7.2.2",
|
|
20
|
+
"turndown-plugin-gfm": "^1.0.2"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"node_modules/@asamuzakjp/css-color": {
|
|
24
|
+
"version": "4.1.0",
|
|
25
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-4.1.0.tgz",
|
|
26
|
+
"integrity": "sha512-9xiBAtLn4aNsa4mDnpovJvBn72tNEIACyvlqaNJ+ADemR+yeMJWnBudOi2qGDviJa7SwcDOU/TRh5dnET7qk0w==",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@csstools/css-calc": "^2.1.4",
|
|
30
|
+
"@csstools/css-color-parser": "^3.1.0",
|
|
31
|
+
"@csstools/css-parser-algorithms": "^3.0.5",
|
|
32
|
+
"@csstools/css-tokenizer": "^3.0.4",
|
|
33
|
+
"lru-cache": "^11.2.2"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"node_modules/@asamuzakjp/css-color/node_modules/lru-cache": {
|
|
37
|
+
"version": "11.2.2",
|
|
38
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
|
|
39
|
+
"integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
|
|
40
|
+
"license": "ISC",
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": "20 || >=22"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"node_modules/@asamuzakjp/dom-selector": {
|
|
46
|
+
"version": "6.7.4",
|
|
47
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-6.7.4.tgz",
|
|
48
|
+
"integrity": "sha512-buQDjkm+wDPXd6c13534URWZqbz0RP5PAhXZ+LIoa5LgwInT9HVJvGIJivg75vi8I13CxDGdTnz+aY5YUJlIAA==",
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@asamuzakjp/nwsapi": "^2.3.9",
|
|
52
|
+
"bidi-js": "^1.0.3",
|
|
53
|
+
"css-tree": "^3.1.0",
|
|
54
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
55
|
+
"lru-cache": "^11.2.2"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"node_modules/@asamuzakjp/dom-selector/node_modules/lru-cache": {
|
|
59
|
+
"version": "11.2.2",
|
|
60
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
|
|
61
|
+
"integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
|
|
62
|
+
"license": "ISC",
|
|
63
|
+
"engines": {
|
|
64
|
+
"node": "20 || >=22"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"node_modules/@asamuzakjp/nwsapi": {
|
|
68
|
+
"version": "2.3.9",
|
|
69
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz",
|
|
70
|
+
"integrity": "sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==",
|
|
71
|
+
"license": "MIT"
|
|
72
|
+
},
|
|
73
|
+
"node_modules/@babel/code-frame": {
|
|
74
|
+
"version": "7.27.1",
|
|
75
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
|
76
|
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
|
|
77
|
+
"license": "MIT",
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"@babel/helper-validator-identifier": "^7.27.1",
|
|
80
|
+
"js-tokens": "^4.0.0",
|
|
81
|
+
"picocolors": "^1.1.1"
|
|
82
|
+
},
|
|
83
|
+
"engines": {
|
|
84
|
+
"node": ">=6.9.0"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
88
|
+
"version": "7.28.5",
|
|
89
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
|
|
90
|
+
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
|
|
91
|
+
"license": "MIT",
|
|
92
|
+
"engines": {
|
|
93
|
+
"node": ">=6.9.0"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"node_modules/@csstools/color-helpers": {
|
|
97
|
+
"version": "5.1.0",
|
|
98
|
+
"resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz",
|
|
99
|
+
"integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==",
|
|
100
|
+
"funding": [
|
|
101
|
+
{
|
|
102
|
+
"type": "github",
|
|
103
|
+
"url": "https://github.com/sponsors/csstools"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"type": "opencollective",
|
|
107
|
+
"url": "https://opencollective.com/csstools"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"license": "MIT-0",
|
|
111
|
+
"engines": {
|
|
112
|
+
"node": ">=18"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"node_modules/@csstools/css-calc": {
|
|
116
|
+
"version": "2.1.4",
|
|
117
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz",
|
|
118
|
+
"integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==",
|
|
119
|
+
"funding": [
|
|
120
|
+
{
|
|
121
|
+
"type": "github",
|
|
122
|
+
"url": "https://github.com/sponsors/csstools"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"type": "opencollective",
|
|
126
|
+
"url": "https://opencollective.com/csstools"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"license": "MIT",
|
|
130
|
+
"engines": {
|
|
131
|
+
"node": ">=18"
|
|
132
|
+
},
|
|
133
|
+
"peerDependencies": {
|
|
134
|
+
"@csstools/css-parser-algorithms": "^3.0.5",
|
|
135
|
+
"@csstools/css-tokenizer": "^3.0.4"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"node_modules/@csstools/css-color-parser": {
|
|
139
|
+
"version": "3.1.0",
|
|
140
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz",
|
|
141
|
+
"integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==",
|
|
142
|
+
"funding": [
|
|
143
|
+
{
|
|
144
|
+
"type": "github",
|
|
145
|
+
"url": "https://github.com/sponsors/csstools"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"type": "opencollective",
|
|
149
|
+
"url": "https://opencollective.com/csstools"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"license": "MIT",
|
|
153
|
+
"dependencies": {
|
|
154
|
+
"@csstools/color-helpers": "^5.1.0",
|
|
155
|
+
"@csstools/css-calc": "^2.1.4"
|
|
156
|
+
},
|
|
157
|
+
"engines": {
|
|
158
|
+
"node": ">=18"
|
|
159
|
+
},
|
|
160
|
+
"peerDependencies": {
|
|
161
|
+
"@csstools/css-parser-algorithms": "^3.0.5",
|
|
162
|
+
"@csstools/css-tokenizer": "^3.0.4"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"node_modules/@csstools/css-parser-algorithms": {
|
|
166
|
+
"version": "3.0.5",
|
|
167
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
|
|
168
|
+
"integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
|
|
169
|
+
"funding": [
|
|
170
|
+
{
|
|
171
|
+
"type": "github",
|
|
172
|
+
"url": "https://github.com/sponsors/csstools"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"type": "opencollective",
|
|
176
|
+
"url": "https://opencollective.com/csstools"
|
|
177
|
+
}
|
|
178
|
+
],
|
|
179
|
+
"license": "MIT",
|
|
180
|
+
"peer": true,
|
|
181
|
+
"engines": {
|
|
182
|
+
"node": ">=18"
|
|
183
|
+
},
|
|
184
|
+
"peerDependencies": {
|
|
185
|
+
"@csstools/css-tokenizer": "^3.0.4"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
189
|
+
"version": "1.0.17",
|
|
190
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.0.17.tgz",
|
|
191
|
+
"integrity": "sha512-LCC++2h8pLUSPY+EsZmrrJ1EOUu+5iClpEiDhhdw3zRJpPbABML/N5lmRuBHjxtKm9VnRcsUzioyD0sekFMF0A==",
|
|
192
|
+
"funding": [
|
|
193
|
+
{
|
|
194
|
+
"type": "github",
|
|
195
|
+
"url": "https://github.com/sponsors/csstools"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"type": "opencollective",
|
|
199
|
+
"url": "https://opencollective.com/csstools"
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"license": "MIT-0",
|
|
203
|
+
"engines": {
|
|
204
|
+
"node": ">=18"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"node_modules/@csstools/css-tokenizer": {
|
|
208
|
+
"version": "3.0.4",
|
|
209
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
|
|
210
|
+
"integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==",
|
|
211
|
+
"funding": [
|
|
212
|
+
{
|
|
213
|
+
"type": "github",
|
|
214
|
+
"url": "https://github.com/sponsors/csstools"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"type": "opencollective",
|
|
218
|
+
"url": "https://opencollective.com/csstools"
|
|
219
|
+
}
|
|
220
|
+
],
|
|
221
|
+
"license": "MIT",
|
|
222
|
+
"peer": true,
|
|
223
|
+
"engines": {
|
|
224
|
+
"node": ">=18"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"node_modules/@mixmark-io/domino": {
|
|
228
|
+
"version": "2.2.0",
|
|
229
|
+
"resolved": "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz",
|
|
230
|
+
"integrity": "sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==",
|
|
231
|
+
"license": "BSD-2-Clause"
|
|
232
|
+
},
|
|
233
|
+
"node_modules/@mozilla/readability": {
|
|
234
|
+
"version": "0.6.0",
|
|
235
|
+
"resolved": "https://registry.npmjs.org/@mozilla/readability/-/readability-0.6.0.tgz",
|
|
236
|
+
"integrity": "sha512-juG5VWh4qAivzTAeMzvY9xs9HY5rAcr2E4I7tiSSCokRFi7XIZCAu92ZkSTsIj1OPceCifL3cpfteP3pDT9/QQ==",
|
|
237
|
+
"license": "Apache-2.0",
|
|
238
|
+
"engines": {
|
|
239
|
+
"node": ">=14.0.0"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"node_modules/@puppeteer/browsers": {
|
|
243
|
+
"version": "2.6.1",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.6.1.tgz",
|
|
245
|
+
"integrity": "sha512-aBSREisdsGH890S2rQqK82qmQYU3uFpSH8wcZWHgHzl3LfzsxAKbLNiAG9mO8v1Y0UICBeClICxPJvyr0rcuxg==",
|
|
246
|
+
"license": "Apache-2.0",
|
|
247
|
+
"dependencies": {
|
|
248
|
+
"debug": "^4.4.0",
|
|
249
|
+
"extract-zip": "^2.0.1",
|
|
250
|
+
"progress": "^2.0.3",
|
|
251
|
+
"proxy-agent": "^6.5.0",
|
|
252
|
+
"semver": "^7.6.3",
|
|
253
|
+
"tar-fs": "^3.0.6",
|
|
254
|
+
"unbzip2-stream": "^1.4.3",
|
|
255
|
+
"yargs": "^17.7.2"
|
|
256
|
+
},
|
|
257
|
+
"bin": {
|
|
258
|
+
"browsers": "lib/cjs/main-cli.js"
|
|
259
|
+
},
|
|
260
|
+
"engines": {
|
|
261
|
+
"node": ">=18"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"node_modules/@tootallnate/quickjs-emscripten": {
|
|
265
|
+
"version": "0.23.0",
|
|
266
|
+
"resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz",
|
|
267
|
+
"integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==",
|
|
268
|
+
"license": "MIT"
|
|
269
|
+
},
|
|
270
|
+
"node_modules/@types/debug": {
|
|
271
|
+
"version": "4.1.12",
|
|
272
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
|
|
273
|
+
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
|
|
274
|
+
"license": "MIT",
|
|
275
|
+
"dependencies": {
|
|
276
|
+
"@types/ms": "*"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"node_modules/@types/ms": {
|
|
280
|
+
"version": "2.1.0",
|
|
281
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
|
|
282
|
+
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
|
|
283
|
+
"license": "MIT"
|
|
284
|
+
},
|
|
285
|
+
"node_modules/@types/node": {
|
|
286
|
+
"version": "24.9.2",
|
|
287
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.9.2.tgz",
|
|
288
|
+
"integrity": "sha512-uWN8YqxXxqFMX2RqGOrumsKeti4LlmIMIyV0lgut4jx7KQBcBiW6vkDtIBvHnHIquwNfJhk8v2OtmO8zXWHfPA==",
|
|
289
|
+
"license": "MIT",
|
|
290
|
+
"optional": true,
|
|
291
|
+
"dependencies": {
|
|
292
|
+
"undici-types": "~7.16.0"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"node_modules/@types/yauzl": {
|
|
296
|
+
"version": "2.10.3",
|
|
297
|
+
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz",
|
|
298
|
+
"integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
|
|
299
|
+
"license": "MIT",
|
|
300
|
+
"optional": true,
|
|
301
|
+
"dependencies": {
|
|
302
|
+
"@types/node": "*"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"node_modules/agent-base": {
|
|
306
|
+
"version": "7.1.4",
|
|
307
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
|
|
308
|
+
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
|
|
309
|
+
"license": "MIT",
|
|
310
|
+
"engines": {
|
|
311
|
+
"node": ">= 14"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"node_modules/ansi-regex": {
|
|
315
|
+
"version": "5.0.1",
|
|
316
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
317
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
318
|
+
"license": "MIT",
|
|
319
|
+
"engines": {
|
|
320
|
+
"node": ">=8"
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
"node_modules/ansi-styles": {
|
|
324
|
+
"version": "4.3.0",
|
|
325
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
326
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
327
|
+
"license": "MIT",
|
|
328
|
+
"dependencies": {
|
|
329
|
+
"color-convert": "^2.0.1"
|
|
330
|
+
},
|
|
331
|
+
"engines": {
|
|
332
|
+
"node": ">=8"
|
|
333
|
+
},
|
|
334
|
+
"funding": {
|
|
335
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"node_modules/argparse": {
|
|
339
|
+
"version": "2.0.1",
|
|
340
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
341
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
342
|
+
"license": "Python-2.0"
|
|
343
|
+
},
|
|
344
|
+
"node_modules/arr-union": {
|
|
345
|
+
"version": "3.1.0",
|
|
346
|
+
"resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
|
|
347
|
+
"integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==",
|
|
348
|
+
"license": "MIT",
|
|
349
|
+
"engines": {
|
|
350
|
+
"node": ">=0.10.0"
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"node_modules/ast-types": {
|
|
354
|
+
"version": "0.13.4",
|
|
355
|
+
"resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz",
|
|
356
|
+
"integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==",
|
|
357
|
+
"license": "MIT",
|
|
358
|
+
"dependencies": {
|
|
359
|
+
"tslib": "^2.0.1"
|
|
360
|
+
},
|
|
361
|
+
"engines": {
|
|
362
|
+
"node": ">=4"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"node_modules/b4a": {
|
|
366
|
+
"version": "1.7.3",
|
|
367
|
+
"resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.3.tgz",
|
|
368
|
+
"integrity": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==",
|
|
369
|
+
"license": "Apache-2.0",
|
|
370
|
+
"peerDependencies": {
|
|
371
|
+
"react-native-b4a": "*"
|
|
372
|
+
},
|
|
373
|
+
"peerDependenciesMeta": {
|
|
374
|
+
"react-native-b4a": {
|
|
375
|
+
"optional": true
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
"node_modules/balanced-match": {
|
|
380
|
+
"version": "1.0.2",
|
|
381
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
382
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
383
|
+
"license": "MIT"
|
|
384
|
+
},
|
|
385
|
+
"node_modules/bare-events": {
|
|
386
|
+
"version": "2.8.1",
|
|
387
|
+
"resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.1.tgz",
|
|
388
|
+
"integrity": "sha512-oxSAxTS1hRfnyit2CL5QpAOS5ixfBjj6ex3yTNvXyY/kE719jQ/IjuESJBK2w5v4wwQRAHGseVJXx9QBYOtFGQ==",
|
|
389
|
+
"license": "Apache-2.0",
|
|
390
|
+
"peerDependencies": {
|
|
391
|
+
"bare-abort-controller": "*"
|
|
392
|
+
},
|
|
393
|
+
"peerDependenciesMeta": {
|
|
394
|
+
"bare-abort-controller": {
|
|
395
|
+
"optional": true
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
"node_modules/bare-fs": {
|
|
400
|
+
"version": "4.5.0",
|
|
401
|
+
"resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.5.0.tgz",
|
|
402
|
+
"integrity": "sha512-GljgCjeupKZJNetTqxKaQArLK10vpmK28or0+RwWjEl5Rk+/xG3wkpmkv+WrcBm3q1BwHKlnhXzR8O37kcvkXQ==",
|
|
403
|
+
"license": "Apache-2.0",
|
|
404
|
+
"optional": true,
|
|
405
|
+
"dependencies": {
|
|
406
|
+
"bare-events": "^2.5.4",
|
|
407
|
+
"bare-path": "^3.0.0",
|
|
408
|
+
"bare-stream": "^2.6.4",
|
|
409
|
+
"bare-url": "^2.2.2",
|
|
410
|
+
"fast-fifo": "^1.3.2"
|
|
411
|
+
},
|
|
412
|
+
"engines": {
|
|
413
|
+
"bare": ">=1.16.0"
|
|
414
|
+
},
|
|
415
|
+
"peerDependencies": {
|
|
416
|
+
"bare-buffer": "*"
|
|
417
|
+
},
|
|
418
|
+
"peerDependenciesMeta": {
|
|
419
|
+
"bare-buffer": {
|
|
420
|
+
"optional": true
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
"node_modules/bare-os": {
|
|
425
|
+
"version": "3.6.2",
|
|
426
|
+
"resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.6.2.tgz",
|
|
427
|
+
"integrity": "sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==",
|
|
428
|
+
"license": "Apache-2.0",
|
|
429
|
+
"optional": true,
|
|
430
|
+
"engines": {
|
|
431
|
+
"bare": ">=1.14.0"
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"node_modules/bare-path": {
|
|
435
|
+
"version": "3.0.0",
|
|
436
|
+
"resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz",
|
|
437
|
+
"integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==",
|
|
438
|
+
"license": "Apache-2.0",
|
|
439
|
+
"optional": true,
|
|
440
|
+
"dependencies": {
|
|
441
|
+
"bare-os": "^3.0.1"
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"node_modules/bare-stream": {
|
|
445
|
+
"version": "2.7.0",
|
|
446
|
+
"resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.7.0.tgz",
|
|
447
|
+
"integrity": "sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==",
|
|
448
|
+
"license": "Apache-2.0",
|
|
449
|
+
"optional": true,
|
|
450
|
+
"dependencies": {
|
|
451
|
+
"streamx": "^2.21.0"
|
|
452
|
+
},
|
|
453
|
+
"peerDependencies": {
|
|
454
|
+
"bare-buffer": "*",
|
|
455
|
+
"bare-events": "*"
|
|
456
|
+
},
|
|
457
|
+
"peerDependenciesMeta": {
|
|
458
|
+
"bare-buffer": {
|
|
459
|
+
"optional": true
|
|
460
|
+
},
|
|
461
|
+
"bare-events": {
|
|
462
|
+
"optional": true
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"node_modules/bare-url": {
|
|
467
|
+
"version": "2.3.2",
|
|
468
|
+
"resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.3.2.tgz",
|
|
469
|
+
"integrity": "sha512-ZMq4gd9ngV5aTMa5p9+UfY0b3skwhHELaDkhEHetMdX0LRkW9kzaym4oo/Eh+Ghm0CCDuMTsRIGM/ytUc1ZYmw==",
|
|
470
|
+
"license": "Apache-2.0",
|
|
471
|
+
"optional": true,
|
|
472
|
+
"dependencies": {
|
|
473
|
+
"bare-path": "^3.0.0"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"node_modules/base64-js": {
|
|
477
|
+
"version": "1.5.1",
|
|
478
|
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
479
|
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
|
480
|
+
"funding": [
|
|
481
|
+
{
|
|
482
|
+
"type": "github",
|
|
483
|
+
"url": "https://github.com/sponsors/feross"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"type": "patreon",
|
|
487
|
+
"url": "https://www.patreon.com/feross"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"type": "consulting",
|
|
491
|
+
"url": "https://feross.org/support"
|
|
492
|
+
}
|
|
493
|
+
],
|
|
494
|
+
"license": "MIT"
|
|
495
|
+
},
|
|
496
|
+
"node_modules/basic-ftp": {
|
|
497
|
+
"version": "5.0.5",
|
|
498
|
+
"resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz",
|
|
499
|
+
"integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==",
|
|
500
|
+
"license": "MIT",
|
|
501
|
+
"engines": {
|
|
502
|
+
"node": ">=10.0.0"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"node_modules/bidi-js": {
|
|
506
|
+
"version": "1.0.3",
|
|
507
|
+
"resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz",
|
|
508
|
+
"integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==",
|
|
509
|
+
"license": "MIT",
|
|
510
|
+
"dependencies": {
|
|
511
|
+
"require-from-string": "^2.0.2"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"node_modules/boolbase": {
|
|
515
|
+
"version": "1.0.0",
|
|
516
|
+
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
|
|
517
|
+
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
|
|
518
|
+
"license": "ISC"
|
|
519
|
+
},
|
|
520
|
+
"node_modules/brace-expansion": {
|
|
521
|
+
"version": "1.1.12",
|
|
522
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
|
523
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
524
|
+
"license": "MIT",
|
|
525
|
+
"dependencies": {
|
|
526
|
+
"balanced-match": "^1.0.0",
|
|
527
|
+
"concat-map": "0.0.1"
|
|
528
|
+
}
|
|
529
|
+
},
|
|
530
|
+
"node_modules/buffer": {
|
|
531
|
+
"version": "5.7.1",
|
|
532
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
|
|
533
|
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
|
|
534
|
+
"funding": [
|
|
535
|
+
{
|
|
536
|
+
"type": "github",
|
|
537
|
+
"url": "https://github.com/sponsors/feross"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"type": "patreon",
|
|
541
|
+
"url": "https://www.patreon.com/feross"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"type": "consulting",
|
|
545
|
+
"url": "https://feross.org/support"
|
|
546
|
+
}
|
|
547
|
+
],
|
|
548
|
+
"license": "MIT",
|
|
549
|
+
"dependencies": {
|
|
550
|
+
"base64-js": "^1.3.1",
|
|
551
|
+
"ieee754": "^1.1.13"
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"node_modules/buffer-crc32": {
|
|
555
|
+
"version": "0.2.13",
|
|
556
|
+
"resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
|
|
557
|
+
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
|
|
558
|
+
"license": "MIT",
|
|
559
|
+
"engines": {
|
|
560
|
+
"node": "*"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"node_modules/callsites": {
|
|
564
|
+
"version": "3.1.0",
|
|
565
|
+
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
|
|
566
|
+
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
|
|
567
|
+
"license": "MIT",
|
|
568
|
+
"engines": {
|
|
569
|
+
"node": ">=6"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"node_modules/cheerio": {
|
|
573
|
+
"version": "1.1.2",
|
|
574
|
+
"resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.1.2.tgz",
|
|
575
|
+
"integrity": "sha512-IkxPpb5rS/d1IiLbHMgfPuS0FgiWTtFIm/Nj+2woXDLTZ7fOT2eqzgYbdMlLweqlHbsZjxEChoVK+7iph7jyQg==",
|
|
576
|
+
"license": "MIT",
|
|
577
|
+
"dependencies": {
|
|
578
|
+
"cheerio-select": "^2.1.0",
|
|
579
|
+
"dom-serializer": "^2.0.0",
|
|
580
|
+
"domhandler": "^5.0.3",
|
|
581
|
+
"domutils": "^3.2.2",
|
|
582
|
+
"encoding-sniffer": "^0.2.1",
|
|
583
|
+
"htmlparser2": "^10.0.0",
|
|
584
|
+
"parse5": "^7.3.0",
|
|
585
|
+
"parse5-htmlparser2-tree-adapter": "^7.1.0",
|
|
586
|
+
"parse5-parser-stream": "^7.1.2",
|
|
587
|
+
"undici": "^7.12.0",
|
|
588
|
+
"whatwg-mimetype": "^4.0.0"
|
|
589
|
+
},
|
|
590
|
+
"engines": {
|
|
591
|
+
"node": ">=20.18.1"
|
|
592
|
+
},
|
|
593
|
+
"funding": {
|
|
594
|
+
"url": "https://github.com/cheeriojs/cheerio?sponsor=1"
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
"node_modules/cheerio-select": {
|
|
598
|
+
"version": "2.1.0",
|
|
599
|
+
"resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz",
|
|
600
|
+
"integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==",
|
|
601
|
+
"license": "BSD-2-Clause",
|
|
602
|
+
"dependencies": {
|
|
603
|
+
"boolbase": "^1.0.0",
|
|
604
|
+
"css-select": "^5.1.0",
|
|
605
|
+
"css-what": "^6.1.0",
|
|
606
|
+
"domelementtype": "^2.3.0",
|
|
607
|
+
"domhandler": "^5.0.3",
|
|
608
|
+
"domutils": "^3.0.1"
|
|
609
|
+
},
|
|
610
|
+
"funding": {
|
|
611
|
+
"url": "https://github.com/sponsors/fb55"
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
"node_modules/chromium-bidi": {
|
|
615
|
+
"version": "0.11.0",
|
|
616
|
+
"resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.11.0.tgz",
|
|
617
|
+
"integrity": "sha512-6CJWHkNRoyZyjV9Rwv2lYONZf1Xm0IuDyNq97nwSsxxP3wf5Bwy15K5rOvVKMtJ127jJBmxFUanSAOjgFRxgrA==",
|
|
618
|
+
"license": "Apache-2.0",
|
|
619
|
+
"dependencies": {
|
|
620
|
+
"mitt": "3.0.1",
|
|
621
|
+
"zod": "3.23.8"
|
|
622
|
+
},
|
|
623
|
+
"peerDependencies": {
|
|
624
|
+
"devtools-protocol": "*"
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
"node_modules/cliui": {
|
|
628
|
+
"version": "8.0.1",
|
|
629
|
+
"resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
|
|
630
|
+
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
|
|
631
|
+
"license": "ISC",
|
|
632
|
+
"dependencies": {
|
|
633
|
+
"string-width": "^4.2.0",
|
|
634
|
+
"strip-ansi": "^6.0.1",
|
|
635
|
+
"wrap-ansi": "^7.0.0"
|
|
636
|
+
},
|
|
637
|
+
"engines": {
|
|
638
|
+
"node": ">=12"
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"node_modules/clone-deep": {
|
|
642
|
+
"version": "0.2.4",
|
|
643
|
+
"resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz",
|
|
644
|
+
"integrity": "sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==",
|
|
645
|
+
"license": "MIT",
|
|
646
|
+
"dependencies": {
|
|
647
|
+
"for-own": "^0.1.3",
|
|
648
|
+
"is-plain-object": "^2.0.1",
|
|
649
|
+
"kind-of": "^3.0.2",
|
|
650
|
+
"lazy-cache": "^1.0.3",
|
|
651
|
+
"shallow-clone": "^0.1.2"
|
|
652
|
+
},
|
|
653
|
+
"engines": {
|
|
654
|
+
"node": ">=0.10.0"
|
|
655
|
+
}
|
|
656
|
+
},
|
|
657
|
+
"node_modules/color-convert": {
|
|
658
|
+
"version": "2.0.1",
|
|
659
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
660
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
661
|
+
"license": "MIT",
|
|
662
|
+
"dependencies": {
|
|
663
|
+
"color-name": "~1.1.4"
|
|
664
|
+
},
|
|
665
|
+
"engines": {
|
|
666
|
+
"node": ">=7.0.0"
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"node_modules/color-name": {
|
|
670
|
+
"version": "1.1.4",
|
|
671
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
672
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
673
|
+
"license": "MIT"
|
|
674
|
+
},
|
|
675
|
+
"node_modules/concat-map": {
|
|
676
|
+
"version": "0.0.1",
|
|
677
|
+
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
678
|
+
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
|
|
679
|
+
"license": "MIT"
|
|
680
|
+
},
|
|
681
|
+
"node_modules/cosmiconfig": {
|
|
682
|
+
"version": "9.0.0",
|
|
683
|
+
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz",
|
|
684
|
+
"integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
|
|
685
|
+
"license": "MIT",
|
|
686
|
+
"dependencies": {
|
|
687
|
+
"env-paths": "^2.2.1",
|
|
688
|
+
"import-fresh": "^3.3.0",
|
|
689
|
+
"js-yaml": "^4.1.0",
|
|
690
|
+
"parse-json": "^5.2.0"
|
|
691
|
+
},
|
|
692
|
+
"engines": {
|
|
693
|
+
"node": ">=14"
|
|
694
|
+
},
|
|
695
|
+
"funding": {
|
|
696
|
+
"url": "https://github.com/sponsors/d-fischer"
|
|
697
|
+
},
|
|
698
|
+
"peerDependencies": {
|
|
699
|
+
"typescript": ">=4.9.5"
|
|
700
|
+
},
|
|
701
|
+
"peerDependenciesMeta": {
|
|
702
|
+
"typescript": {
|
|
703
|
+
"optional": true
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
"node_modules/css-select": {
|
|
708
|
+
"version": "5.2.2",
|
|
709
|
+
"resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz",
|
|
710
|
+
"integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==",
|
|
711
|
+
"license": "BSD-2-Clause",
|
|
712
|
+
"dependencies": {
|
|
713
|
+
"boolbase": "^1.0.0",
|
|
714
|
+
"css-what": "^6.1.0",
|
|
715
|
+
"domhandler": "^5.0.2",
|
|
716
|
+
"domutils": "^3.0.1",
|
|
717
|
+
"nth-check": "^2.0.1"
|
|
718
|
+
},
|
|
719
|
+
"funding": {
|
|
720
|
+
"url": "https://github.com/sponsors/fb55"
|
|
721
|
+
}
|
|
722
|
+
},
|
|
723
|
+
"node_modules/css-tree": {
|
|
724
|
+
"version": "3.1.0",
|
|
725
|
+
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
|
|
726
|
+
"integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
|
|
727
|
+
"license": "MIT",
|
|
728
|
+
"dependencies": {
|
|
729
|
+
"mdn-data": "2.12.2",
|
|
730
|
+
"source-map-js": "^1.0.1"
|
|
731
|
+
},
|
|
732
|
+
"engines": {
|
|
733
|
+
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
"node_modules/css-what": {
|
|
737
|
+
"version": "6.2.2",
|
|
738
|
+
"resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz",
|
|
739
|
+
"integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==",
|
|
740
|
+
"license": "BSD-2-Clause",
|
|
741
|
+
"engines": {
|
|
742
|
+
"node": ">= 6"
|
|
743
|
+
},
|
|
744
|
+
"funding": {
|
|
745
|
+
"url": "https://github.com/sponsors/fb55"
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
"node_modules/cssstyle": {
|
|
749
|
+
"version": "5.3.3",
|
|
750
|
+
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-5.3.3.tgz",
|
|
751
|
+
"integrity": "sha512-OytmFH+13/QXONJcC75QNdMtKpceNk3u8ThBjyyYjkEcy/ekBwR1mMAuNvi3gdBPW3N5TlCzQ0WZw8H0lN/bDw==",
|
|
752
|
+
"license": "MIT",
|
|
753
|
+
"dependencies": {
|
|
754
|
+
"@asamuzakjp/css-color": "^4.0.3",
|
|
755
|
+
"@csstools/css-syntax-patches-for-csstree": "^1.0.14",
|
|
756
|
+
"css-tree": "^3.1.0"
|
|
757
|
+
},
|
|
758
|
+
"engines": {
|
|
759
|
+
"node": ">=20"
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
"node_modules/data-uri-to-buffer": {
|
|
763
|
+
"version": "6.0.2",
|
|
764
|
+
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz",
|
|
765
|
+
"integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==",
|
|
766
|
+
"license": "MIT",
|
|
767
|
+
"engines": {
|
|
768
|
+
"node": ">= 14"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
"node_modules/data-urls": {
|
|
772
|
+
"version": "6.0.0",
|
|
773
|
+
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-6.0.0.tgz",
|
|
774
|
+
"integrity": "sha512-BnBS08aLUM+DKamupXs3w2tJJoqU+AkaE/+6vQxi/G/DPmIZFJJp9Dkb1kM03AZx8ADehDUZgsNxju3mPXZYIA==",
|
|
775
|
+
"license": "MIT",
|
|
776
|
+
"dependencies": {
|
|
777
|
+
"whatwg-mimetype": "^4.0.0",
|
|
778
|
+
"whatwg-url": "^15.0.0"
|
|
779
|
+
},
|
|
780
|
+
"engines": {
|
|
781
|
+
"node": ">=20"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
"node_modules/debug": {
|
|
785
|
+
"version": "4.4.3",
|
|
786
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
787
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
788
|
+
"license": "MIT",
|
|
789
|
+
"dependencies": {
|
|
790
|
+
"ms": "^2.1.3"
|
|
791
|
+
},
|
|
792
|
+
"engines": {
|
|
793
|
+
"node": ">=6.0"
|
|
794
|
+
},
|
|
795
|
+
"peerDependenciesMeta": {
|
|
796
|
+
"supports-color": {
|
|
797
|
+
"optional": true
|
|
798
|
+
}
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
"node_modules/decimal.js": {
|
|
802
|
+
"version": "10.6.0",
|
|
803
|
+
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz",
|
|
804
|
+
"integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==",
|
|
805
|
+
"license": "MIT"
|
|
806
|
+
},
|
|
807
|
+
"node_modules/deepmerge": {
|
|
808
|
+
"version": "4.3.1",
|
|
809
|
+
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
|
|
810
|
+
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
|
|
811
|
+
"license": "MIT",
|
|
812
|
+
"engines": {
|
|
813
|
+
"node": ">=0.10.0"
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
"node_modules/degenerator": {
|
|
817
|
+
"version": "5.0.1",
|
|
818
|
+
"resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz",
|
|
819
|
+
"integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==",
|
|
820
|
+
"license": "MIT",
|
|
821
|
+
"dependencies": {
|
|
822
|
+
"ast-types": "^0.13.4",
|
|
823
|
+
"escodegen": "^2.1.0",
|
|
824
|
+
"esprima": "^4.0.1"
|
|
825
|
+
},
|
|
826
|
+
"engines": {
|
|
827
|
+
"node": ">= 14"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"node_modules/devtools-protocol": {
|
|
831
|
+
"version": "0.0.1367902",
|
|
832
|
+
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1367902.tgz",
|
|
833
|
+
"integrity": "sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==",
|
|
834
|
+
"license": "BSD-3-Clause",
|
|
835
|
+
"peer": true
|
|
836
|
+
},
|
|
837
|
+
"node_modules/dom-serializer": {
|
|
838
|
+
"version": "2.0.0",
|
|
839
|
+
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
|
|
840
|
+
"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
|
|
841
|
+
"license": "MIT",
|
|
842
|
+
"dependencies": {
|
|
843
|
+
"domelementtype": "^2.3.0",
|
|
844
|
+
"domhandler": "^5.0.2",
|
|
845
|
+
"entities": "^4.2.0"
|
|
846
|
+
},
|
|
847
|
+
"funding": {
|
|
848
|
+
"url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
"node_modules/domelementtype": {
|
|
852
|
+
"version": "2.3.0",
|
|
853
|
+
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
|
|
854
|
+
"integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
|
|
855
|
+
"funding": [
|
|
856
|
+
{
|
|
857
|
+
"type": "github",
|
|
858
|
+
"url": "https://github.com/sponsors/fb55"
|
|
859
|
+
}
|
|
860
|
+
],
|
|
861
|
+
"license": "BSD-2-Clause"
|
|
862
|
+
},
|
|
863
|
+
"node_modules/domhandler": {
|
|
864
|
+
"version": "5.0.3",
|
|
865
|
+
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
|
|
866
|
+
"integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
|
|
867
|
+
"license": "BSD-2-Clause",
|
|
868
|
+
"dependencies": {
|
|
869
|
+
"domelementtype": "^2.3.0"
|
|
870
|
+
},
|
|
871
|
+
"engines": {
|
|
872
|
+
"node": ">= 4"
|
|
873
|
+
},
|
|
874
|
+
"funding": {
|
|
875
|
+
"url": "https://github.com/fb55/domhandler?sponsor=1"
|
|
876
|
+
}
|
|
877
|
+
},
|
|
878
|
+
"node_modules/domutils": {
|
|
879
|
+
"version": "3.2.2",
|
|
880
|
+
"resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
|
|
881
|
+
"integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
|
|
882
|
+
"license": "BSD-2-Clause",
|
|
883
|
+
"dependencies": {
|
|
884
|
+
"dom-serializer": "^2.0.0",
|
|
885
|
+
"domelementtype": "^2.3.0",
|
|
886
|
+
"domhandler": "^5.0.3"
|
|
887
|
+
},
|
|
888
|
+
"funding": {
|
|
889
|
+
"url": "https://github.com/fb55/domutils?sponsor=1"
|
|
890
|
+
}
|
|
891
|
+
},
|
|
892
|
+
"node_modules/emoji-regex": {
|
|
893
|
+
"version": "8.0.0",
|
|
894
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
895
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
896
|
+
"license": "MIT"
|
|
897
|
+
},
|
|
898
|
+
"node_modules/encoding-sniffer": {
|
|
899
|
+
"version": "0.2.1",
|
|
900
|
+
"resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz",
|
|
901
|
+
"integrity": "sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==",
|
|
902
|
+
"license": "MIT",
|
|
903
|
+
"dependencies": {
|
|
904
|
+
"iconv-lite": "^0.6.3",
|
|
905
|
+
"whatwg-encoding": "^3.1.1"
|
|
906
|
+
},
|
|
907
|
+
"funding": {
|
|
908
|
+
"url": "https://github.com/fb55/encoding-sniffer?sponsor=1"
|
|
909
|
+
}
|
|
910
|
+
},
|
|
911
|
+
"node_modules/end-of-stream": {
|
|
912
|
+
"version": "1.4.5",
|
|
913
|
+
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
|
|
914
|
+
"integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
|
|
915
|
+
"license": "MIT",
|
|
916
|
+
"dependencies": {
|
|
917
|
+
"once": "^1.4.0"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
"node_modules/entities": {
|
|
921
|
+
"version": "4.5.0",
|
|
922
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
|
|
923
|
+
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
|
|
924
|
+
"license": "BSD-2-Clause",
|
|
925
|
+
"engines": {
|
|
926
|
+
"node": ">=0.12"
|
|
927
|
+
},
|
|
928
|
+
"funding": {
|
|
929
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
930
|
+
}
|
|
931
|
+
},
|
|
932
|
+
"node_modules/env-paths": {
|
|
933
|
+
"version": "2.2.1",
|
|
934
|
+
"resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
|
|
935
|
+
"integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
|
|
936
|
+
"license": "MIT",
|
|
937
|
+
"engines": {
|
|
938
|
+
"node": ">=6"
|
|
939
|
+
}
|
|
940
|
+
},
|
|
941
|
+
"node_modules/error-ex": {
|
|
942
|
+
"version": "1.3.4",
|
|
943
|
+
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz",
|
|
944
|
+
"integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
|
|
945
|
+
"license": "MIT",
|
|
946
|
+
"dependencies": {
|
|
947
|
+
"is-arrayish": "^0.2.1"
|
|
948
|
+
}
|
|
949
|
+
},
|
|
950
|
+
"node_modules/escalade": {
|
|
951
|
+
"version": "3.2.0",
|
|
952
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
953
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
954
|
+
"license": "MIT",
|
|
955
|
+
"engines": {
|
|
956
|
+
"node": ">=6"
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
"node_modules/escodegen": {
|
|
960
|
+
"version": "2.1.0",
|
|
961
|
+
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
|
|
962
|
+
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
|
|
963
|
+
"license": "BSD-2-Clause",
|
|
964
|
+
"dependencies": {
|
|
965
|
+
"esprima": "^4.0.1",
|
|
966
|
+
"estraverse": "^5.2.0",
|
|
967
|
+
"esutils": "^2.0.2"
|
|
968
|
+
},
|
|
969
|
+
"bin": {
|
|
970
|
+
"escodegen": "bin/escodegen.js",
|
|
971
|
+
"esgenerate": "bin/esgenerate.js"
|
|
972
|
+
},
|
|
973
|
+
"engines": {
|
|
974
|
+
"node": ">=6.0"
|
|
975
|
+
},
|
|
976
|
+
"optionalDependencies": {
|
|
977
|
+
"source-map": "~0.6.1"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
"node_modules/esprima": {
|
|
981
|
+
"version": "4.0.1",
|
|
982
|
+
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
|
|
983
|
+
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
|
|
984
|
+
"license": "BSD-2-Clause",
|
|
985
|
+
"bin": {
|
|
986
|
+
"esparse": "bin/esparse.js",
|
|
987
|
+
"esvalidate": "bin/esvalidate.js"
|
|
988
|
+
},
|
|
989
|
+
"engines": {
|
|
990
|
+
"node": ">=4"
|
|
991
|
+
}
|
|
992
|
+
},
|
|
993
|
+
"node_modules/estraverse": {
|
|
994
|
+
"version": "5.3.0",
|
|
995
|
+
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
|
|
996
|
+
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
|
|
997
|
+
"license": "BSD-2-Clause",
|
|
998
|
+
"engines": {
|
|
999
|
+
"node": ">=4.0"
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
"node_modules/esutils": {
|
|
1003
|
+
"version": "2.0.3",
|
|
1004
|
+
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
|
1005
|
+
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
|
1006
|
+
"license": "BSD-2-Clause",
|
|
1007
|
+
"engines": {
|
|
1008
|
+
"node": ">=0.10.0"
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"node_modules/events-universal": {
|
|
1012
|
+
"version": "1.0.1",
|
|
1013
|
+
"resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz",
|
|
1014
|
+
"integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==",
|
|
1015
|
+
"license": "Apache-2.0",
|
|
1016
|
+
"dependencies": {
|
|
1017
|
+
"bare-events": "^2.7.0"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"node_modules/extract-zip": {
|
|
1021
|
+
"version": "2.0.1",
|
|
1022
|
+
"resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
|
|
1023
|
+
"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
|
|
1024
|
+
"license": "BSD-2-Clause",
|
|
1025
|
+
"dependencies": {
|
|
1026
|
+
"debug": "^4.1.1",
|
|
1027
|
+
"get-stream": "^5.1.0",
|
|
1028
|
+
"yauzl": "^2.10.0"
|
|
1029
|
+
},
|
|
1030
|
+
"bin": {
|
|
1031
|
+
"extract-zip": "cli.js"
|
|
1032
|
+
},
|
|
1033
|
+
"engines": {
|
|
1034
|
+
"node": ">= 10.17.0"
|
|
1035
|
+
},
|
|
1036
|
+
"optionalDependencies": {
|
|
1037
|
+
"@types/yauzl": "^2.9.1"
|
|
1038
|
+
}
|
|
1039
|
+
},
|
|
1040
|
+
"node_modules/fast-fifo": {
|
|
1041
|
+
"version": "1.3.2",
|
|
1042
|
+
"resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz",
|
|
1043
|
+
"integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
|
|
1044
|
+
"license": "MIT"
|
|
1045
|
+
},
|
|
1046
|
+
"node_modules/fd-slicer": {
|
|
1047
|
+
"version": "1.1.0",
|
|
1048
|
+
"resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
|
|
1049
|
+
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
|
|
1050
|
+
"license": "MIT",
|
|
1051
|
+
"dependencies": {
|
|
1052
|
+
"pend": "~1.2.0"
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
1055
|
+
"node_modules/for-in": {
|
|
1056
|
+
"version": "1.0.2",
|
|
1057
|
+
"resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
|
|
1058
|
+
"integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==",
|
|
1059
|
+
"license": "MIT",
|
|
1060
|
+
"engines": {
|
|
1061
|
+
"node": ">=0.10.0"
|
|
1062
|
+
}
|
|
1063
|
+
},
|
|
1064
|
+
"node_modules/for-own": {
|
|
1065
|
+
"version": "0.1.5",
|
|
1066
|
+
"resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz",
|
|
1067
|
+
"integrity": "sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==",
|
|
1068
|
+
"license": "MIT",
|
|
1069
|
+
"dependencies": {
|
|
1070
|
+
"for-in": "^1.0.1"
|
|
1071
|
+
},
|
|
1072
|
+
"engines": {
|
|
1073
|
+
"node": ">=0.10.0"
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"node_modules/fs-extra": {
|
|
1077
|
+
"version": "10.1.0",
|
|
1078
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
|
|
1079
|
+
"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
|
|
1080
|
+
"license": "MIT",
|
|
1081
|
+
"dependencies": {
|
|
1082
|
+
"graceful-fs": "^4.2.0",
|
|
1083
|
+
"jsonfile": "^6.0.1",
|
|
1084
|
+
"universalify": "^2.0.0"
|
|
1085
|
+
},
|
|
1086
|
+
"engines": {
|
|
1087
|
+
"node": ">=12"
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
"node_modules/fs.realpath": {
|
|
1091
|
+
"version": "1.0.0",
|
|
1092
|
+
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
1093
|
+
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
|
|
1094
|
+
"license": "ISC"
|
|
1095
|
+
},
|
|
1096
|
+
"node_modules/get-caller-file": {
|
|
1097
|
+
"version": "2.0.5",
|
|
1098
|
+
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
|
1099
|
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
|
|
1100
|
+
"license": "ISC",
|
|
1101
|
+
"engines": {
|
|
1102
|
+
"node": "6.* || 8.* || >= 10.*"
|
|
1103
|
+
}
|
|
1104
|
+
},
|
|
1105
|
+
"node_modules/get-stream": {
|
|
1106
|
+
"version": "5.2.0",
|
|
1107
|
+
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
|
|
1108
|
+
"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
|
|
1109
|
+
"license": "MIT",
|
|
1110
|
+
"dependencies": {
|
|
1111
|
+
"pump": "^3.0.0"
|
|
1112
|
+
},
|
|
1113
|
+
"engines": {
|
|
1114
|
+
"node": ">=8"
|
|
1115
|
+
},
|
|
1116
|
+
"funding": {
|
|
1117
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1118
|
+
}
|
|
1119
|
+
},
|
|
1120
|
+
"node_modules/get-uri": {
|
|
1121
|
+
"version": "6.0.5",
|
|
1122
|
+
"resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.5.tgz",
|
|
1123
|
+
"integrity": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==",
|
|
1124
|
+
"license": "MIT",
|
|
1125
|
+
"dependencies": {
|
|
1126
|
+
"basic-ftp": "^5.0.2",
|
|
1127
|
+
"data-uri-to-buffer": "^6.0.2",
|
|
1128
|
+
"debug": "^4.3.4"
|
|
1129
|
+
},
|
|
1130
|
+
"engines": {
|
|
1131
|
+
"node": ">= 14"
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
"node_modules/glob": {
|
|
1135
|
+
"version": "7.2.3",
|
|
1136
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
|
|
1137
|
+
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
1138
|
+
"deprecated": "Glob versions prior to v9 are no longer supported",
|
|
1139
|
+
"license": "ISC",
|
|
1140
|
+
"dependencies": {
|
|
1141
|
+
"fs.realpath": "^1.0.0",
|
|
1142
|
+
"inflight": "^1.0.4",
|
|
1143
|
+
"inherits": "2",
|
|
1144
|
+
"minimatch": "^3.1.1",
|
|
1145
|
+
"once": "^1.3.0",
|
|
1146
|
+
"path-is-absolute": "^1.0.0"
|
|
1147
|
+
},
|
|
1148
|
+
"engines": {
|
|
1149
|
+
"node": "*"
|
|
1150
|
+
},
|
|
1151
|
+
"funding": {
|
|
1152
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1155
|
+
"node_modules/graceful-fs": {
|
|
1156
|
+
"version": "4.2.11",
|
|
1157
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
1158
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
1159
|
+
"license": "ISC"
|
|
1160
|
+
},
|
|
1161
|
+
"node_modules/html-encoding-sniffer": {
|
|
1162
|
+
"version": "4.0.0",
|
|
1163
|
+
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
|
|
1164
|
+
"integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
|
|
1165
|
+
"license": "MIT",
|
|
1166
|
+
"dependencies": {
|
|
1167
|
+
"whatwg-encoding": "^3.1.1"
|
|
1168
|
+
},
|
|
1169
|
+
"engines": {
|
|
1170
|
+
"node": ">=18"
|
|
1171
|
+
}
|
|
1172
|
+
},
|
|
1173
|
+
"node_modules/htmlparser2": {
|
|
1174
|
+
"version": "10.0.0",
|
|
1175
|
+
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz",
|
|
1176
|
+
"integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==",
|
|
1177
|
+
"funding": [
|
|
1178
|
+
"https://github.com/fb55/htmlparser2?sponsor=1",
|
|
1179
|
+
{
|
|
1180
|
+
"type": "github",
|
|
1181
|
+
"url": "https://github.com/sponsors/fb55"
|
|
1182
|
+
}
|
|
1183
|
+
],
|
|
1184
|
+
"license": "MIT",
|
|
1185
|
+
"dependencies": {
|
|
1186
|
+
"domelementtype": "^2.3.0",
|
|
1187
|
+
"domhandler": "^5.0.3",
|
|
1188
|
+
"domutils": "^3.2.1",
|
|
1189
|
+
"entities": "^6.0.0"
|
|
1190
|
+
}
|
|
1191
|
+
},
|
|
1192
|
+
"node_modules/htmlparser2/node_modules/entities": {
|
|
1193
|
+
"version": "6.0.1",
|
|
1194
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
|
|
1195
|
+
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
|
|
1196
|
+
"license": "BSD-2-Clause",
|
|
1197
|
+
"engines": {
|
|
1198
|
+
"node": ">=0.12"
|
|
1199
|
+
},
|
|
1200
|
+
"funding": {
|
|
1201
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
1202
|
+
}
|
|
1203
|
+
},
|
|
1204
|
+
"node_modules/http-proxy-agent": {
|
|
1205
|
+
"version": "7.0.2",
|
|
1206
|
+
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
|
|
1207
|
+
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
|
|
1208
|
+
"license": "MIT",
|
|
1209
|
+
"dependencies": {
|
|
1210
|
+
"agent-base": "^7.1.0",
|
|
1211
|
+
"debug": "^4.3.4"
|
|
1212
|
+
},
|
|
1213
|
+
"engines": {
|
|
1214
|
+
"node": ">= 14"
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
"node_modules/https-proxy-agent": {
|
|
1218
|
+
"version": "7.0.6",
|
|
1219
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
|
|
1220
|
+
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
|
|
1221
|
+
"license": "MIT",
|
|
1222
|
+
"dependencies": {
|
|
1223
|
+
"agent-base": "^7.1.2",
|
|
1224
|
+
"debug": "4"
|
|
1225
|
+
},
|
|
1226
|
+
"engines": {
|
|
1227
|
+
"node": ">= 14"
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
"node_modules/iconv-lite": {
|
|
1231
|
+
"version": "0.6.3",
|
|
1232
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
1233
|
+
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
1234
|
+
"license": "MIT",
|
|
1235
|
+
"dependencies": {
|
|
1236
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
1237
|
+
},
|
|
1238
|
+
"engines": {
|
|
1239
|
+
"node": ">=0.10.0"
|
|
1240
|
+
}
|
|
1241
|
+
},
|
|
1242
|
+
"node_modules/ieee754": {
|
|
1243
|
+
"version": "1.2.1",
|
|
1244
|
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
1245
|
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
1246
|
+
"funding": [
|
|
1247
|
+
{
|
|
1248
|
+
"type": "github",
|
|
1249
|
+
"url": "https://github.com/sponsors/feross"
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"type": "patreon",
|
|
1253
|
+
"url": "https://www.patreon.com/feross"
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"type": "consulting",
|
|
1257
|
+
"url": "https://feross.org/support"
|
|
1258
|
+
}
|
|
1259
|
+
],
|
|
1260
|
+
"license": "BSD-3-Clause"
|
|
1261
|
+
},
|
|
1262
|
+
"node_modules/import-fresh": {
|
|
1263
|
+
"version": "3.3.1",
|
|
1264
|
+
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
|
|
1265
|
+
"integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
|
|
1266
|
+
"license": "MIT",
|
|
1267
|
+
"dependencies": {
|
|
1268
|
+
"parent-module": "^1.0.0",
|
|
1269
|
+
"resolve-from": "^4.0.0"
|
|
1270
|
+
},
|
|
1271
|
+
"engines": {
|
|
1272
|
+
"node": ">=6"
|
|
1273
|
+
},
|
|
1274
|
+
"funding": {
|
|
1275
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1276
|
+
}
|
|
1277
|
+
},
|
|
1278
|
+
"node_modules/inflight": {
|
|
1279
|
+
"version": "1.0.6",
|
|
1280
|
+
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
1281
|
+
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
|
|
1282
|
+
"deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
|
|
1283
|
+
"license": "ISC",
|
|
1284
|
+
"dependencies": {
|
|
1285
|
+
"once": "^1.3.0",
|
|
1286
|
+
"wrappy": "1"
|
|
1287
|
+
}
|
|
1288
|
+
},
|
|
1289
|
+
"node_modules/inherits": {
|
|
1290
|
+
"version": "2.0.4",
|
|
1291
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
1292
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
1293
|
+
"license": "ISC"
|
|
1294
|
+
},
|
|
1295
|
+
"node_modules/ip-address": {
|
|
1296
|
+
"version": "10.0.1",
|
|
1297
|
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.0.1.tgz",
|
|
1298
|
+
"integrity": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==",
|
|
1299
|
+
"license": "MIT",
|
|
1300
|
+
"engines": {
|
|
1301
|
+
"node": ">= 12"
|
|
1302
|
+
}
|
|
1303
|
+
},
|
|
1304
|
+
"node_modules/is-arrayish": {
|
|
1305
|
+
"version": "0.2.1",
|
|
1306
|
+
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
|
|
1307
|
+
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
|
|
1308
|
+
"license": "MIT"
|
|
1309
|
+
},
|
|
1310
|
+
"node_modules/is-buffer": {
|
|
1311
|
+
"version": "1.1.6",
|
|
1312
|
+
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
|
|
1313
|
+
"integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
|
|
1314
|
+
"license": "MIT"
|
|
1315
|
+
},
|
|
1316
|
+
"node_modules/is-extendable": {
|
|
1317
|
+
"version": "0.1.1",
|
|
1318
|
+
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
|
|
1319
|
+
"integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
|
|
1320
|
+
"license": "MIT",
|
|
1321
|
+
"engines": {
|
|
1322
|
+
"node": ">=0.10.0"
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
"node_modules/is-fullwidth-code-point": {
|
|
1326
|
+
"version": "3.0.0",
|
|
1327
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
1328
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
1329
|
+
"license": "MIT",
|
|
1330
|
+
"engines": {
|
|
1331
|
+
"node": ">=8"
|
|
1332
|
+
}
|
|
1333
|
+
},
|
|
1334
|
+
"node_modules/is-plain-object": {
|
|
1335
|
+
"version": "2.0.4",
|
|
1336
|
+
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
|
|
1337
|
+
"integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
|
|
1338
|
+
"license": "MIT",
|
|
1339
|
+
"dependencies": {
|
|
1340
|
+
"isobject": "^3.0.1"
|
|
1341
|
+
},
|
|
1342
|
+
"engines": {
|
|
1343
|
+
"node": ">=0.10.0"
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
"node_modules/is-potential-custom-element-name": {
|
|
1347
|
+
"version": "1.0.1",
|
|
1348
|
+
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
|
|
1349
|
+
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
|
|
1350
|
+
"license": "MIT"
|
|
1351
|
+
},
|
|
1352
|
+
"node_modules/isobject": {
|
|
1353
|
+
"version": "3.0.1",
|
|
1354
|
+
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
|
|
1355
|
+
"integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
|
|
1356
|
+
"license": "MIT",
|
|
1357
|
+
"engines": {
|
|
1358
|
+
"node": ">=0.10.0"
|
|
1359
|
+
}
|
|
1360
|
+
},
|
|
1361
|
+
"node_modules/js-tokens": {
|
|
1362
|
+
"version": "4.0.0",
|
|
1363
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
1364
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
1365
|
+
"license": "MIT"
|
|
1366
|
+
},
|
|
1367
|
+
"node_modules/js-yaml": {
|
|
1368
|
+
"version": "4.1.1",
|
|
1369
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
|
|
1370
|
+
"integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
|
|
1371
|
+
"license": "MIT",
|
|
1372
|
+
"dependencies": {
|
|
1373
|
+
"argparse": "^2.0.1"
|
|
1374
|
+
},
|
|
1375
|
+
"bin": {
|
|
1376
|
+
"js-yaml": "bin/js-yaml.js"
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1379
|
+
"node_modules/jsdom": {
|
|
1380
|
+
"version": "27.0.1",
|
|
1381
|
+
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-27.0.1.tgz",
|
|
1382
|
+
"integrity": "sha512-SNSQteBL1IlV2zqhwwolaG9CwhIhTvVHWg3kTss/cLE7H/X4644mtPQqYvCfsSrGQWt9hSZcgOXX8bOZaMN+kA==",
|
|
1383
|
+
"license": "MIT",
|
|
1384
|
+
"dependencies": {
|
|
1385
|
+
"@asamuzakjp/dom-selector": "^6.7.2",
|
|
1386
|
+
"cssstyle": "^5.3.1",
|
|
1387
|
+
"data-urls": "^6.0.0",
|
|
1388
|
+
"decimal.js": "^10.6.0",
|
|
1389
|
+
"html-encoding-sniffer": "^4.0.0",
|
|
1390
|
+
"http-proxy-agent": "^7.0.2",
|
|
1391
|
+
"https-proxy-agent": "^7.0.6",
|
|
1392
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
1393
|
+
"parse5": "^8.0.0",
|
|
1394
|
+
"rrweb-cssom": "^0.8.0",
|
|
1395
|
+
"saxes": "^6.0.0",
|
|
1396
|
+
"symbol-tree": "^3.2.4",
|
|
1397
|
+
"tough-cookie": "^6.0.0",
|
|
1398
|
+
"w3c-xmlserializer": "^5.0.0",
|
|
1399
|
+
"webidl-conversions": "^8.0.0",
|
|
1400
|
+
"whatwg-encoding": "^3.1.1",
|
|
1401
|
+
"whatwg-mimetype": "^4.0.0",
|
|
1402
|
+
"whatwg-url": "^15.1.0",
|
|
1403
|
+
"ws": "^8.18.3",
|
|
1404
|
+
"xml-name-validator": "^5.0.0"
|
|
1405
|
+
},
|
|
1406
|
+
"engines": {
|
|
1407
|
+
"node": ">=20"
|
|
1408
|
+
},
|
|
1409
|
+
"peerDependencies": {
|
|
1410
|
+
"canvas": "^3.0.0"
|
|
1411
|
+
},
|
|
1412
|
+
"peerDependenciesMeta": {
|
|
1413
|
+
"canvas": {
|
|
1414
|
+
"optional": true
|
|
1415
|
+
}
|
|
1416
|
+
}
|
|
1417
|
+
},
|
|
1418
|
+
"node_modules/jsdom/node_modules/entities": {
|
|
1419
|
+
"version": "6.0.1",
|
|
1420
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
|
|
1421
|
+
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
|
|
1422
|
+
"license": "BSD-2-Clause",
|
|
1423
|
+
"engines": {
|
|
1424
|
+
"node": ">=0.12"
|
|
1425
|
+
},
|
|
1426
|
+
"funding": {
|
|
1427
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
1428
|
+
}
|
|
1429
|
+
},
|
|
1430
|
+
"node_modules/jsdom/node_modules/parse5": {
|
|
1431
|
+
"version": "8.0.0",
|
|
1432
|
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.0.tgz",
|
|
1433
|
+
"integrity": "sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==",
|
|
1434
|
+
"license": "MIT",
|
|
1435
|
+
"dependencies": {
|
|
1436
|
+
"entities": "^6.0.0"
|
|
1437
|
+
},
|
|
1438
|
+
"funding": {
|
|
1439
|
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
|
1440
|
+
}
|
|
1441
|
+
},
|
|
1442
|
+
"node_modules/json-parse-even-better-errors": {
|
|
1443
|
+
"version": "2.3.1",
|
|
1444
|
+
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
|
|
1445
|
+
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
|
|
1446
|
+
"license": "MIT"
|
|
1447
|
+
},
|
|
1448
|
+
"node_modules/jsonfile": {
|
|
1449
|
+
"version": "6.2.0",
|
|
1450
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
|
|
1451
|
+
"integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
|
|
1452
|
+
"license": "MIT",
|
|
1453
|
+
"dependencies": {
|
|
1454
|
+
"universalify": "^2.0.0"
|
|
1455
|
+
},
|
|
1456
|
+
"optionalDependencies": {
|
|
1457
|
+
"graceful-fs": "^4.1.6"
|
|
1458
|
+
}
|
|
1459
|
+
},
|
|
1460
|
+
"node_modules/kind-of": {
|
|
1461
|
+
"version": "3.2.2",
|
|
1462
|
+
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
|
|
1463
|
+
"integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==",
|
|
1464
|
+
"license": "MIT",
|
|
1465
|
+
"dependencies": {
|
|
1466
|
+
"is-buffer": "^1.1.5"
|
|
1467
|
+
},
|
|
1468
|
+
"engines": {
|
|
1469
|
+
"node": ">=0.10.0"
|
|
1470
|
+
}
|
|
1471
|
+
},
|
|
1472
|
+
"node_modules/lazy-cache": {
|
|
1473
|
+
"version": "1.0.4",
|
|
1474
|
+
"resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
|
|
1475
|
+
"integrity": "sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==",
|
|
1476
|
+
"license": "MIT",
|
|
1477
|
+
"engines": {
|
|
1478
|
+
"node": ">=0.10.0"
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1481
|
+
"node_modules/lines-and-columns": {
|
|
1482
|
+
"version": "1.2.4",
|
|
1483
|
+
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
|
1484
|
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
|
|
1485
|
+
"license": "MIT"
|
|
1486
|
+
},
|
|
1487
|
+
"node_modules/lru-cache": {
|
|
1488
|
+
"version": "7.18.3",
|
|
1489
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
|
|
1490
|
+
"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
|
|
1491
|
+
"license": "ISC",
|
|
1492
|
+
"engines": {
|
|
1493
|
+
"node": ">=12"
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
"node_modules/mdn-data": {
|
|
1497
|
+
"version": "2.12.2",
|
|
1498
|
+
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
|
|
1499
|
+
"integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==",
|
|
1500
|
+
"license": "CC0-1.0"
|
|
1501
|
+
},
|
|
1502
|
+
"node_modules/merge-deep": {
|
|
1503
|
+
"version": "3.0.3",
|
|
1504
|
+
"resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.3.tgz",
|
|
1505
|
+
"integrity": "sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==",
|
|
1506
|
+
"license": "MIT",
|
|
1507
|
+
"dependencies": {
|
|
1508
|
+
"arr-union": "^3.1.0",
|
|
1509
|
+
"clone-deep": "^0.2.4",
|
|
1510
|
+
"kind-of": "^3.0.2"
|
|
1511
|
+
},
|
|
1512
|
+
"engines": {
|
|
1513
|
+
"node": ">=0.10.0"
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
"node_modules/minimatch": {
|
|
1517
|
+
"version": "3.1.2",
|
|
1518
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
|
1519
|
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
|
1520
|
+
"license": "ISC",
|
|
1521
|
+
"dependencies": {
|
|
1522
|
+
"brace-expansion": "^1.1.7"
|
|
1523
|
+
},
|
|
1524
|
+
"engines": {
|
|
1525
|
+
"node": "*"
|
|
1526
|
+
}
|
|
1527
|
+
},
|
|
1528
|
+
"node_modules/mitt": {
|
|
1529
|
+
"version": "3.0.1",
|
|
1530
|
+
"resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
|
|
1531
|
+
"integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
|
|
1532
|
+
"license": "MIT"
|
|
1533
|
+
},
|
|
1534
|
+
"node_modules/mixin-object": {
|
|
1535
|
+
"version": "2.0.1",
|
|
1536
|
+
"resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz",
|
|
1537
|
+
"integrity": "sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==",
|
|
1538
|
+
"license": "MIT",
|
|
1539
|
+
"dependencies": {
|
|
1540
|
+
"for-in": "^0.1.3",
|
|
1541
|
+
"is-extendable": "^0.1.1"
|
|
1542
|
+
},
|
|
1543
|
+
"engines": {
|
|
1544
|
+
"node": ">=0.10.0"
|
|
1545
|
+
}
|
|
1546
|
+
},
|
|
1547
|
+
"node_modules/mixin-object/node_modules/for-in": {
|
|
1548
|
+
"version": "0.1.8",
|
|
1549
|
+
"resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz",
|
|
1550
|
+
"integrity": "sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==",
|
|
1551
|
+
"license": "MIT",
|
|
1552
|
+
"engines": {
|
|
1553
|
+
"node": ">=0.10.0"
|
|
1554
|
+
}
|
|
1555
|
+
},
|
|
1556
|
+
"node_modules/ms": {
|
|
1557
|
+
"version": "2.1.3",
|
|
1558
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1559
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1560
|
+
"license": "MIT"
|
|
1561
|
+
},
|
|
1562
|
+
"node_modules/netmask": {
|
|
1563
|
+
"version": "2.0.2",
|
|
1564
|
+
"resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz",
|
|
1565
|
+
"integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==",
|
|
1566
|
+
"license": "MIT",
|
|
1567
|
+
"engines": {
|
|
1568
|
+
"node": ">= 0.4.0"
|
|
1569
|
+
}
|
|
1570
|
+
},
|
|
1571
|
+
"node_modules/nth-check": {
|
|
1572
|
+
"version": "2.1.1",
|
|
1573
|
+
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
|
|
1574
|
+
"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
|
|
1575
|
+
"license": "BSD-2-Clause",
|
|
1576
|
+
"dependencies": {
|
|
1577
|
+
"boolbase": "^1.0.0"
|
|
1578
|
+
},
|
|
1579
|
+
"funding": {
|
|
1580
|
+
"url": "https://github.com/fb55/nth-check?sponsor=1"
|
|
1581
|
+
}
|
|
1582
|
+
},
|
|
1583
|
+
"node_modules/once": {
|
|
1584
|
+
"version": "1.4.0",
|
|
1585
|
+
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
1586
|
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
1587
|
+
"license": "ISC",
|
|
1588
|
+
"dependencies": {
|
|
1589
|
+
"wrappy": "1"
|
|
1590
|
+
}
|
|
1591
|
+
},
|
|
1592
|
+
"node_modules/pac-proxy-agent": {
|
|
1593
|
+
"version": "7.2.0",
|
|
1594
|
+
"resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz",
|
|
1595
|
+
"integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==",
|
|
1596
|
+
"license": "MIT",
|
|
1597
|
+
"dependencies": {
|
|
1598
|
+
"@tootallnate/quickjs-emscripten": "^0.23.0",
|
|
1599
|
+
"agent-base": "^7.1.2",
|
|
1600
|
+
"debug": "^4.3.4",
|
|
1601
|
+
"get-uri": "^6.0.1",
|
|
1602
|
+
"http-proxy-agent": "^7.0.0",
|
|
1603
|
+
"https-proxy-agent": "^7.0.6",
|
|
1604
|
+
"pac-resolver": "^7.0.1",
|
|
1605
|
+
"socks-proxy-agent": "^8.0.5"
|
|
1606
|
+
},
|
|
1607
|
+
"engines": {
|
|
1608
|
+
"node": ">= 14"
|
|
1609
|
+
}
|
|
1610
|
+
},
|
|
1611
|
+
"node_modules/pac-resolver": {
|
|
1612
|
+
"version": "7.0.1",
|
|
1613
|
+
"resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz",
|
|
1614
|
+
"integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==",
|
|
1615
|
+
"license": "MIT",
|
|
1616
|
+
"dependencies": {
|
|
1617
|
+
"degenerator": "^5.0.0",
|
|
1618
|
+
"netmask": "^2.0.2"
|
|
1619
|
+
},
|
|
1620
|
+
"engines": {
|
|
1621
|
+
"node": ">= 14"
|
|
1622
|
+
}
|
|
1623
|
+
},
|
|
1624
|
+
"node_modules/parent-module": {
|
|
1625
|
+
"version": "1.0.1",
|
|
1626
|
+
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
|
|
1627
|
+
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
|
|
1628
|
+
"license": "MIT",
|
|
1629
|
+
"dependencies": {
|
|
1630
|
+
"callsites": "^3.0.0"
|
|
1631
|
+
},
|
|
1632
|
+
"engines": {
|
|
1633
|
+
"node": ">=6"
|
|
1634
|
+
}
|
|
1635
|
+
},
|
|
1636
|
+
"node_modules/parse-json": {
|
|
1637
|
+
"version": "5.2.0",
|
|
1638
|
+
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
|
|
1639
|
+
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
|
|
1640
|
+
"license": "MIT",
|
|
1641
|
+
"dependencies": {
|
|
1642
|
+
"@babel/code-frame": "^7.0.0",
|
|
1643
|
+
"error-ex": "^1.3.1",
|
|
1644
|
+
"json-parse-even-better-errors": "^2.3.0",
|
|
1645
|
+
"lines-and-columns": "^1.1.6"
|
|
1646
|
+
},
|
|
1647
|
+
"engines": {
|
|
1648
|
+
"node": ">=8"
|
|
1649
|
+
},
|
|
1650
|
+
"funding": {
|
|
1651
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1654
|
+
"node_modules/parse5": {
|
|
1655
|
+
"version": "7.3.0",
|
|
1656
|
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
|
|
1657
|
+
"integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
|
|
1658
|
+
"license": "MIT",
|
|
1659
|
+
"dependencies": {
|
|
1660
|
+
"entities": "^6.0.0"
|
|
1661
|
+
},
|
|
1662
|
+
"funding": {
|
|
1663
|
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
|
1664
|
+
}
|
|
1665
|
+
},
|
|
1666
|
+
"node_modules/parse5-htmlparser2-tree-adapter": {
|
|
1667
|
+
"version": "7.1.0",
|
|
1668
|
+
"resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz",
|
|
1669
|
+
"integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==",
|
|
1670
|
+
"license": "MIT",
|
|
1671
|
+
"dependencies": {
|
|
1672
|
+
"domhandler": "^5.0.3",
|
|
1673
|
+
"parse5": "^7.0.0"
|
|
1674
|
+
},
|
|
1675
|
+
"funding": {
|
|
1676
|
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
|
1677
|
+
}
|
|
1678
|
+
},
|
|
1679
|
+
"node_modules/parse5-parser-stream": {
|
|
1680
|
+
"version": "7.1.2",
|
|
1681
|
+
"resolved": "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz",
|
|
1682
|
+
"integrity": "sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==",
|
|
1683
|
+
"license": "MIT",
|
|
1684
|
+
"dependencies": {
|
|
1685
|
+
"parse5": "^7.0.0"
|
|
1686
|
+
},
|
|
1687
|
+
"funding": {
|
|
1688
|
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
|
1689
|
+
}
|
|
1690
|
+
},
|
|
1691
|
+
"node_modules/parse5/node_modules/entities": {
|
|
1692
|
+
"version": "6.0.1",
|
|
1693
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
|
|
1694
|
+
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
|
|
1695
|
+
"license": "BSD-2-Clause",
|
|
1696
|
+
"engines": {
|
|
1697
|
+
"node": ">=0.12"
|
|
1698
|
+
},
|
|
1699
|
+
"funding": {
|
|
1700
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
1701
|
+
}
|
|
1702
|
+
},
|
|
1703
|
+
"node_modules/path-is-absolute": {
|
|
1704
|
+
"version": "1.0.1",
|
|
1705
|
+
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
1706
|
+
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
|
|
1707
|
+
"license": "MIT",
|
|
1708
|
+
"engines": {
|
|
1709
|
+
"node": ">=0.10.0"
|
|
1710
|
+
}
|
|
1711
|
+
},
|
|
1712
|
+
"node_modules/pend": {
|
|
1713
|
+
"version": "1.2.0",
|
|
1714
|
+
"resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
|
|
1715
|
+
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
|
|
1716
|
+
"license": "MIT"
|
|
1717
|
+
},
|
|
1718
|
+
"node_modules/picocolors": {
|
|
1719
|
+
"version": "1.1.1",
|
|
1720
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
1721
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1722
|
+
"license": "ISC"
|
|
1723
|
+
},
|
|
1724
|
+
"node_modules/progress": {
|
|
1725
|
+
"version": "2.0.3",
|
|
1726
|
+
"resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
|
|
1727
|
+
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
|
|
1728
|
+
"license": "MIT",
|
|
1729
|
+
"engines": {
|
|
1730
|
+
"node": ">=0.4.0"
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
"node_modules/proxy-agent": {
|
|
1734
|
+
"version": "6.5.0",
|
|
1735
|
+
"resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.5.0.tgz",
|
|
1736
|
+
"integrity": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==",
|
|
1737
|
+
"license": "MIT",
|
|
1738
|
+
"dependencies": {
|
|
1739
|
+
"agent-base": "^7.1.2",
|
|
1740
|
+
"debug": "^4.3.4",
|
|
1741
|
+
"http-proxy-agent": "^7.0.1",
|
|
1742
|
+
"https-proxy-agent": "^7.0.6",
|
|
1743
|
+
"lru-cache": "^7.14.1",
|
|
1744
|
+
"pac-proxy-agent": "^7.1.0",
|
|
1745
|
+
"proxy-from-env": "^1.1.0",
|
|
1746
|
+
"socks-proxy-agent": "^8.0.5"
|
|
1747
|
+
},
|
|
1748
|
+
"engines": {
|
|
1749
|
+
"node": ">= 14"
|
|
1750
|
+
}
|
|
1751
|
+
},
|
|
1752
|
+
"node_modules/proxy-from-env": {
|
|
1753
|
+
"version": "1.1.0",
|
|
1754
|
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
|
1755
|
+
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
|
|
1756
|
+
"license": "MIT"
|
|
1757
|
+
},
|
|
1758
|
+
"node_modules/pump": {
|
|
1759
|
+
"version": "3.0.3",
|
|
1760
|
+
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
|
|
1761
|
+
"integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
|
|
1762
|
+
"license": "MIT",
|
|
1763
|
+
"dependencies": {
|
|
1764
|
+
"end-of-stream": "^1.1.0",
|
|
1765
|
+
"once": "^1.3.1"
|
|
1766
|
+
}
|
|
1767
|
+
},
|
|
1768
|
+
"node_modules/punycode": {
|
|
1769
|
+
"version": "2.3.1",
|
|
1770
|
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
1771
|
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
1772
|
+
"license": "MIT",
|
|
1773
|
+
"engines": {
|
|
1774
|
+
"node": ">=6"
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1777
|
+
"node_modules/puppeteer": {
|
|
1778
|
+
"version": "24.31.0",
|
|
1779
|
+
"resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-24.31.0.tgz",
|
|
1780
|
+
"integrity": "sha512-q8y5yLxLD8xdZdzNWqdOL43NbfvUOp60SYhaLZQwHC9CdKldxQKXOyJAciOr7oUJfyAH/KgB2wKvqT2sFKoVXA==",
|
|
1781
|
+
"hasInstallScript": true,
|
|
1782
|
+
"license": "Apache-2.0",
|
|
1783
|
+
"dependencies": {
|
|
1784
|
+
"@puppeteer/browsers": "2.10.13",
|
|
1785
|
+
"chromium-bidi": "11.0.0",
|
|
1786
|
+
"cosmiconfig": "^9.0.0",
|
|
1787
|
+
"devtools-protocol": "0.0.1521046",
|
|
1788
|
+
"puppeteer-core": "24.31.0",
|
|
1789
|
+
"typed-query-selector": "^2.12.0"
|
|
1790
|
+
},
|
|
1791
|
+
"bin": {
|
|
1792
|
+
"puppeteer": "lib/cjs/puppeteer/node/cli.js"
|
|
1793
|
+
},
|
|
1794
|
+
"engines": {
|
|
1795
|
+
"node": ">=18"
|
|
1796
|
+
}
|
|
1797
|
+
},
|
|
1798
|
+
"node_modules/puppeteer-core": {
|
|
1799
|
+
"version": "23.11.1",
|
|
1800
|
+
"resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.11.1.tgz",
|
|
1801
|
+
"integrity": "sha512-3HZ2/7hdDKZvZQ7dhhITOUg4/wOrDRjyK2ZBllRB0ZCOi9u0cwq1ACHDjBB+nX+7+kltHjQvBRdeY7+W0T+7Gg==",
|
|
1802
|
+
"license": "Apache-2.0",
|
|
1803
|
+
"peer": true,
|
|
1804
|
+
"dependencies": {
|
|
1805
|
+
"@puppeteer/browsers": "2.6.1",
|
|
1806
|
+
"chromium-bidi": "0.11.0",
|
|
1807
|
+
"debug": "^4.4.0",
|
|
1808
|
+
"devtools-protocol": "0.0.1367902",
|
|
1809
|
+
"typed-query-selector": "^2.12.0",
|
|
1810
|
+
"ws": "^8.18.0"
|
|
1811
|
+
},
|
|
1812
|
+
"engines": {
|
|
1813
|
+
"node": ">=18"
|
|
1814
|
+
}
|
|
1815
|
+
},
|
|
1816
|
+
"node_modules/puppeteer-extra": {
|
|
1817
|
+
"version": "3.3.6",
|
|
1818
|
+
"resolved": "https://registry.npmjs.org/puppeteer-extra/-/puppeteer-extra-3.3.6.tgz",
|
|
1819
|
+
"integrity": "sha512-rsLBE/6mMxAjlLd06LuGacrukP2bqbzKCLzV1vrhHFavqQE/taQ2UXv3H5P0Ls7nsrASa+6x3bDbXHpqMwq+7A==",
|
|
1820
|
+
"license": "MIT",
|
|
1821
|
+
"peer": true,
|
|
1822
|
+
"dependencies": {
|
|
1823
|
+
"@types/debug": "^4.1.0",
|
|
1824
|
+
"debug": "^4.1.1",
|
|
1825
|
+
"deepmerge": "^4.2.2"
|
|
1826
|
+
},
|
|
1827
|
+
"engines": {
|
|
1828
|
+
"node": ">=8"
|
|
1829
|
+
},
|
|
1830
|
+
"peerDependencies": {
|
|
1831
|
+
"@types/puppeteer": "*",
|
|
1832
|
+
"puppeteer": "*",
|
|
1833
|
+
"puppeteer-core": "*"
|
|
1834
|
+
},
|
|
1835
|
+
"peerDependenciesMeta": {
|
|
1836
|
+
"@types/puppeteer": {
|
|
1837
|
+
"optional": true
|
|
1838
|
+
},
|
|
1839
|
+
"puppeteer": {
|
|
1840
|
+
"optional": true
|
|
1841
|
+
},
|
|
1842
|
+
"puppeteer-core": {
|
|
1843
|
+
"optional": true
|
|
1844
|
+
}
|
|
1845
|
+
}
|
|
1846
|
+
},
|
|
1847
|
+
"node_modules/puppeteer-extra-plugin": {
|
|
1848
|
+
"version": "3.2.3",
|
|
1849
|
+
"resolved": "https://registry.npmjs.org/puppeteer-extra-plugin/-/puppeteer-extra-plugin-3.2.3.tgz",
|
|
1850
|
+
"integrity": "sha512-6RNy0e6pH8vaS3akPIKGg28xcryKscczt4wIl0ePciZENGE2yoaQJNd17UiEbdmh5/6WW6dPcfRWT9lxBwCi2Q==",
|
|
1851
|
+
"license": "MIT",
|
|
1852
|
+
"dependencies": {
|
|
1853
|
+
"@types/debug": "^4.1.0",
|
|
1854
|
+
"debug": "^4.1.1",
|
|
1855
|
+
"merge-deep": "^3.0.1"
|
|
1856
|
+
},
|
|
1857
|
+
"engines": {
|
|
1858
|
+
"node": ">=9.11.2"
|
|
1859
|
+
},
|
|
1860
|
+
"peerDependencies": {
|
|
1861
|
+
"playwright-extra": "*",
|
|
1862
|
+
"puppeteer-extra": "*"
|
|
1863
|
+
},
|
|
1864
|
+
"peerDependenciesMeta": {
|
|
1865
|
+
"playwright-extra": {
|
|
1866
|
+
"optional": true
|
|
1867
|
+
},
|
|
1868
|
+
"puppeteer-extra": {
|
|
1869
|
+
"optional": true
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1872
|
+
},
|
|
1873
|
+
"node_modules/puppeteer-extra-plugin-stealth": {
|
|
1874
|
+
"version": "2.11.2",
|
|
1875
|
+
"resolved": "https://registry.npmjs.org/puppeteer-extra-plugin-stealth/-/puppeteer-extra-plugin-stealth-2.11.2.tgz",
|
|
1876
|
+
"integrity": "sha512-bUemM5XmTj9i2ZerBzsk2AN5is0wHMNE6K0hXBzBXOzP5m5G3Wl0RHhiqKeHToe/uIH8AoZiGhc1tCkLZQPKTQ==",
|
|
1877
|
+
"license": "MIT",
|
|
1878
|
+
"dependencies": {
|
|
1879
|
+
"debug": "^4.1.1",
|
|
1880
|
+
"puppeteer-extra-plugin": "^3.2.3",
|
|
1881
|
+
"puppeteer-extra-plugin-user-preferences": "^2.4.1"
|
|
1882
|
+
},
|
|
1883
|
+
"engines": {
|
|
1884
|
+
"node": ">=8"
|
|
1885
|
+
},
|
|
1886
|
+
"peerDependencies": {
|
|
1887
|
+
"playwright-extra": "*",
|
|
1888
|
+
"puppeteer-extra": "*"
|
|
1889
|
+
},
|
|
1890
|
+
"peerDependenciesMeta": {
|
|
1891
|
+
"playwright-extra": {
|
|
1892
|
+
"optional": true
|
|
1893
|
+
},
|
|
1894
|
+
"puppeteer-extra": {
|
|
1895
|
+
"optional": true
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1898
|
+
},
|
|
1899
|
+
"node_modules/puppeteer-extra-plugin-user-data-dir": {
|
|
1900
|
+
"version": "2.4.1",
|
|
1901
|
+
"resolved": "https://registry.npmjs.org/puppeteer-extra-plugin-user-data-dir/-/puppeteer-extra-plugin-user-data-dir-2.4.1.tgz",
|
|
1902
|
+
"integrity": "sha512-kH1GnCcqEDoBXO7epAse4TBPJh9tEpVEK/vkedKfjOVOhZAvLkHGc9swMs5ChrJbRnf8Hdpug6TJlEuimXNQ+g==",
|
|
1903
|
+
"license": "MIT",
|
|
1904
|
+
"dependencies": {
|
|
1905
|
+
"debug": "^4.1.1",
|
|
1906
|
+
"fs-extra": "^10.0.0",
|
|
1907
|
+
"puppeteer-extra-plugin": "^3.2.3",
|
|
1908
|
+
"rimraf": "^3.0.2"
|
|
1909
|
+
},
|
|
1910
|
+
"engines": {
|
|
1911
|
+
"node": ">=8"
|
|
1912
|
+
},
|
|
1913
|
+
"peerDependencies": {
|
|
1914
|
+
"playwright-extra": "*",
|
|
1915
|
+
"puppeteer-extra": "*"
|
|
1916
|
+
},
|
|
1917
|
+
"peerDependenciesMeta": {
|
|
1918
|
+
"playwright-extra": {
|
|
1919
|
+
"optional": true
|
|
1920
|
+
},
|
|
1921
|
+
"puppeteer-extra": {
|
|
1922
|
+
"optional": true
|
|
1923
|
+
}
|
|
1924
|
+
}
|
|
1925
|
+
},
|
|
1926
|
+
"node_modules/puppeteer-extra-plugin-user-preferences": {
|
|
1927
|
+
"version": "2.4.1",
|
|
1928
|
+
"resolved": "https://registry.npmjs.org/puppeteer-extra-plugin-user-preferences/-/puppeteer-extra-plugin-user-preferences-2.4.1.tgz",
|
|
1929
|
+
"integrity": "sha512-i1oAZxRbc1bk8MZufKCruCEC3CCafO9RKMkkodZltI4OqibLFXF3tj6HZ4LZ9C5vCXZjYcDWazgtY69mnmrQ9A==",
|
|
1930
|
+
"license": "MIT",
|
|
1931
|
+
"dependencies": {
|
|
1932
|
+
"debug": "^4.1.1",
|
|
1933
|
+
"deepmerge": "^4.2.2",
|
|
1934
|
+
"puppeteer-extra-plugin": "^3.2.3",
|
|
1935
|
+
"puppeteer-extra-plugin-user-data-dir": "^2.4.1"
|
|
1936
|
+
},
|
|
1937
|
+
"engines": {
|
|
1938
|
+
"node": ">=8"
|
|
1939
|
+
},
|
|
1940
|
+
"peerDependencies": {
|
|
1941
|
+
"playwright-extra": "*",
|
|
1942
|
+
"puppeteer-extra": "*"
|
|
1943
|
+
},
|
|
1944
|
+
"peerDependenciesMeta": {
|
|
1945
|
+
"playwright-extra": {
|
|
1946
|
+
"optional": true
|
|
1947
|
+
},
|
|
1948
|
+
"puppeteer-extra": {
|
|
1949
|
+
"optional": true
|
|
1950
|
+
}
|
|
1951
|
+
}
|
|
1952
|
+
},
|
|
1953
|
+
"node_modules/puppeteer/node_modules/@puppeteer/browsers": {
|
|
1954
|
+
"version": "2.10.13",
|
|
1955
|
+
"resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.10.13.tgz",
|
|
1956
|
+
"integrity": "sha512-a9Ruw3j3qlnB5a/zHRTkruppynxqaeE4H9WNj5eYGRWqw0ZauZ23f4W2ARf3hghF5doozyD+CRtt7XSYuYRI/Q==",
|
|
1957
|
+
"license": "Apache-2.0",
|
|
1958
|
+
"dependencies": {
|
|
1959
|
+
"debug": "^4.4.3",
|
|
1960
|
+
"extract-zip": "^2.0.1",
|
|
1961
|
+
"progress": "^2.0.3",
|
|
1962
|
+
"proxy-agent": "^6.5.0",
|
|
1963
|
+
"semver": "^7.7.3",
|
|
1964
|
+
"tar-fs": "^3.1.1",
|
|
1965
|
+
"yargs": "^17.7.2"
|
|
1966
|
+
},
|
|
1967
|
+
"bin": {
|
|
1968
|
+
"browsers": "lib/cjs/main-cli.js"
|
|
1969
|
+
},
|
|
1970
|
+
"engines": {
|
|
1971
|
+
"node": ">=18"
|
|
1972
|
+
}
|
|
1973
|
+
},
|
|
1974
|
+
"node_modules/puppeteer/node_modules/chromium-bidi": {
|
|
1975
|
+
"version": "11.0.0",
|
|
1976
|
+
"resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-11.0.0.tgz",
|
|
1977
|
+
"integrity": "sha512-cM3DI+OOb89T3wO8cpPSro80Q9eKYJ7hGVXoGS3GkDPxnYSqiv+6xwpIf6XERyJ9Tdsl09hmNmY94BkgZdVekw==",
|
|
1978
|
+
"license": "Apache-2.0",
|
|
1979
|
+
"dependencies": {
|
|
1980
|
+
"mitt": "^3.0.1",
|
|
1981
|
+
"zod": "^3.24.1"
|
|
1982
|
+
},
|
|
1983
|
+
"peerDependencies": {
|
|
1984
|
+
"devtools-protocol": "*"
|
|
1985
|
+
}
|
|
1986
|
+
},
|
|
1987
|
+
"node_modules/puppeteer/node_modules/devtools-protocol": {
|
|
1988
|
+
"version": "0.0.1521046",
|
|
1989
|
+
"resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1521046.tgz",
|
|
1990
|
+
"integrity": "sha512-vhE6eymDQSKWUXwwA37NtTTVEzjtGVfDr3pRbsWEQ5onH/Snp2c+2xZHWJJawG/0hCCJLRGt4xVtEVUVILol4w==",
|
|
1991
|
+
"license": "BSD-3-Clause",
|
|
1992
|
+
"peer": true
|
|
1993
|
+
},
|
|
1994
|
+
"node_modules/puppeteer/node_modules/puppeteer-core": {
|
|
1995
|
+
"version": "24.31.0",
|
|
1996
|
+
"resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-24.31.0.tgz",
|
|
1997
|
+
"integrity": "sha512-pnAohhSZipWQoFpXuGV7xCZfaGhqcBR9C4pVrU0QSrcMi7tQMH9J9lDBqBvyMAHQqe8HCARuREqFuVKRQOgTvg==",
|
|
1998
|
+
"license": "Apache-2.0",
|
|
1999
|
+
"dependencies": {
|
|
2000
|
+
"@puppeteer/browsers": "2.10.13",
|
|
2001
|
+
"chromium-bidi": "11.0.0",
|
|
2002
|
+
"debug": "^4.4.3",
|
|
2003
|
+
"devtools-protocol": "0.0.1521046",
|
|
2004
|
+
"typed-query-selector": "^2.12.0",
|
|
2005
|
+
"webdriver-bidi-protocol": "0.3.9",
|
|
2006
|
+
"ws": "^8.18.3"
|
|
2007
|
+
},
|
|
2008
|
+
"engines": {
|
|
2009
|
+
"node": ">=18"
|
|
2010
|
+
}
|
|
2011
|
+
},
|
|
2012
|
+
"node_modules/puppeteer/node_modules/zod": {
|
|
2013
|
+
"version": "3.25.76",
|
|
2014
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
2015
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
2016
|
+
"license": "MIT",
|
|
2017
|
+
"funding": {
|
|
2018
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
2019
|
+
}
|
|
2020
|
+
},
|
|
2021
|
+
"node_modules/require-directory": {
|
|
2022
|
+
"version": "2.1.1",
|
|
2023
|
+
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
|
|
2024
|
+
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
|
|
2025
|
+
"license": "MIT",
|
|
2026
|
+
"engines": {
|
|
2027
|
+
"node": ">=0.10.0"
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
"node_modules/require-from-string": {
|
|
2031
|
+
"version": "2.0.2",
|
|
2032
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
2033
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
2034
|
+
"license": "MIT",
|
|
2035
|
+
"engines": {
|
|
2036
|
+
"node": ">=0.10.0"
|
|
2037
|
+
}
|
|
2038
|
+
},
|
|
2039
|
+
"node_modules/resolve-from": {
|
|
2040
|
+
"version": "4.0.0",
|
|
2041
|
+
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
|
|
2042
|
+
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
|
|
2043
|
+
"license": "MIT",
|
|
2044
|
+
"engines": {
|
|
2045
|
+
"node": ">=4"
|
|
2046
|
+
}
|
|
2047
|
+
},
|
|
2048
|
+
"node_modules/rimraf": {
|
|
2049
|
+
"version": "3.0.2",
|
|
2050
|
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
|
|
2051
|
+
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
|
|
2052
|
+
"deprecated": "Rimraf versions prior to v4 are no longer supported",
|
|
2053
|
+
"license": "ISC",
|
|
2054
|
+
"dependencies": {
|
|
2055
|
+
"glob": "^7.1.3"
|
|
2056
|
+
},
|
|
2057
|
+
"bin": {
|
|
2058
|
+
"rimraf": "bin.js"
|
|
2059
|
+
},
|
|
2060
|
+
"funding": {
|
|
2061
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2062
|
+
}
|
|
2063
|
+
},
|
|
2064
|
+
"node_modules/rrweb-cssom": {
|
|
2065
|
+
"version": "0.8.0",
|
|
2066
|
+
"resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz",
|
|
2067
|
+
"integrity": "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==",
|
|
2068
|
+
"license": "MIT"
|
|
2069
|
+
},
|
|
2070
|
+
"node_modules/safer-buffer": {
|
|
2071
|
+
"version": "2.1.2",
|
|
2072
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
2073
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
2074
|
+
"license": "MIT"
|
|
2075
|
+
},
|
|
2076
|
+
"node_modules/saxes": {
|
|
2077
|
+
"version": "6.0.0",
|
|
2078
|
+
"resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
|
|
2079
|
+
"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
|
|
2080
|
+
"license": "ISC",
|
|
2081
|
+
"dependencies": {
|
|
2082
|
+
"xmlchars": "^2.2.0"
|
|
2083
|
+
},
|
|
2084
|
+
"engines": {
|
|
2085
|
+
"node": ">=v12.22.7"
|
|
2086
|
+
}
|
|
2087
|
+
},
|
|
2088
|
+
"node_modules/semver": {
|
|
2089
|
+
"version": "7.7.3",
|
|
2090
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
|
|
2091
|
+
"integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
|
|
2092
|
+
"license": "ISC",
|
|
2093
|
+
"bin": {
|
|
2094
|
+
"semver": "bin/semver.js"
|
|
2095
|
+
},
|
|
2096
|
+
"engines": {
|
|
2097
|
+
"node": ">=10"
|
|
2098
|
+
}
|
|
2099
|
+
},
|
|
2100
|
+
"node_modules/shallow-clone": {
|
|
2101
|
+
"version": "0.1.2",
|
|
2102
|
+
"resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz",
|
|
2103
|
+
"integrity": "sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==",
|
|
2104
|
+
"license": "MIT",
|
|
2105
|
+
"dependencies": {
|
|
2106
|
+
"is-extendable": "^0.1.1",
|
|
2107
|
+
"kind-of": "^2.0.1",
|
|
2108
|
+
"lazy-cache": "^0.2.3",
|
|
2109
|
+
"mixin-object": "^2.0.1"
|
|
2110
|
+
},
|
|
2111
|
+
"engines": {
|
|
2112
|
+
"node": ">=0.10.0"
|
|
2113
|
+
}
|
|
2114
|
+
},
|
|
2115
|
+
"node_modules/shallow-clone/node_modules/kind-of": {
|
|
2116
|
+
"version": "2.0.1",
|
|
2117
|
+
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz",
|
|
2118
|
+
"integrity": "sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==",
|
|
2119
|
+
"license": "MIT",
|
|
2120
|
+
"dependencies": {
|
|
2121
|
+
"is-buffer": "^1.0.2"
|
|
2122
|
+
},
|
|
2123
|
+
"engines": {
|
|
2124
|
+
"node": ">=0.10.0"
|
|
2125
|
+
}
|
|
2126
|
+
},
|
|
2127
|
+
"node_modules/shallow-clone/node_modules/lazy-cache": {
|
|
2128
|
+
"version": "0.2.7",
|
|
2129
|
+
"resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz",
|
|
2130
|
+
"integrity": "sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==",
|
|
2131
|
+
"license": "MIT",
|
|
2132
|
+
"engines": {
|
|
2133
|
+
"node": ">=0.10.0"
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
"node_modules/smart-buffer": {
|
|
2137
|
+
"version": "4.2.0",
|
|
2138
|
+
"resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
|
|
2139
|
+
"integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
|
|
2140
|
+
"license": "MIT",
|
|
2141
|
+
"engines": {
|
|
2142
|
+
"node": ">= 6.0.0",
|
|
2143
|
+
"npm": ">= 3.0.0"
|
|
2144
|
+
}
|
|
2145
|
+
},
|
|
2146
|
+
"node_modules/socks": {
|
|
2147
|
+
"version": "2.8.7",
|
|
2148
|
+
"resolved": "https://registry.npmjs.org/socks/-/socks-2.8.7.tgz",
|
|
2149
|
+
"integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==",
|
|
2150
|
+
"license": "MIT",
|
|
2151
|
+
"dependencies": {
|
|
2152
|
+
"ip-address": "^10.0.1",
|
|
2153
|
+
"smart-buffer": "^4.2.0"
|
|
2154
|
+
},
|
|
2155
|
+
"engines": {
|
|
2156
|
+
"node": ">= 10.0.0",
|
|
2157
|
+
"npm": ">= 3.0.0"
|
|
2158
|
+
}
|
|
2159
|
+
},
|
|
2160
|
+
"node_modules/socks-proxy-agent": {
|
|
2161
|
+
"version": "8.0.5",
|
|
2162
|
+
"resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz",
|
|
2163
|
+
"integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
|
|
2164
|
+
"license": "MIT",
|
|
2165
|
+
"dependencies": {
|
|
2166
|
+
"agent-base": "^7.1.2",
|
|
2167
|
+
"debug": "^4.3.4",
|
|
2168
|
+
"socks": "^2.8.3"
|
|
2169
|
+
},
|
|
2170
|
+
"engines": {
|
|
2171
|
+
"node": ">= 14"
|
|
2172
|
+
}
|
|
2173
|
+
},
|
|
2174
|
+
"node_modules/source-map": {
|
|
2175
|
+
"version": "0.6.1",
|
|
2176
|
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
|
2177
|
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
2178
|
+
"license": "BSD-3-Clause",
|
|
2179
|
+
"optional": true,
|
|
2180
|
+
"engines": {
|
|
2181
|
+
"node": ">=0.10.0"
|
|
2182
|
+
}
|
|
2183
|
+
},
|
|
2184
|
+
"node_modules/source-map-js": {
|
|
2185
|
+
"version": "1.2.1",
|
|
2186
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
2187
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
2188
|
+
"license": "BSD-3-Clause",
|
|
2189
|
+
"engines": {
|
|
2190
|
+
"node": ">=0.10.0"
|
|
2191
|
+
}
|
|
2192
|
+
},
|
|
2193
|
+
"node_modules/streamx": {
|
|
2194
|
+
"version": "2.23.0",
|
|
2195
|
+
"resolved": "https://registry.npmjs.org/streamx/-/streamx-2.23.0.tgz",
|
|
2196
|
+
"integrity": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==",
|
|
2197
|
+
"license": "MIT",
|
|
2198
|
+
"dependencies": {
|
|
2199
|
+
"events-universal": "^1.0.0",
|
|
2200
|
+
"fast-fifo": "^1.3.2",
|
|
2201
|
+
"text-decoder": "^1.1.0"
|
|
2202
|
+
}
|
|
2203
|
+
},
|
|
2204
|
+
"node_modules/string-width": {
|
|
2205
|
+
"version": "4.2.3",
|
|
2206
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
2207
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
2208
|
+
"license": "MIT",
|
|
2209
|
+
"dependencies": {
|
|
2210
|
+
"emoji-regex": "^8.0.0",
|
|
2211
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
2212
|
+
"strip-ansi": "^6.0.1"
|
|
2213
|
+
},
|
|
2214
|
+
"engines": {
|
|
2215
|
+
"node": ">=8"
|
|
2216
|
+
}
|
|
2217
|
+
},
|
|
2218
|
+
"node_modules/strip-ansi": {
|
|
2219
|
+
"version": "6.0.1",
|
|
2220
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
2221
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
2222
|
+
"license": "MIT",
|
|
2223
|
+
"dependencies": {
|
|
2224
|
+
"ansi-regex": "^5.0.1"
|
|
2225
|
+
},
|
|
2226
|
+
"engines": {
|
|
2227
|
+
"node": ">=8"
|
|
2228
|
+
}
|
|
2229
|
+
},
|
|
2230
|
+
"node_modules/symbol-tree": {
|
|
2231
|
+
"version": "3.2.4",
|
|
2232
|
+
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
|
|
2233
|
+
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
|
|
2234
|
+
"license": "MIT"
|
|
2235
|
+
},
|
|
2236
|
+
"node_modules/tar-fs": {
|
|
2237
|
+
"version": "3.1.1",
|
|
2238
|
+
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.1.tgz",
|
|
2239
|
+
"integrity": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==",
|
|
2240
|
+
"license": "MIT",
|
|
2241
|
+
"dependencies": {
|
|
2242
|
+
"pump": "^3.0.0",
|
|
2243
|
+
"tar-stream": "^3.1.5"
|
|
2244
|
+
},
|
|
2245
|
+
"optionalDependencies": {
|
|
2246
|
+
"bare-fs": "^4.0.1",
|
|
2247
|
+
"bare-path": "^3.0.0"
|
|
2248
|
+
}
|
|
2249
|
+
},
|
|
2250
|
+
"node_modules/tar-stream": {
|
|
2251
|
+
"version": "3.1.7",
|
|
2252
|
+
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz",
|
|
2253
|
+
"integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
|
|
2254
|
+
"license": "MIT",
|
|
2255
|
+
"dependencies": {
|
|
2256
|
+
"b4a": "^1.6.4",
|
|
2257
|
+
"fast-fifo": "^1.2.0",
|
|
2258
|
+
"streamx": "^2.15.0"
|
|
2259
|
+
}
|
|
2260
|
+
},
|
|
2261
|
+
"node_modules/text-decoder": {
|
|
2262
|
+
"version": "1.2.3",
|
|
2263
|
+
"resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.3.tgz",
|
|
2264
|
+
"integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
|
|
2265
|
+
"license": "Apache-2.0",
|
|
2266
|
+
"dependencies": {
|
|
2267
|
+
"b4a": "^1.6.4"
|
|
2268
|
+
}
|
|
2269
|
+
},
|
|
2270
|
+
"node_modules/through": {
|
|
2271
|
+
"version": "2.3.8",
|
|
2272
|
+
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
|
|
2273
|
+
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
|
|
2274
|
+
"license": "MIT"
|
|
2275
|
+
},
|
|
2276
|
+
"node_modules/tldts": {
|
|
2277
|
+
"version": "7.0.18",
|
|
2278
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.18.tgz",
|
|
2279
|
+
"integrity": "sha512-lCcgTAgMxQ1JKOWrVGo6E69Ukbnx4Gc1wiYLRf6J5NN4HRYJtCby1rPF8rkQ4a6qqoFBK5dvjJ1zJ0F7VfDSvw==",
|
|
2280
|
+
"license": "MIT",
|
|
2281
|
+
"dependencies": {
|
|
2282
|
+
"tldts-core": "^7.0.18"
|
|
2283
|
+
},
|
|
2284
|
+
"bin": {
|
|
2285
|
+
"tldts": "bin/cli.js"
|
|
2286
|
+
}
|
|
2287
|
+
},
|
|
2288
|
+
"node_modules/tldts-core": {
|
|
2289
|
+
"version": "7.0.18",
|
|
2290
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.18.tgz",
|
|
2291
|
+
"integrity": "sha512-jqJC13oP4FFAahv4JT/0WTDrCF9Okv7lpKtOZUGPLiAnNbACcSg8Y8T+Z9xthOmRBqi/Sob4yi0TE0miRCvF7Q==",
|
|
2292
|
+
"license": "MIT"
|
|
2293
|
+
},
|
|
2294
|
+
"node_modules/tough-cookie": {
|
|
2295
|
+
"version": "6.0.0",
|
|
2296
|
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.0.tgz",
|
|
2297
|
+
"integrity": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==",
|
|
2298
|
+
"license": "BSD-3-Clause",
|
|
2299
|
+
"dependencies": {
|
|
2300
|
+
"tldts": "^7.0.5"
|
|
2301
|
+
},
|
|
2302
|
+
"engines": {
|
|
2303
|
+
"node": ">=16"
|
|
2304
|
+
}
|
|
2305
|
+
},
|
|
2306
|
+
"node_modules/tr46": {
|
|
2307
|
+
"version": "6.0.0",
|
|
2308
|
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-6.0.0.tgz",
|
|
2309
|
+
"integrity": "sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==",
|
|
2310
|
+
"license": "MIT",
|
|
2311
|
+
"dependencies": {
|
|
2312
|
+
"punycode": "^2.3.1"
|
|
2313
|
+
},
|
|
2314
|
+
"engines": {
|
|
2315
|
+
"node": ">=20"
|
|
2316
|
+
}
|
|
2317
|
+
},
|
|
2318
|
+
"node_modules/tslib": {
|
|
2319
|
+
"version": "2.8.1",
|
|
2320
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2321
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2322
|
+
"license": "0BSD"
|
|
2323
|
+
},
|
|
2324
|
+
"node_modules/turndown": {
|
|
2325
|
+
"version": "7.2.2",
|
|
2326
|
+
"resolved": "https://registry.npmjs.org/turndown/-/turndown-7.2.2.tgz",
|
|
2327
|
+
"integrity": "sha512-1F7db8BiExOKxjSMU2b7if62D/XOyQyZbPKq/nUwopfgnHlqXHqQ0lvfUTeUIr1lZJzOPFn43dODyMSIfvWRKQ==",
|
|
2328
|
+
"license": "MIT",
|
|
2329
|
+
"dependencies": {
|
|
2330
|
+
"@mixmark-io/domino": "^2.2.0"
|
|
2331
|
+
}
|
|
2332
|
+
},
|
|
2333
|
+
"node_modules/turndown-plugin-gfm": {
|
|
2334
|
+
"version": "1.0.2",
|
|
2335
|
+
"resolved": "https://registry.npmjs.org/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.2.tgz",
|
|
2336
|
+
"integrity": "sha512-vwz9tfvF7XN/jE0dGoBei3FXWuvll78ohzCZQuOb+ZjWrs3a0XhQVomJEb2Qh4VHTPNRO4GPZh0V7VRbiWwkRg==",
|
|
2337
|
+
"license": "MIT"
|
|
2338
|
+
},
|
|
2339
|
+
"node_modules/typed-query-selector": {
|
|
2340
|
+
"version": "2.12.0",
|
|
2341
|
+
"resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.0.tgz",
|
|
2342
|
+
"integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==",
|
|
2343
|
+
"license": "MIT"
|
|
2344
|
+
},
|
|
2345
|
+
"node_modules/unbzip2-stream": {
|
|
2346
|
+
"version": "1.4.3",
|
|
2347
|
+
"resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
|
|
2348
|
+
"integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
|
|
2349
|
+
"license": "MIT",
|
|
2350
|
+
"dependencies": {
|
|
2351
|
+
"buffer": "^5.2.1",
|
|
2352
|
+
"through": "^2.3.8"
|
|
2353
|
+
}
|
|
2354
|
+
},
|
|
2355
|
+
"node_modules/undici": {
|
|
2356
|
+
"version": "7.16.0",
|
|
2357
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-7.16.0.tgz",
|
|
2358
|
+
"integrity": "sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==",
|
|
2359
|
+
"license": "MIT",
|
|
2360
|
+
"engines": {
|
|
2361
|
+
"node": ">=20.18.1"
|
|
2362
|
+
}
|
|
2363
|
+
},
|
|
2364
|
+
"node_modules/undici-types": {
|
|
2365
|
+
"version": "7.16.0",
|
|
2366
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
|
|
2367
|
+
"integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
|
|
2368
|
+
"license": "MIT",
|
|
2369
|
+
"optional": true
|
|
2370
|
+
},
|
|
2371
|
+
"node_modules/universalify": {
|
|
2372
|
+
"version": "2.0.1",
|
|
2373
|
+
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
|
|
2374
|
+
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
|
2375
|
+
"license": "MIT",
|
|
2376
|
+
"engines": {
|
|
2377
|
+
"node": ">= 10.0.0"
|
|
2378
|
+
}
|
|
2379
|
+
},
|
|
2380
|
+
"node_modules/w3c-xmlserializer": {
|
|
2381
|
+
"version": "5.0.0",
|
|
2382
|
+
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
|
|
2383
|
+
"integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
|
|
2384
|
+
"license": "MIT",
|
|
2385
|
+
"dependencies": {
|
|
2386
|
+
"xml-name-validator": "^5.0.0"
|
|
2387
|
+
},
|
|
2388
|
+
"engines": {
|
|
2389
|
+
"node": ">=18"
|
|
2390
|
+
}
|
|
2391
|
+
},
|
|
2392
|
+
"node_modules/webdriver-bidi-protocol": {
|
|
2393
|
+
"version": "0.3.9",
|
|
2394
|
+
"resolved": "https://registry.npmjs.org/webdriver-bidi-protocol/-/webdriver-bidi-protocol-0.3.9.tgz",
|
|
2395
|
+
"integrity": "sha512-uIYvlRQ0PwtZR1EzHlTMol1G0lAlmOe6wPykF9a77AK3bkpvZHzIVxRE2ThOx5vjy2zISe0zhwf5rzuUfbo1PQ==",
|
|
2396
|
+
"license": "Apache-2.0"
|
|
2397
|
+
},
|
|
2398
|
+
"node_modules/webidl-conversions": {
|
|
2399
|
+
"version": "8.0.0",
|
|
2400
|
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-8.0.0.tgz",
|
|
2401
|
+
"integrity": "sha512-n4W4YFyz5JzOfQeA8oN7dUYpR+MBP3PIUsn2jLjWXwK5ASUzt0Jc/A5sAUZoCYFJRGF0FBKJ+1JjN43rNdsQzA==",
|
|
2402
|
+
"license": "BSD-2-Clause",
|
|
2403
|
+
"engines": {
|
|
2404
|
+
"node": ">=20"
|
|
2405
|
+
}
|
|
2406
|
+
},
|
|
2407
|
+
"node_modules/whatwg-encoding": {
|
|
2408
|
+
"version": "3.1.1",
|
|
2409
|
+
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
|
|
2410
|
+
"integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
|
|
2411
|
+
"license": "MIT",
|
|
2412
|
+
"dependencies": {
|
|
2413
|
+
"iconv-lite": "0.6.3"
|
|
2414
|
+
},
|
|
2415
|
+
"engines": {
|
|
2416
|
+
"node": ">=18"
|
|
2417
|
+
}
|
|
2418
|
+
},
|
|
2419
|
+
"node_modules/whatwg-mimetype": {
|
|
2420
|
+
"version": "4.0.0",
|
|
2421
|
+
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
|
|
2422
|
+
"integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
|
|
2423
|
+
"license": "MIT",
|
|
2424
|
+
"engines": {
|
|
2425
|
+
"node": ">=18"
|
|
2426
|
+
}
|
|
2427
|
+
},
|
|
2428
|
+
"node_modules/whatwg-url": {
|
|
2429
|
+
"version": "15.1.0",
|
|
2430
|
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-15.1.0.tgz",
|
|
2431
|
+
"integrity": "sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==",
|
|
2432
|
+
"license": "MIT",
|
|
2433
|
+
"dependencies": {
|
|
2434
|
+
"tr46": "^6.0.0",
|
|
2435
|
+
"webidl-conversions": "^8.0.0"
|
|
2436
|
+
},
|
|
2437
|
+
"engines": {
|
|
2438
|
+
"node": ">=20"
|
|
2439
|
+
}
|
|
2440
|
+
},
|
|
2441
|
+
"node_modules/wrap-ansi": {
|
|
2442
|
+
"version": "7.0.0",
|
|
2443
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
2444
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
2445
|
+
"license": "MIT",
|
|
2446
|
+
"dependencies": {
|
|
2447
|
+
"ansi-styles": "^4.0.0",
|
|
2448
|
+
"string-width": "^4.1.0",
|
|
2449
|
+
"strip-ansi": "^6.0.0"
|
|
2450
|
+
},
|
|
2451
|
+
"engines": {
|
|
2452
|
+
"node": ">=10"
|
|
2453
|
+
},
|
|
2454
|
+
"funding": {
|
|
2455
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
2456
|
+
}
|
|
2457
|
+
},
|
|
2458
|
+
"node_modules/wrappy": {
|
|
2459
|
+
"version": "1.0.2",
|
|
2460
|
+
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
2461
|
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
2462
|
+
"license": "ISC"
|
|
2463
|
+
},
|
|
2464
|
+
"node_modules/ws": {
|
|
2465
|
+
"version": "8.18.3",
|
|
2466
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
|
2467
|
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
|
2468
|
+
"license": "MIT",
|
|
2469
|
+
"engines": {
|
|
2470
|
+
"node": ">=10.0.0"
|
|
2471
|
+
},
|
|
2472
|
+
"peerDependencies": {
|
|
2473
|
+
"bufferutil": "^4.0.1",
|
|
2474
|
+
"utf-8-validate": ">=5.0.2"
|
|
2475
|
+
},
|
|
2476
|
+
"peerDependenciesMeta": {
|
|
2477
|
+
"bufferutil": {
|
|
2478
|
+
"optional": true
|
|
2479
|
+
},
|
|
2480
|
+
"utf-8-validate": {
|
|
2481
|
+
"optional": true
|
|
2482
|
+
}
|
|
2483
|
+
}
|
|
2484
|
+
},
|
|
2485
|
+
"node_modules/xml-name-validator": {
|
|
2486
|
+
"version": "5.0.0",
|
|
2487
|
+
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
|
|
2488
|
+
"integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==",
|
|
2489
|
+
"license": "Apache-2.0",
|
|
2490
|
+
"engines": {
|
|
2491
|
+
"node": ">=18"
|
|
2492
|
+
}
|
|
2493
|
+
},
|
|
2494
|
+
"node_modules/xmlchars": {
|
|
2495
|
+
"version": "2.2.0",
|
|
2496
|
+
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
|
|
2497
|
+
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
|
|
2498
|
+
"license": "MIT"
|
|
2499
|
+
},
|
|
2500
|
+
"node_modules/y18n": {
|
|
2501
|
+
"version": "5.0.8",
|
|
2502
|
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
|
2503
|
+
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
|
|
2504
|
+
"license": "ISC",
|
|
2505
|
+
"engines": {
|
|
2506
|
+
"node": ">=10"
|
|
2507
|
+
}
|
|
2508
|
+
},
|
|
2509
|
+
"node_modules/yargs": {
|
|
2510
|
+
"version": "17.7.2",
|
|
2511
|
+
"resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
|
|
2512
|
+
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
|
|
2513
|
+
"license": "MIT",
|
|
2514
|
+
"dependencies": {
|
|
2515
|
+
"cliui": "^8.0.1",
|
|
2516
|
+
"escalade": "^3.1.1",
|
|
2517
|
+
"get-caller-file": "^2.0.5",
|
|
2518
|
+
"require-directory": "^2.1.1",
|
|
2519
|
+
"string-width": "^4.2.3",
|
|
2520
|
+
"y18n": "^5.0.5",
|
|
2521
|
+
"yargs-parser": "^21.1.1"
|
|
2522
|
+
},
|
|
2523
|
+
"engines": {
|
|
2524
|
+
"node": ">=12"
|
|
2525
|
+
}
|
|
2526
|
+
},
|
|
2527
|
+
"node_modules/yargs-parser": {
|
|
2528
|
+
"version": "21.1.1",
|
|
2529
|
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
|
|
2530
|
+
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
|
|
2531
|
+
"license": "ISC",
|
|
2532
|
+
"engines": {
|
|
2533
|
+
"node": ">=12"
|
|
2534
|
+
}
|
|
2535
|
+
},
|
|
2536
|
+
"node_modules/yauzl": {
|
|
2537
|
+
"version": "2.10.0",
|
|
2538
|
+
"resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
|
|
2539
|
+
"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
|
|
2540
|
+
"license": "MIT",
|
|
2541
|
+
"dependencies": {
|
|
2542
|
+
"buffer-crc32": "~0.2.3",
|
|
2543
|
+
"fd-slicer": "~1.1.0"
|
|
2544
|
+
}
|
|
2545
|
+
},
|
|
2546
|
+
"node_modules/zod": {
|
|
2547
|
+
"version": "3.23.8",
|
|
2548
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
|
|
2549
|
+
"integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
|
|
2550
|
+
"license": "MIT",
|
|
2551
|
+
"funding": {
|
|
2552
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
2553
|
+
}
|
|
2554
|
+
}
|
|
2555
|
+
}
|
|
2556
|
+
}
|