@rubytech/create-maxy 1.0.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/dist/index.js +428 -0
- package/package.json +31 -0
- package/payload/maxy/.env.example +12 -0
- package/payload/maxy/app/admin/components/ActivityTimeline.tsx +348 -0
- package/payload/maxy/app/admin/components/MarkdownMessage.tsx +40 -0
- package/payload/maxy/app/api/admin/chat/route.ts +72 -0
- package/payload/maxy/app/api/admin/logs/route.ts +40 -0
- package/payload/maxy/app/api/admin/session/route.ts +74 -0
- package/payload/maxy/app/api/chat/route.ts +72 -0
- package/payload/maxy/app/api/health/route.ts +26 -0
- package/payload/maxy/app/api/onboarding/claude-auth/route.ts +216 -0
- package/payload/maxy/app/api/onboarding/set-pin/route.ts +44 -0
- package/payload/maxy/app/api/session/route.ts +51 -0
- package/payload/maxy/app/api/telegram/webhook/route.ts +107 -0
- package/payload/maxy/app/apple-icon.png +0 -0
- package/payload/maxy/app/bot/page.tsx +373 -0
- package/payload/maxy/app/favicon.ico +0 -0
- package/payload/maxy/app/globals.css +1681 -0
- package/payload/maxy/app/layout.tsx +58 -0
- package/payload/maxy/app/lib/claude-agent.ts +503 -0
- package/payload/maxy/app/og/layout.tsx +15 -0
- package/payload/maxy/app/og/page.tsx +252 -0
- package/payload/maxy/app/page.tsx +594 -0
- package/payload/maxy/app/privacy/page.tsx +72 -0
- package/payload/maxy/app/public/page.tsx +266 -0
- package/payload/maxy/next.config.mjs +26 -0
- package/payload/maxy/package-lock.json +2198 -0
- package/payload/maxy/package.json +25 -0
- package/payload/maxy/proxy.ts +41 -0
- package/payload/maxy/public/brand/claude.png +0 -0
- package/payload/maxy/public/brand/maxy-black.png +0 -0
- package/payload/maxy/public/brand/maxy.png +0 -0
- package/payload/maxy/public/favicon.ico +0 -0
- package/payload/maxy/public/og-landscape.png +0 -0
- package/payload/maxy/public/og-portrait.png +0 -0
- package/payload/maxy/public/og-square.png +0 -0
- package/payload/maxy/public/pi-5.jpg +0 -0
- package/payload/maxy/public/robots.txt +5 -0
- package/payload/maxy/tsconfig.json +41 -0
- package/payload/maxy/tsconfig.tsbuildinfo +1 -0
- package/payload/maxy/ui.md +28 -0
- package/payload/platform/config/cloudflared.yml +17 -0
- package/payload/platform/knowledge/maxy.md +161 -0
- package/payload/platform/neo4j/schema.cypher +108 -0
- package/payload/platform/package-lock.json +1835 -0
- package/payload/platform/package.json +17 -0
- package/payload/platform/plugins/admin/PLUGIN.md +24 -0
- package/payload/platform/plugins/admin/hooks/pre-tool-use.sh +56 -0
- package/payload/platform/plugins/admin/hooks/session-start.sh +20 -0
- package/payload/platform/plugins/admin/mcp/dist/index.d.ts +2 -0
- package/payload/platform/plugins/admin/mcp/dist/index.d.ts.map +1 -0
- package/payload/platform/plugins/admin/mcp/dist/index.js +149 -0
- package/payload/platform/plugins/admin/mcp/dist/index.js.map +1 -0
- package/payload/platform/plugins/admin/mcp/package.json +18 -0
- package/payload/platform/plugins/anthropic/PLUGIN.md +30 -0
- package/payload/platform/plugins/anthropic/references/setup-guide.md +146 -0
- package/payload/platform/plugins/business-assistant/PLUGIN.md +46 -0
- package/payload/platform/plugins/business-assistant/references/crm.md +112 -0
- package/payload/platform/plugins/business-assistant/references/document-management.md +96 -0
- package/payload/platform/plugins/business-assistant/references/escalation.md +126 -0
- package/payload/platform/plugins/business-assistant/references/invoicing.md +163 -0
- package/payload/platform/plugins/business-assistant/references/quoting.md +56 -0
- package/payload/platform/plugins/business-assistant/references/scheduling.md +127 -0
- package/payload/platform/plugins/cloudflare/PLUGIN.md +31 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/index.d.ts +2 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/index.d.ts.map +1 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/index.js +174 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/index.js.map +1 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.d.ts +45 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.d.ts.map +1 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.js +256 -0
- package/payload/platform/plugins/cloudflare/mcp/dist/lib/cloudflared.js.map +1 -0
- package/payload/platform/plugins/cloudflare/mcp/package.json +18 -0
- package/payload/platform/plugins/cloudflare/references/setup-guide.md +110 -0
- package/payload/platform/plugins/contacts/PLUGIN.md +18 -0
- package/payload/platform/plugins/contacts/mcp/dist/index.d.ts +2 -0
- package/payload/platform/plugins/contacts/mcp/dist/index.d.ts.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/index.js +182 -0
- package/payload/platform/plugins/contacts/mcp/dist/index.js.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/lib/neo4j.d.ts +5 -0
- package/payload/platform/plugins/contacts/mcp/dist/lib/neo4j.d.ts.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/lib/neo4j.js +34 -0
- package/payload/platform/plugins/contacts/mcp/dist/lib/neo4j.js.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-create.d.ts +19 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-create.d.ts.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-create.js +68 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-create.js.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-list.d.ts +22 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-list.d.ts.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-list.js +46 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-list.js.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-lookup.d.ts +20 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-lookup.d.ts.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-lookup.js +56 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-lookup.js.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-update.d.ts +13 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-update.d.ts.map +1 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-update.js +54 -0
- package/payload/platform/plugins/contacts/mcp/dist/tools/contact-update.js.map +1 -0
- package/payload/platform/plugins/contacts/mcp/package.json +19 -0
- package/payload/platform/plugins/documents/PLUGIN.md +12 -0
- package/payload/platform/plugins/documents/mcp/dist/index.d.ts +2 -0
- package/payload/platform/plugins/documents/mcp/dist/index.d.ts.map +1 -0
- package/payload/platform/plugins/documents/mcp/dist/index.js +82 -0
- package/payload/platform/plugins/documents/mcp/dist/index.js.map +1 -0
- package/payload/platform/plugins/documents/mcp/package.json +20 -0
- package/payload/platform/plugins/memory/PLUGIN.md +17 -0
- package/payload/platform/plugins/memory/mcp/dist/index.d.ts +2 -0
- package/payload/platform/plugins/memory/mcp/dist/index.d.ts.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/index.js +164 -0
- package/payload/platform/plugins/memory/mcp/dist/index.js.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/embeddings.d.ts +3 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/embeddings.d.ts.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/embeddings.js +29 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/embeddings.js.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/neo4j.d.ts +5 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/neo4j.d.ts.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/neo4j.js +34 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/neo4j.js.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-reindex.d.ts +8 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-reindex.d.ts.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-reindex.js +71 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-reindex.js.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-search.d.ts +24 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-search.d.ts.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-search.js +125 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-search.js.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-write.d.ts +18 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-write.d.ts.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-write.js +56 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/memory-write.js.map +1 -0
- package/payload/platform/plugins/memory/mcp/package.json +19 -0
- package/payload/platform/plugins/sales/PLUGIN.md +65 -0
- package/payload/platform/plugins/sales/references/close-tracking.md +76 -0
- package/payload/platform/plugins/sales/references/closing-framework.md +108 -0
- package/payload/platform/plugins/sales/references/comparisons.md +99 -0
- package/payload/platform/plugins/sales/references/competitive-positioning.md +51 -0
- package/payload/platform/plugins/sales/references/faq.md +62 -0
- package/payload/platform/plugins/sales/references/objection-handling.md +157 -0
- package/payload/platform/plugins/sales/references/pricing.md +71 -0
- package/payload/platform/plugins/sales/references/waitlist.md +23 -0
- package/payload/platform/plugins/scheduling/PLUGIN.md +12 -0
- package/payload/platform/plugins/scheduling/mcp/dist/index.d.ts +2 -0
- package/payload/platform/plugins/scheduling/mcp/dist/index.d.ts.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/dist/index.js +13 -0
- package/payload/platform/plugins/scheduling/mcp/dist/index.js.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/package.json +18 -0
- package/payload/platform/plugins/telegram/PLUGIN.md +31 -0
- package/payload/platform/plugins/telegram/mcp/dist/index.d.ts +2 -0
- package/payload/platform/plugins/telegram/mcp/dist/index.d.ts.map +1 -0
- package/payload/platform/plugins/telegram/mcp/dist/index.js +101 -0
- package/payload/platform/plugins/telegram/mcp/dist/index.js.map +1 -0
- package/payload/platform/plugins/telegram/mcp/dist/lib/telegram.d.ts +27 -0
- package/payload/platform/plugins/telegram/mcp/dist/lib/telegram.d.ts.map +1 -0
- package/payload/platform/plugins/telegram/mcp/dist/lib/telegram.js +41 -0
- package/payload/platform/plugins/telegram/mcp/dist/lib/telegram.js.map +1 -0
- package/payload/platform/plugins/telegram/mcp/dist/tools/message-history.d.ts +16 -0
- package/payload/platform/plugins/telegram/mcp/dist/tools/message-history.d.ts.map +1 -0
- package/payload/platform/plugins/telegram/mcp/dist/tools/message-history.js +62 -0
- package/payload/platform/plugins/telegram/mcp/dist/tools/message-history.js.map +1 -0
- package/payload/platform/plugins/telegram/mcp/dist/tools/message.d.ts +20 -0
- package/payload/platform/plugins/telegram/mcp/dist/tools/message.d.ts.map +1 -0
- package/payload/platform/plugins/telegram/mcp/dist/tools/message.js +34 -0
- package/payload/platform/plugins/telegram/mcp/dist/tools/message.js.map +1 -0
- package/payload/platform/plugins/telegram/mcp/package.json +19 -0
- package/payload/platform/plugins/telegram/references/setup-guide.md +50 -0
- package/payload/platform/plugins/web/PLUGIN.md +12 -0
- package/payload/platform/plugins/web/mcp/dist/index.d.ts +2 -0
- package/payload/platform/plugins/web/mcp/dist/index.d.ts.map +1 -0
- package/payload/platform/plugins/web/mcp/dist/index.js +12 -0
- package/payload/platform/plugins/web/mcp/dist/index.js.map +1 -0
- package/payload/platform/plugins/web/mcp/package.json +18 -0
- package/payload/platform/scripts/seed-neo4j.sh +73 -0
- package/payload/platform/scripts/setup.sh +177 -0
- package/payload/platform/scripts/start.sh +62 -0
- package/payload/platform/templates/account.json +4 -0
- package/payload/platform/templates/agents/admin/IDENTITY.md +28 -0
- package/payload/platform/templates/agents/admin/SOUL.md +1 -0
- package/payload/platform/templates/agents/public/IDENTITY.md +21 -0
- package/payload/platform/templates/agents/public/SOUL.md +1 -0
- package/payload/platform/tsconfig.base.json +18 -0
|
@@ -0,0 +1,2198 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "maxy-site",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "maxy-site",
|
|
9
|
+
"version": "0.1.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@anthropic-ai/sdk": "^0.55.0",
|
|
12
|
+
"lucide-react": "^0.572.0",
|
|
13
|
+
"next": "16.1.6",
|
|
14
|
+
"react": "^19.2.4",
|
|
15
|
+
"react-dom": "^19.2.4",
|
|
16
|
+
"react-markdown": "^10.1.0"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@types/node": "^22.0.0",
|
|
20
|
+
"@types/react": "^19.0.0",
|
|
21
|
+
"@types/react-dom": "^19.0.0",
|
|
22
|
+
"typescript": "^5.7.0"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"node_modules/@anthropic-ai/sdk": {
|
|
26
|
+
"version": "0.55.1",
|
|
27
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.55.1.tgz",
|
|
28
|
+
"integrity": "sha512-gjOMS4chmm8BxClKmCjNHmvf1FrO1Cn++CSX6K3YCZjz5JG4I9ZttQ/xEH4FBsz6HQyZvnUpiKlOAkmxaGmEaQ==",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"bin": {
|
|
31
|
+
"anthropic-ai-sdk": "bin/cli"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"node_modules/@emnapi/runtime": {
|
|
35
|
+
"version": "1.8.1",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
|
|
37
|
+
"integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"optional": true,
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"tslib": "^2.4.0"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"node_modules/@img/colour": {
|
|
45
|
+
"version": "1.0.0",
|
|
46
|
+
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
|
|
47
|
+
"integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"optional": true,
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=18"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"node_modules/@img/sharp-darwin-arm64": {
|
|
55
|
+
"version": "0.34.5",
|
|
56
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
|
|
57
|
+
"integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
|
|
58
|
+
"cpu": [
|
|
59
|
+
"arm64"
|
|
60
|
+
],
|
|
61
|
+
"license": "Apache-2.0",
|
|
62
|
+
"optional": true,
|
|
63
|
+
"os": [
|
|
64
|
+
"darwin"
|
|
65
|
+
],
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
68
|
+
},
|
|
69
|
+
"funding": {
|
|
70
|
+
"url": "https://opencollective.com/libvips"
|
|
71
|
+
},
|
|
72
|
+
"optionalDependencies": {
|
|
73
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"node_modules/@img/sharp-darwin-x64": {
|
|
77
|
+
"version": "0.34.5",
|
|
78
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
|
|
79
|
+
"integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
|
|
80
|
+
"cpu": [
|
|
81
|
+
"x64"
|
|
82
|
+
],
|
|
83
|
+
"license": "Apache-2.0",
|
|
84
|
+
"optional": true,
|
|
85
|
+
"os": [
|
|
86
|
+
"darwin"
|
|
87
|
+
],
|
|
88
|
+
"engines": {
|
|
89
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
90
|
+
},
|
|
91
|
+
"funding": {
|
|
92
|
+
"url": "https://opencollective.com/libvips"
|
|
93
|
+
},
|
|
94
|
+
"optionalDependencies": {
|
|
95
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
|
99
|
+
"version": "1.2.4",
|
|
100
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
|
|
101
|
+
"integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
|
|
102
|
+
"cpu": [
|
|
103
|
+
"arm64"
|
|
104
|
+
],
|
|
105
|
+
"license": "LGPL-3.0-or-later",
|
|
106
|
+
"optional": true,
|
|
107
|
+
"os": [
|
|
108
|
+
"darwin"
|
|
109
|
+
],
|
|
110
|
+
"funding": {
|
|
111
|
+
"url": "https://opencollective.com/libvips"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
115
|
+
"version": "1.2.4",
|
|
116
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
|
|
117
|
+
"integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
|
|
118
|
+
"cpu": [
|
|
119
|
+
"x64"
|
|
120
|
+
],
|
|
121
|
+
"license": "LGPL-3.0-or-later",
|
|
122
|
+
"optional": true,
|
|
123
|
+
"os": [
|
|
124
|
+
"darwin"
|
|
125
|
+
],
|
|
126
|
+
"funding": {
|
|
127
|
+
"url": "https://opencollective.com/libvips"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"node_modules/@img/sharp-libvips-linux-arm": {
|
|
131
|
+
"version": "1.2.4",
|
|
132
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
|
|
133
|
+
"integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
|
|
134
|
+
"cpu": [
|
|
135
|
+
"arm"
|
|
136
|
+
],
|
|
137
|
+
"license": "LGPL-3.0-or-later",
|
|
138
|
+
"optional": true,
|
|
139
|
+
"os": [
|
|
140
|
+
"linux"
|
|
141
|
+
],
|
|
142
|
+
"funding": {
|
|
143
|
+
"url": "https://opencollective.com/libvips"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"node_modules/@img/sharp-libvips-linux-arm64": {
|
|
147
|
+
"version": "1.2.4",
|
|
148
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
|
|
149
|
+
"integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
|
|
150
|
+
"cpu": [
|
|
151
|
+
"arm64"
|
|
152
|
+
],
|
|
153
|
+
"license": "LGPL-3.0-or-later",
|
|
154
|
+
"optional": true,
|
|
155
|
+
"os": [
|
|
156
|
+
"linux"
|
|
157
|
+
],
|
|
158
|
+
"funding": {
|
|
159
|
+
"url": "https://opencollective.com/libvips"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"node_modules/@img/sharp-libvips-linux-ppc64": {
|
|
163
|
+
"version": "1.2.4",
|
|
164
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
|
|
165
|
+
"integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
|
|
166
|
+
"cpu": [
|
|
167
|
+
"ppc64"
|
|
168
|
+
],
|
|
169
|
+
"license": "LGPL-3.0-or-later",
|
|
170
|
+
"optional": true,
|
|
171
|
+
"os": [
|
|
172
|
+
"linux"
|
|
173
|
+
],
|
|
174
|
+
"funding": {
|
|
175
|
+
"url": "https://opencollective.com/libvips"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"node_modules/@img/sharp-libvips-linux-riscv64": {
|
|
179
|
+
"version": "1.2.4",
|
|
180
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
|
|
181
|
+
"integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
|
|
182
|
+
"cpu": [
|
|
183
|
+
"riscv64"
|
|
184
|
+
],
|
|
185
|
+
"license": "LGPL-3.0-or-later",
|
|
186
|
+
"optional": true,
|
|
187
|
+
"os": [
|
|
188
|
+
"linux"
|
|
189
|
+
],
|
|
190
|
+
"funding": {
|
|
191
|
+
"url": "https://opencollective.com/libvips"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"node_modules/@img/sharp-libvips-linux-s390x": {
|
|
195
|
+
"version": "1.2.4",
|
|
196
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
|
|
197
|
+
"integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
|
|
198
|
+
"cpu": [
|
|
199
|
+
"s390x"
|
|
200
|
+
],
|
|
201
|
+
"license": "LGPL-3.0-or-later",
|
|
202
|
+
"optional": true,
|
|
203
|
+
"os": [
|
|
204
|
+
"linux"
|
|
205
|
+
],
|
|
206
|
+
"funding": {
|
|
207
|
+
"url": "https://opencollective.com/libvips"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"node_modules/@img/sharp-libvips-linux-x64": {
|
|
211
|
+
"version": "1.2.4",
|
|
212
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
|
|
213
|
+
"integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
|
|
214
|
+
"cpu": [
|
|
215
|
+
"x64"
|
|
216
|
+
],
|
|
217
|
+
"license": "LGPL-3.0-or-later",
|
|
218
|
+
"optional": true,
|
|
219
|
+
"os": [
|
|
220
|
+
"linux"
|
|
221
|
+
],
|
|
222
|
+
"funding": {
|
|
223
|
+
"url": "https://opencollective.com/libvips"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
|
227
|
+
"version": "1.2.4",
|
|
228
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
|
|
229
|
+
"integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
|
|
230
|
+
"cpu": [
|
|
231
|
+
"arm64"
|
|
232
|
+
],
|
|
233
|
+
"license": "LGPL-3.0-or-later",
|
|
234
|
+
"optional": true,
|
|
235
|
+
"os": [
|
|
236
|
+
"linux"
|
|
237
|
+
],
|
|
238
|
+
"funding": {
|
|
239
|
+
"url": "https://opencollective.com/libvips"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
|
243
|
+
"version": "1.2.4",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
|
|
245
|
+
"integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
|
|
246
|
+
"cpu": [
|
|
247
|
+
"x64"
|
|
248
|
+
],
|
|
249
|
+
"license": "LGPL-3.0-or-later",
|
|
250
|
+
"optional": true,
|
|
251
|
+
"os": [
|
|
252
|
+
"linux"
|
|
253
|
+
],
|
|
254
|
+
"funding": {
|
|
255
|
+
"url": "https://opencollective.com/libvips"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"node_modules/@img/sharp-linux-arm": {
|
|
259
|
+
"version": "0.34.5",
|
|
260
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
|
|
261
|
+
"integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
|
|
262
|
+
"cpu": [
|
|
263
|
+
"arm"
|
|
264
|
+
],
|
|
265
|
+
"license": "Apache-2.0",
|
|
266
|
+
"optional": true,
|
|
267
|
+
"os": [
|
|
268
|
+
"linux"
|
|
269
|
+
],
|
|
270
|
+
"engines": {
|
|
271
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
272
|
+
},
|
|
273
|
+
"funding": {
|
|
274
|
+
"url": "https://opencollective.com/libvips"
|
|
275
|
+
},
|
|
276
|
+
"optionalDependencies": {
|
|
277
|
+
"@img/sharp-libvips-linux-arm": "1.2.4"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"node_modules/@img/sharp-linux-arm64": {
|
|
281
|
+
"version": "0.34.5",
|
|
282
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
|
|
283
|
+
"integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
|
|
284
|
+
"cpu": [
|
|
285
|
+
"arm64"
|
|
286
|
+
],
|
|
287
|
+
"license": "Apache-2.0",
|
|
288
|
+
"optional": true,
|
|
289
|
+
"os": [
|
|
290
|
+
"linux"
|
|
291
|
+
],
|
|
292
|
+
"engines": {
|
|
293
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
294
|
+
},
|
|
295
|
+
"funding": {
|
|
296
|
+
"url": "https://opencollective.com/libvips"
|
|
297
|
+
},
|
|
298
|
+
"optionalDependencies": {
|
|
299
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"node_modules/@img/sharp-linux-ppc64": {
|
|
303
|
+
"version": "0.34.5",
|
|
304
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
|
|
305
|
+
"integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
|
|
306
|
+
"cpu": [
|
|
307
|
+
"ppc64"
|
|
308
|
+
],
|
|
309
|
+
"license": "Apache-2.0",
|
|
310
|
+
"optional": true,
|
|
311
|
+
"os": [
|
|
312
|
+
"linux"
|
|
313
|
+
],
|
|
314
|
+
"engines": {
|
|
315
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
316
|
+
},
|
|
317
|
+
"funding": {
|
|
318
|
+
"url": "https://opencollective.com/libvips"
|
|
319
|
+
},
|
|
320
|
+
"optionalDependencies": {
|
|
321
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"node_modules/@img/sharp-linux-riscv64": {
|
|
325
|
+
"version": "0.34.5",
|
|
326
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
|
|
327
|
+
"integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
|
|
328
|
+
"cpu": [
|
|
329
|
+
"riscv64"
|
|
330
|
+
],
|
|
331
|
+
"license": "Apache-2.0",
|
|
332
|
+
"optional": true,
|
|
333
|
+
"os": [
|
|
334
|
+
"linux"
|
|
335
|
+
],
|
|
336
|
+
"engines": {
|
|
337
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
338
|
+
},
|
|
339
|
+
"funding": {
|
|
340
|
+
"url": "https://opencollective.com/libvips"
|
|
341
|
+
},
|
|
342
|
+
"optionalDependencies": {
|
|
343
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4"
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
"node_modules/@img/sharp-linux-s390x": {
|
|
347
|
+
"version": "0.34.5",
|
|
348
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
|
|
349
|
+
"integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
|
|
350
|
+
"cpu": [
|
|
351
|
+
"s390x"
|
|
352
|
+
],
|
|
353
|
+
"license": "Apache-2.0",
|
|
354
|
+
"optional": true,
|
|
355
|
+
"os": [
|
|
356
|
+
"linux"
|
|
357
|
+
],
|
|
358
|
+
"engines": {
|
|
359
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
360
|
+
},
|
|
361
|
+
"funding": {
|
|
362
|
+
"url": "https://opencollective.com/libvips"
|
|
363
|
+
},
|
|
364
|
+
"optionalDependencies": {
|
|
365
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"node_modules/@img/sharp-linux-x64": {
|
|
369
|
+
"version": "0.34.5",
|
|
370
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
|
|
371
|
+
"integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
|
|
372
|
+
"cpu": [
|
|
373
|
+
"x64"
|
|
374
|
+
],
|
|
375
|
+
"license": "Apache-2.0",
|
|
376
|
+
"optional": true,
|
|
377
|
+
"os": [
|
|
378
|
+
"linux"
|
|
379
|
+
],
|
|
380
|
+
"engines": {
|
|
381
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
382
|
+
},
|
|
383
|
+
"funding": {
|
|
384
|
+
"url": "https://opencollective.com/libvips"
|
|
385
|
+
},
|
|
386
|
+
"optionalDependencies": {
|
|
387
|
+
"@img/sharp-libvips-linux-x64": "1.2.4"
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"node_modules/@img/sharp-linuxmusl-arm64": {
|
|
391
|
+
"version": "0.34.5",
|
|
392
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
|
|
393
|
+
"integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
|
|
394
|
+
"cpu": [
|
|
395
|
+
"arm64"
|
|
396
|
+
],
|
|
397
|
+
"license": "Apache-2.0",
|
|
398
|
+
"optional": true,
|
|
399
|
+
"os": [
|
|
400
|
+
"linux"
|
|
401
|
+
],
|
|
402
|
+
"engines": {
|
|
403
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
404
|
+
},
|
|
405
|
+
"funding": {
|
|
406
|
+
"url": "https://opencollective.com/libvips"
|
|
407
|
+
},
|
|
408
|
+
"optionalDependencies": {
|
|
409
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"node_modules/@img/sharp-linuxmusl-x64": {
|
|
413
|
+
"version": "0.34.5",
|
|
414
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
|
|
415
|
+
"integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
|
|
416
|
+
"cpu": [
|
|
417
|
+
"x64"
|
|
418
|
+
],
|
|
419
|
+
"license": "Apache-2.0",
|
|
420
|
+
"optional": true,
|
|
421
|
+
"os": [
|
|
422
|
+
"linux"
|
|
423
|
+
],
|
|
424
|
+
"engines": {
|
|
425
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
426
|
+
},
|
|
427
|
+
"funding": {
|
|
428
|
+
"url": "https://opencollective.com/libvips"
|
|
429
|
+
},
|
|
430
|
+
"optionalDependencies": {
|
|
431
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4"
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"node_modules/@img/sharp-wasm32": {
|
|
435
|
+
"version": "0.34.5",
|
|
436
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
|
|
437
|
+
"integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
|
|
438
|
+
"cpu": [
|
|
439
|
+
"wasm32"
|
|
440
|
+
],
|
|
441
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
|
|
442
|
+
"optional": true,
|
|
443
|
+
"dependencies": {
|
|
444
|
+
"@emnapi/runtime": "^1.7.0"
|
|
445
|
+
},
|
|
446
|
+
"engines": {
|
|
447
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
448
|
+
},
|
|
449
|
+
"funding": {
|
|
450
|
+
"url": "https://opencollective.com/libvips"
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
"node_modules/@img/sharp-win32-arm64": {
|
|
454
|
+
"version": "0.34.5",
|
|
455
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
|
|
456
|
+
"integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
|
|
457
|
+
"cpu": [
|
|
458
|
+
"arm64"
|
|
459
|
+
],
|
|
460
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
461
|
+
"optional": true,
|
|
462
|
+
"os": [
|
|
463
|
+
"win32"
|
|
464
|
+
],
|
|
465
|
+
"engines": {
|
|
466
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
467
|
+
},
|
|
468
|
+
"funding": {
|
|
469
|
+
"url": "https://opencollective.com/libvips"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"node_modules/@img/sharp-win32-ia32": {
|
|
473
|
+
"version": "0.34.5",
|
|
474
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
|
|
475
|
+
"integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
|
|
476
|
+
"cpu": [
|
|
477
|
+
"ia32"
|
|
478
|
+
],
|
|
479
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
480
|
+
"optional": true,
|
|
481
|
+
"os": [
|
|
482
|
+
"win32"
|
|
483
|
+
],
|
|
484
|
+
"engines": {
|
|
485
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
486
|
+
},
|
|
487
|
+
"funding": {
|
|
488
|
+
"url": "https://opencollective.com/libvips"
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"node_modules/@img/sharp-win32-x64": {
|
|
492
|
+
"version": "0.34.5",
|
|
493
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
|
|
494
|
+
"integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
|
|
495
|
+
"cpu": [
|
|
496
|
+
"x64"
|
|
497
|
+
],
|
|
498
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
499
|
+
"optional": true,
|
|
500
|
+
"os": [
|
|
501
|
+
"win32"
|
|
502
|
+
],
|
|
503
|
+
"engines": {
|
|
504
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
505
|
+
},
|
|
506
|
+
"funding": {
|
|
507
|
+
"url": "https://opencollective.com/libvips"
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"node_modules/@next/env": {
|
|
511
|
+
"version": "16.1.6",
|
|
512
|
+
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.1.6.tgz",
|
|
513
|
+
"integrity": "sha512-N1ySLuZjnAtN3kFnwhAwPvZah8RJxKasD7x1f8shFqhncnWZn4JMfg37diLNuoHsLAlrDfM3g4mawVdtAG8XLQ==",
|
|
514
|
+
"license": "MIT"
|
|
515
|
+
},
|
|
516
|
+
"node_modules/@next/swc-darwin-arm64": {
|
|
517
|
+
"version": "16.1.6",
|
|
518
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.1.6.tgz",
|
|
519
|
+
"integrity": "sha512-wTzYulosJr/6nFnqGW7FrG3jfUUlEf8UjGA0/pyypJl42ExdVgC6xJgcXQ+V8QFn6niSG2Pb8+MIG1mZr2vczw==",
|
|
520
|
+
"cpu": [
|
|
521
|
+
"arm64"
|
|
522
|
+
],
|
|
523
|
+
"license": "MIT",
|
|
524
|
+
"optional": true,
|
|
525
|
+
"os": [
|
|
526
|
+
"darwin"
|
|
527
|
+
],
|
|
528
|
+
"engines": {
|
|
529
|
+
"node": ">= 10"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"node_modules/@next/swc-darwin-x64": {
|
|
533
|
+
"version": "16.1.6",
|
|
534
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.1.6.tgz",
|
|
535
|
+
"integrity": "sha512-BLFPYPDO+MNJsiDWbeVzqvYd4NyuRrEYVB5k2N3JfWncuHAy2IVwMAOlVQDFjj+krkWzhY2apvmekMkfQR0CUQ==",
|
|
536
|
+
"cpu": [
|
|
537
|
+
"x64"
|
|
538
|
+
],
|
|
539
|
+
"license": "MIT",
|
|
540
|
+
"optional": true,
|
|
541
|
+
"os": [
|
|
542
|
+
"darwin"
|
|
543
|
+
],
|
|
544
|
+
"engines": {
|
|
545
|
+
"node": ">= 10"
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
549
|
+
"version": "16.1.6",
|
|
550
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.1.6.tgz",
|
|
551
|
+
"integrity": "sha512-OJYkCd5pj/QloBvoEcJ2XiMnlJkRv9idWA/j0ugSuA34gMT6f5b7vOiCQHVRpvStoZUknhl6/UxOXL4OwtdaBw==",
|
|
552
|
+
"cpu": [
|
|
553
|
+
"arm64"
|
|
554
|
+
],
|
|
555
|
+
"license": "MIT",
|
|
556
|
+
"optional": true,
|
|
557
|
+
"os": [
|
|
558
|
+
"linux"
|
|
559
|
+
],
|
|
560
|
+
"engines": {
|
|
561
|
+
"node": ">= 10"
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
"node_modules/@next/swc-linux-arm64-musl": {
|
|
565
|
+
"version": "16.1.6",
|
|
566
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.1.6.tgz",
|
|
567
|
+
"integrity": "sha512-S4J2v+8tT3NIO9u2q+S0G5KdvNDjXfAv06OhfOzNDaBn5rw84DGXWndOEB7d5/x852A20sW1M56vhC/tRVbccQ==",
|
|
568
|
+
"cpu": [
|
|
569
|
+
"arm64"
|
|
570
|
+
],
|
|
571
|
+
"license": "MIT",
|
|
572
|
+
"optional": true,
|
|
573
|
+
"os": [
|
|
574
|
+
"linux"
|
|
575
|
+
],
|
|
576
|
+
"engines": {
|
|
577
|
+
"node": ">= 10"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"node_modules/@next/swc-linux-x64-gnu": {
|
|
581
|
+
"version": "16.1.6",
|
|
582
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.1.6.tgz",
|
|
583
|
+
"integrity": "sha512-2eEBDkFlMMNQnkTyPBhQOAyn2qMxyG2eE7GPH2WIDGEpEILcBPI/jdSv4t6xupSP+ot/jkfrCShLAa7+ZUPcJQ==",
|
|
584
|
+
"cpu": [
|
|
585
|
+
"x64"
|
|
586
|
+
],
|
|
587
|
+
"license": "MIT",
|
|
588
|
+
"optional": true,
|
|
589
|
+
"os": [
|
|
590
|
+
"linux"
|
|
591
|
+
],
|
|
592
|
+
"engines": {
|
|
593
|
+
"node": ">= 10"
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
"node_modules/@next/swc-linux-x64-musl": {
|
|
597
|
+
"version": "16.1.6",
|
|
598
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.1.6.tgz",
|
|
599
|
+
"integrity": "sha512-oicJwRlyOoZXVlxmIMaTq7f8pN9QNbdes0q2FXfRsPhfCi8n8JmOZJm5oo1pwDaFbnnD421rVU409M3evFbIqg==",
|
|
600
|
+
"cpu": [
|
|
601
|
+
"x64"
|
|
602
|
+
],
|
|
603
|
+
"license": "MIT",
|
|
604
|
+
"optional": true,
|
|
605
|
+
"os": [
|
|
606
|
+
"linux"
|
|
607
|
+
],
|
|
608
|
+
"engines": {
|
|
609
|
+
"node": ">= 10"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
613
|
+
"version": "16.1.6",
|
|
614
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.1.6.tgz",
|
|
615
|
+
"integrity": "sha512-gQmm8izDTPgs+DCWH22kcDmuUp7NyiJgEl18bcr8irXA5N2m2O+JQIr6f3ct42GOs9c0h8QF3L5SzIxcYAAXXw==",
|
|
616
|
+
"cpu": [
|
|
617
|
+
"arm64"
|
|
618
|
+
],
|
|
619
|
+
"license": "MIT",
|
|
620
|
+
"optional": true,
|
|
621
|
+
"os": [
|
|
622
|
+
"win32"
|
|
623
|
+
],
|
|
624
|
+
"engines": {
|
|
625
|
+
"node": ">= 10"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"node_modules/@next/swc-win32-x64-msvc": {
|
|
629
|
+
"version": "16.1.6",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.1.6.tgz",
|
|
631
|
+
"integrity": "sha512-NRfO39AIrzBnixKbjuo2YiYhB6o9d8v/ymU9m/Xk8cyVk+k7XylniXkHwjs4s70wedVffc6bQNbufk5v0xEm0A==",
|
|
632
|
+
"cpu": [
|
|
633
|
+
"x64"
|
|
634
|
+
],
|
|
635
|
+
"license": "MIT",
|
|
636
|
+
"optional": true,
|
|
637
|
+
"os": [
|
|
638
|
+
"win32"
|
|
639
|
+
],
|
|
640
|
+
"engines": {
|
|
641
|
+
"node": ">= 10"
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
"node_modules/@swc/helpers": {
|
|
645
|
+
"version": "0.5.15",
|
|
646
|
+
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
|
|
647
|
+
"integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
|
|
648
|
+
"license": "Apache-2.0",
|
|
649
|
+
"dependencies": {
|
|
650
|
+
"tslib": "^2.8.0"
|
|
651
|
+
}
|
|
652
|
+
},
|
|
653
|
+
"node_modules/@types/debug": {
|
|
654
|
+
"version": "4.1.12",
|
|
655
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
|
|
656
|
+
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
|
|
657
|
+
"license": "MIT",
|
|
658
|
+
"dependencies": {
|
|
659
|
+
"@types/ms": "*"
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
"node_modules/@types/estree": {
|
|
663
|
+
"version": "1.0.8",
|
|
664
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
665
|
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
666
|
+
"license": "MIT"
|
|
667
|
+
},
|
|
668
|
+
"node_modules/@types/estree-jsx": {
|
|
669
|
+
"version": "1.0.5",
|
|
670
|
+
"resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
|
|
671
|
+
"integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
|
|
672
|
+
"license": "MIT",
|
|
673
|
+
"dependencies": {
|
|
674
|
+
"@types/estree": "*"
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
"node_modules/@types/hast": {
|
|
678
|
+
"version": "3.0.4",
|
|
679
|
+
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
|
|
680
|
+
"integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
|
|
681
|
+
"license": "MIT",
|
|
682
|
+
"dependencies": {
|
|
683
|
+
"@types/unist": "*"
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
"node_modules/@types/mdast": {
|
|
687
|
+
"version": "4.0.4",
|
|
688
|
+
"resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
|
|
689
|
+
"integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
|
|
690
|
+
"license": "MIT",
|
|
691
|
+
"dependencies": {
|
|
692
|
+
"@types/unist": "*"
|
|
693
|
+
}
|
|
694
|
+
},
|
|
695
|
+
"node_modules/@types/ms": {
|
|
696
|
+
"version": "2.1.0",
|
|
697
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
|
|
698
|
+
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
|
|
699
|
+
"license": "MIT"
|
|
700
|
+
},
|
|
701
|
+
"node_modules/@types/node": {
|
|
702
|
+
"version": "22.19.11",
|
|
703
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.11.tgz",
|
|
704
|
+
"integrity": "sha512-BH7YwL6rA93ReqeQS1c4bsPpcfOmJasG+Fkr6Y59q83f9M1WcBRHR2vM+P9eOisYRcN3ujQoiZY8uk5W+1WL8w==",
|
|
705
|
+
"dev": true,
|
|
706
|
+
"license": "MIT",
|
|
707
|
+
"dependencies": {
|
|
708
|
+
"undici-types": "~6.21.0"
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
"node_modules/@types/react": {
|
|
712
|
+
"version": "19.2.14",
|
|
713
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
|
|
714
|
+
"integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
|
|
715
|
+
"license": "MIT",
|
|
716
|
+
"dependencies": {
|
|
717
|
+
"csstype": "^3.2.2"
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"node_modules/@types/react-dom": {
|
|
721
|
+
"version": "19.2.3",
|
|
722
|
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
|
|
723
|
+
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
|
|
724
|
+
"dev": true,
|
|
725
|
+
"license": "MIT",
|
|
726
|
+
"peerDependencies": {
|
|
727
|
+
"@types/react": "^19.2.0"
|
|
728
|
+
}
|
|
729
|
+
},
|
|
730
|
+
"node_modules/@types/unist": {
|
|
731
|
+
"version": "3.0.3",
|
|
732
|
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
|
|
733
|
+
"integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
|
|
734
|
+
"license": "MIT"
|
|
735
|
+
},
|
|
736
|
+
"node_modules/@ungap/structured-clone": {
|
|
737
|
+
"version": "1.3.0",
|
|
738
|
+
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
|
|
739
|
+
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
|
|
740
|
+
"license": "ISC"
|
|
741
|
+
},
|
|
742
|
+
"node_modules/bail": {
|
|
743
|
+
"version": "2.0.2",
|
|
744
|
+
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
|
|
745
|
+
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
|
|
746
|
+
"license": "MIT",
|
|
747
|
+
"funding": {
|
|
748
|
+
"type": "github",
|
|
749
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
"node_modules/baseline-browser-mapping": {
|
|
753
|
+
"version": "2.10.0",
|
|
754
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz",
|
|
755
|
+
"integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==",
|
|
756
|
+
"license": "Apache-2.0",
|
|
757
|
+
"bin": {
|
|
758
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
759
|
+
},
|
|
760
|
+
"engines": {
|
|
761
|
+
"node": ">=6.0.0"
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
"node_modules/caniuse-lite": {
|
|
765
|
+
"version": "1.0.30001770",
|
|
766
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001770.tgz",
|
|
767
|
+
"integrity": "sha512-x/2CLQ1jHENRbHg5PSId2sXq1CIO1CISvwWAj027ltMVG2UNgW+w9oH2+HzgEIRFembL8bUlXtfbBHR1fCg2xw==",
|
|
768
|
+
"funding": [
|
|
769
|
+
{
|
|
770
|
+
"type": "opencollective",
|
|
771
|
+
"url": "https://opencollective.com/browserslist"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"type": "tidelift",
|
|
775
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"type": "github",
|
|
779
|
+
"url": "https://github.com/sponsors/ai"
|
|
780
|
+
}
|
|
781
|
+
],
|
|
782
|
+
"license": "CC-BY-4.0"
|
|
783
|
+
},
|
|
784
|
+
"node_modules/ccount": {
|
|
785
|
+
"version": "2.0.1",
|
|
786
|
+
"resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
|
|
787
|
+
"integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
|
|
788
|
+
"license": "MIT",
|
|
789
|
+
"funding": {
|
|
790
|
+
"type": "github",
|
|
791
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
"node_modules/character-entities": {
|
|
795
|
+
"version": "2.0.2",
|
|
796
|
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
|
|
797
|
+
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
|
|
798
|
+
"license": "MIT",
|
|
799
|
+
"funding": {
|
|
800
|
+
"type": "github",
|
|
801
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
"node_modules/character-entities-html4": {
|
|
805
|
+
"version": "2.1.0",
|
|
806
|
+
"resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
|
|
807
|
+
"integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
|
|
808
|
+
"license": "MIT",
|
|
809
|
+
"funding": {
|
|
810
|
+
"type": "github",
|
|
811
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
812
|
+
}
|
|
813
|
+
},
|
|
814
|
+
"node_modules/character-entities-legacy": {
|
|
815
|
+
"version": "3.0.0",
|
|
816
|
+
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
|
|
817
|
+
"integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
|
|
818
|
+
"license": "MIT",
|
|
819
|
+
"funding": {
|
|
820
|
+
"type": "github",
|
|
821
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
"node_modules/character-reference-invalid": {
|
|
825
|
+
"version": "2.0.1",
|
|
826
|
+
"resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
|
|
827
|
+
"integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
|
|
828
|
+
"license": "MIT",
|
|
829
|
+
"funding": {
|
|
830
|
+
"type": "github",
|
|
831
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
832
|
+
}
|
|
833
|
+
},
|
|
834
|
+
"node_modules/client-only": {
|
|
835
|
+
"version": "0.0.1",
|
|
836
|
+
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
|
|
837
|
+
"integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
|
|
838
|
+
"license": "MIT"
|
|
839
|
+
},
|
|
840
|
+
"node_modules/comma-separated-tokens": {
|
|
841
|
+
"version": "2.0.3",
|
|
842
|
+
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
|
|
843
|
+
"integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
|
|
844
|
+
"license": "MIT",
|
|
845
|
+
"funding": {
|
|
846
|
+
"type": "github",
|
|
847
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
848
|
+
}
|
|
849
|
+
},
|
|
850
|
+
"node_modules/csstype": {
|
|
851
|
+
"version": "3.2.3",
|
|
852
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
853
|
+
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
854
|
+
"license": "MIT"
|
|
855
|
+
},
|
|
856
|
+
"node_modules/debug": {
|
|
857
|
+
"version": "4.4.3",
|
|
858
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
859
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
860
|
+
"license": "MIT",
|
|
861
|
+
"dependencies": {
|
|
862
|
+
"ms": "^2.1.3"
|
|
863
|
+
},
|
|
864
|
+
"engines": {
|
|
865
|
+
"node": ">=6.0"
|
|
866
|
+
},
|
|
867
|
+
"peerDependenciesMeta": {
|
|
868
|
+
"supports-color": {
|
|
869
|
+
"optional": true
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
},
|
|
873
|
+
"node_modules/decode-named-character-reference": {
|
|
874
|
+
"version": "1.3.0",
|
|
875
|
+
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
|
|
876
|
+
"integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
|
|
877
|
+
"license": "MIT",
|
|
878
|
+
"dependencies": {
|
|
879
|
+
"character-entities": "^2.0.0"
|
|
880
|
+
},
|
|
881
|
+
"funding": {
|
|
882
|
+
"type": "github",
|
|
883
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
"node_modules/dequal": {
|
|
887
|
+
"version": "2.0.3",
|
|
888
|
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
889
|
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
|
|
890
|
+
"license": "MIT",
|
|
891
|
+
"engines": {
|
|
892
|
+
"node": ">=6"
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
"node_modules/detect-libc": {
|
|
896
|
+
"version": "2.1.2",
|
|
897
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
898
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
899
|
+
"license": "Apache-2.0",
|
|
900
|
+
"optional": true,
|
|
901
|
+
"engines": {
|
|
902
|
+
"node": ">=8"
|
|
903
|
+
}
|
|
904
|
+
},
|
|
905
|
+
"node_modules/devlop": {
|
|
906
|
+
"version": "1.1.0",
|
|
907
|
+
"resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
|
|
908
|
+
"integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
|
|
909
|
+
"license": "MIT",
|
|
910
|
+
"dependencies": {
|
|
911
|
+
"dequal": "^2.0.0"
|
|
912
|
+
},
|
|
913
|
+
"funding": {
|
|
914
|
+
"type": "github",
|
|
915
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"node_modules/estree-util-is-identifier-name": {
|
|
919
|
+
"version": "3.0.0",
|
|
920
|
+
"resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
|
|
921
|
+
"integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
|
|
922
|
+
"license": "MIT",
|
|
923
|
+
"funding": {
|
|
924
|
+
"type": "opencollective",
|
|
925
|
+
"url": "https://opencollective.com/unified"
|
|
926
|
+
}
|
|
927
|
+
},
|
|
928
|
+
"node_modules/extend": {
|
|
929
|
+
"version": "3.0.2",
|
|
930
|
+
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
|
931
|
+
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
|
|
932
|
+
"license": "MIT"
|
|
933
|
+
},
|
|
934
|
+
"node_modules/hast-util-to-jsx-runtime": {
|
|
935
|
+
"version": "2.3.6",
|
|
936
|
+
"resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
|
|
937
|
+
"integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
|
|
938
|
+
"license": "MIT",
|
|
939
|
+
"dependencies": {
|
|
940
|
+
"@types/estree": "^1.0.0",
|
|
941
|
+
"@types/hast": "^3.0.0",
|
|
942
|
+
"@types/unist": "^3.0.0",
|
|
943
|
+
"comma-separated-tokens": "^2.0.0",
|
|
944
|
+
"devlop": "^1.0.0",
|
|
945
|
+
"estree-util-is-identifier-name": "^3.0.0",
|
|
946
|
+
"hast-util-whitespace": "^3.0.0",
|
|
947
|
+
"mdast-util-mdx-expression": "^2.0.0",
|
|
948
|
+
"mdast-util-mdx-jsx": "^3.0.0",
|
|
949
|
+
"mdast-util-mdxjs-esm": "^2.0.0",
|
|
950
|
+
"property-information": "^7.0.0",
|
|
951
|
+
"space-separated-tokens": "^2.0.0",
|
|
952
|
+
"style-to-js": "^1.0.0",
|
|
953
|
+
"unist-util-position": "^5.0.0",
|
|
954
|
+
"vfile-message": "^4.0.0"
|
|
955
|
+
},
|
|
956
|
+
"funding": {
|
|
957
|
+
"type": "opencollective",
|
|
958
|
+
"url": "https://opencollective.com/unified"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"node_modules/hast-util-whitespace": {
|
|
962
|
+
"version": "3.0.0",
|
|
963
|
+
"resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
|
|
964
|
+
"integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
|
|
965
|
+
"license": "MIT",
|
|
966
|
+
"dependencies": {
|
|
967
|
+
"@types/hast": "^3.0.0"
|
|
968
|
+
},
|
|
969
|
+
"funding": {
|
|
970
|
+
"type": "opencollective",
|
|
971
|
+
"url": "https://opencollective.com/unified"
|
|
972
|
+
}
|
|
973
|
+
},
|
|
974
|
+
"node_modules/html-url-attributes": {
|
|
975
|
+
"version": "3.0.1",
|
|
976
|
+
"resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz",
|
|
977
|
+
"integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==",
|
|
978
|
+
"license": "MIT",
|
|
979
|
+
"funding": {
|
|
980
|
+
"type": "opencollective",
|
|
981
|
+
"url": "https://opencollective.com/unified"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
"node_modules/inline-style-parser": {
|
|
985
|
+
"version": "0.2.7",
|
|
986
|
+
"resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
|
|
987
|
+
"integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
|
|
988
|
+
"license": "MIT"
|
|
989
|
+
},
|
|
990
|
+
"node_modules/is-alphabetical": {
|
|
991
|
+
"version": "2.0.1",
|
|
992
|
+
"resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
|
|
993
|
+
"integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
|
|
994
|
+
"license": "MIT",
|
|
995
|
+
"funding": {
|
|
996
|
+
"type": "github",
|
|
997
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
998
|
+
}
|
|
999
|
+
},
|
|
1000
|
+
"node_modules/is-alphanumerical": {
|
|
1001
|
+
"version": "2.0.1",
|
|
1002
|
+
"resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
|
|
1003
|
+
"integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
|
|
1004
|
+
"license": "MIT",
|
|
1005
|
+
"dependencies": {
|
|
1006
|
+
"is-alphabetical": "^2.0.0",
|
|
1007
|
+
"is-decimal": "^2.0.0"
|
|
1008
|
+
},
|
|
1009
|
+
"funding": {
|
|
1010
|
+
"type": "github",
|
|
1011
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1012
|
+
}
|
|
1013
|
+
},
|
|
1014
|
+
"node_modules/is-decimal": {
|
|
1015
|
+
"version": "2.0.1",
|
|
1016
|
+
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
|
|
1017
|
+
"integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
|
|
1018
|
+
"license": "MIT",
|
|
1019
|
+
"funding": {
|
|
1020
|
+
"type": "github",
|
|
1021
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1022
|
+
}
|
|
1023
|
+
},
|
|
1024
|
+
"node_modules/is-hexadecimal": {
|
|
1025
|
+
"version": "2.0.1",
|
|
1026
|
+
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
|
|
1027
|
+
"integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
|
|
1028
|
+
"license": "MIT",
|
|
1029
|
+
"funding": {
|
|
1030
|
+
"type": "github",
|
|
1031
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
"node_modules/is-plain-obj": {
|
|
1035
|
+
"version": "4.1.0",
|
|
1036
|
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
|
|
1037
|
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
|
|
1038
|
+
"license": "MIT",
|
|
1039
|
+
"engines": {
|
|
1040
|
+
"node": ">=12"
|
|
1041
|
+
},
|
|
1042
|
+
"funding": {
|
|
1043
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1044
|
+
}
|
|
1045
|
+
},
|
|
1046
|
+
"node_modules/longest-streak": {
|
|
1047
|
+
"version": "3.1.0",
|
|
1048
|
+
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
|
|
1049
|
+
"integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
|
|
1050
|
+
"license": "MIT",
|
|
1051
|
+
"funding": {
|
|
1052
|
+
"type": "github",
|
|
1053
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
"node_modules/lucide-react": {
|
|
1057
|
+
"version": "0.572.0",
|
|
1058
|
+
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.572.0.tgz",
|
|
1059
|
+
"integrity": "sha512-GsRHauaTBqk+WziW9mW+SGEcdpvld2f2VdbZCAOyFZbTEOdNVLJq1nEt2qAKJbWeBqDnv7y1XH+sWF6Q6bjgUw==",
|
|
1060
|
+
"license": "ISC",
|
|
1061
|
+
"peerDependencies": {
|
|
1062
|
+
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
1063
|
+
}
|
|
1064
|
+
},
|
|
1065
|
+
"node_modules/mdast-util-from-markdown": {
|
|
1066
|
+
"version": "2.0.3",
|
|
1067
|
+
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
|
|
1068
|
+
"integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
|
|
1069
|
+
"license": "MIT",
|
|
1070
|
+
"dependencies": {
|
|
1071
|
+
"@types/mdast": "^4.0.0",
|
|
1072
|
+
"@types/unist": "^3.0.0",
|
|
1073
|
+
"decode-named-character-reference": "^1.0.0",
|
|
1074
|
+
"devlop": "^1.0.0",
|
|
1075
|
+
"mdast-util-to-string": "^4.0.0",
|
|
1076
|
+
"micromark": "^4.0.0",
|
|
1077
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
1078
|
+
"micromark-util-decode-string": "^2.0.0",
|
|
1079
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
1080
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1081
|
+
"micromark-util-types": "^2.0.0",
|
|
1082
|
+
"unist-util-stringify-position": "^4.0.0"
|
|
1083
|
+
},
|
|
1084
|
+
"funding": {
|
|
1085
|
+
"type": "opencollective",
|
|
1086
|
+
"url": "https://opencollective.com/unified"
|
|
1087
|
+
}
|
|
1088
|
+
},
|
|
1089
|
+
"node_modules/mdast-util-mdx-expression": {
|
|
1090
|
+
"version": "2.0.1",
|
|
1091
|
+
"resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
|
|
1092
|
+
"integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
|
|
1093
|
+
"license": "MIT",
|
|
1094
|
+
"dependencies": {
|
|
1095
|
+
"@types/estree-jsx": "^1.0.0",
|
|
1096
|
+
"@types/hast": "^3.0.0",
|
|
1097
|
+
"@types/mdast": "^4.0.0",
|
|
1098
|
+
"devlop": "^1.0.0",
|
|
1099
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
1100
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
1101
|
+
},
|
|
1102
|
+
"funding": {
|
|
1103
|
+
"type": "opencollective",
|
|
1104
|
+
"url": "https://opencollective.com/unified"
|
|
1105
|
+
}
|
|
1106
|
+
},
|
|
1107
|
+
"node_modules/mdast-util-mdx-jsx": {
|
|
1108
|
+
"version": "3.2.0",
|
|
1109
|
+
"resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
|
|
1110
|
+
"integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
|
|
1111
|
+
"license": "MIT",
|
|
1112
|
+
"dependencies": {
|
|
1113
|
+
"@types/estree-jsx": "^1.0.0",
|
|
1114
|
+
"@types/hast": "^3.0.0",
|
|
1115
|
+
"@types/mdast": "^4.0.0",
|
|
1116
|
+
"@types/unist": "^3.0.0",
|
|
1117
|
+
"ccount": "^2.0.0",
|
|
1118
|
+
"devlop": "^1.1.0",
|
|
1119
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
1120
|
+
"mdast-util-to-markdown": "^2.0.0",
|
|
1121
|
+
"parse-entities": "^4.0.0",
|
|
1122
|
+
"stringify-entities": "^4.0.0",
|
|
1123
|
+
"unist-util-stringify-position": "^4.0.0",
|
|
1124
|
+
"vfile-message": "^4.0.0"
|
|
1125
|
+
},
|
|
1126
|
+
"funding": {
|
|
1127
|
+
"type": "opencollective",
|
|
1128
|
+
"url": "https://opencollective.com/unified"
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
"node_modules/mdast-util-mdxjs-esm": {
|
|
1132
|
+
"version": "2.0.1",
|
|
1133
|
+
"resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
|
|
1134
|
+
"integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
|
|
1135
|
+
"license": "MIT",
|
|
1136
|
+
"dependencies": {
|
|
1137
|
+
"@types/estree-jsx": "^1.0.0",
|
|
1138
|
+
"@types/hast": "^3.0.0",
|
|
1139
|
+
"@types/mdast": "^4.0.0",
|
|
1140
|
+
"devlop": "^1.0.0",
|
|
1141
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
1142
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
1143
|
+
},
|
|
1144
|
+
"funding": {
|
|
1145
|
+
"type": "opencollective",
|
|
1146
|
+
"url": "https://opencollective.com/unified"
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
"node_modules/mdast-util-phrasing": {
|
|
1150
|
+
"version": "4.1.0",
|
|
1151
|
+
"resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
|
|
1152
|
+
"integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
|
|
1153
|
+
"license": "MIT",
|
|
1154
|
+
"dependencies": {
|
|
1155
|
+
"@types/mdast": "^4.0.0",
|
|
1156
|
+
"unist-util-is": "^6.0.0"
|
|
1157
|
+
},
|
|
1158
|
+
"funding": {
|
|
1159
|
+
"type": "opencollective",
|
|
1160
|
+
"url": "https://opencollective.com/unified"
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
"node_modules/mdast-util-to-hast": {
|
|
1164
|
+
"version": "13.2.1",
|
|
1165
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
|
|
1166
|
+
"integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
|
|
1167
|
+
"license": "MIT",
|
|
1168
|
+
"dependencies": {
|
|
1169
|
+
"@types/hast": "^3.0.0",
|
|
1170
|
+
"@types/mdast": "^4.0.0",
|
|
1171
|
+
"@ungap/structured-clone": "^1.0.0",
|
|
1172
|
+
"devlop": "^1.0.0",
|
|
1173
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
1174
|
+
"trim-lines": "^3.0.0",
|
|
1175
|
+
"unist-util-position": "^5.0.0",
|
|
1176
|
+
"unist-util-visit": "^5.0.0",
|
|
1177
|
+
"vfile": "^6.0.0"
|
|
1178
|
+
},
|
|
1179
|
+
"funding": {
|
|
1180
|
+
"type": "opencollective",
|
|
1181
|
+
"url": "https://opencollective.com/unified"
|
|
1182
|
+
}
|
|
1183
|
+
},
|
|
1184
|
+
"node_modules/mdast-util-to-markdown": {
|
|
1185
|
+
"version": "2.1.2",
|
|
1186
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
|
|
1187
|
+
"integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
|
|
1188
|
+
"license": "MIT",
|
|
1189
|
+
"dependencies": {
|
|
1190
|
+
"@types/mdast": "^4.0.0",
|
|
1191
|
+
"@types/unist": "^3.0.0",
|
|
1192
|
+
"longest-streak": "^3.0.0",
|
|
1193
|
+
"mdast-util-phrasing": "^4.0.0",
|
|
1194
|
+
"mdast-util-to-string": "^4.0.0",
|
|
1195
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
1196
|
+
"micromark-util-decode-string": "^2.0.0",
|
|
1197
|
+
"unist-util-visit": "^5.0.0",
|
|
1198
|
+
"zwitch": "^2.0.0"
|
|
1199
|
+
},
|
|
1200
|
+
"funding": {
|
|
1201
|
+
"type": "opencollective",
|
|
1202
|
+
"url": "https://opencollective.com/unified"
|
|
1203
|
+
}
|
|
1204
|
+
},
|
|
1205
|
+
"node_modules/mdast-util-to-string": {
|
|
1206
|
+
"version": "4.0.0",
|
|
1207
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
|
|
1208
|
+
"integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
|
|
1209
|
+
"license": "MIT",
|
|
1210
|
+
"dependencies": {
|
|
1211
|
+
"@types/mdast": "^4.0.0"
|
|
1212
|
+
},
|
|
1213
|
+
"funding": {
|
|
1214
|
+
"type": "opencollective",
|
|
1215
|
+
"url": "https://opencollective.com/unified"
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"node_modules/micromark": {
|
|
1219
|
+
"version": "4.0.2",
|
|
1220
|
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
|
|
1221
|
+
"integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
|
|
1222
|
+
"funding": [
|
|
1223
|
+
{
|
|
1224
|
+
"type": "GitHub Sponsors",
|
|
1225
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"type": "OpenCollective",
|
|
1229
|
+
"url": "https://opencollective.com/unified"
|
|
1230
|
+
}
|
|
1231
|
+
],
|
|
1232
|
+
"license": "MIT",
|
|
1233
|
+
"dependencies": {
|
|
1234
|
+
"@types/debug": "^4.0.0",
|
|
1235
|
+
"debug": "^4.0.0",
|
|
1236
|
+
"decode-named-character-reference": "^1.0.0",
|
|
1237
|
+
"devlop": "^1.0.0",
|
|
1238
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
1239
|
+
"micromark-factory-space": "^2.0.0",
|
|
1240
|
+
"micromark-util-character": "^2.0.0",
|
|
1241
|
+
"micromark-util-chunked": "^2.0.0",
|
|
1242
|
+
"micromark-util-combine-extensions": "^2.0.0",
|
|
1243
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
1244
|
+
"micromark-util-encode": "^2.0.0",
|
|
1245
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
1246
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
1247
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
1248
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
1249
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1250
|
+
"micromark-util-types": "^2.0.0"
|
|
1251
|
+
}
|
|
1252
|
+
},
|
|
1253
|
+
"node_modules/micromark-core-commonmark": {
|
|
1254
|
+
"version": "2.0.3",
|
|
1255
|
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
|
|
1256
|
+
"integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
|
|
1257
|
+
"funding": [
|
|
1258
|
+
{
|
|
1259
|
+
"type": "GitHub Sponsors",
|
|
1260
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"type": "OpenCollective",
|
|
1264
|
+
"url": "https://opencollective.com/unified"
|
|
1265
|
+
}
|
|
1266
|
+
],
|
|
1267
|
+
"license": "MIT",
|
|
1268
|
+
"dependencies": {
|
|
1269
|
+
"decode-named-character-reference": "^1.0.0",
|
|
1270
|
+
"devlop": "^1.0.0",
|
|
1271
|
+
"micromark-factory-destination": "^2.0.0",
|
|
1272
|
+
"micromark-factory-label": "^2.0.0",
|
|
1273
|
+
"micromark-factory-space": "^2.0.0",
|
|
1274
|
+
"micromark-factory-title": "^2.0.0",
|
|
1275
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
1276
|
+
"micromark-util-character": "^2.0.0",
|
|
1277
|
+
"micromark-util-chunked": "^2.0.0",
|
|
1278
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
1279
|
+
"micromark-util-html-tag-name": "^2.0.0",
|
|
1280
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
1281
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
1282
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
1283
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1284
|
+
"micromark-util-types": "^2.0.0"
|
|
1285
|
+
}
|
|
1286
|
+
},
|
|
1287
|
+
"node_modules/micromark-factory-destination": {
|
|
1288
|
+
"version": "2.0.1",
|
|
1289
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
|
|
1290
|
+
"integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
|
|
1291
|
+
"funding": [
|
|
1292
|
+
{
|
|
1293
|
+
"type": "GitHub Sponsors",
|
|
1294
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
"type": "OpenCollective",
|
|
1298
|
+
"url": "https://opencollective.com/unified"
|
|
1299
|
+
}
|
|
1300
|
+
],
|
|
1301
|
+
"license": "MIT",
|
|
1302
|
+
"dependencies": {
|
|
1303
|
+
"micromark-util-character": "^2.0.0",
|
|
1304
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1305
|
+
"micromark-util-types": "^2.0.0"
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1308
|
+
"node_modules/micromark-factory-label": {
|
|
1309
|
+
"version": "2.0.1",
|
|
1310
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
|
|
1311
|
+
"integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
|
|
1312
|
+
"funding": [
|
|
1313
|
+
{
|
|
1314
|
+
"type": "GitHub Sponsors",
|
|
1315
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"type": "OpenCollective",
|
|
1319
|
+
"url": "https://opencollective.com/unified"
|
|
1320
|
+
}
|
|
1321
|
+
],
|
|
1322
|
+
"license": "MIT",
|
|
1323
|
+
"dependencies": {
|
|
1324
|
+
"devlop": "^1.0.0",
|
|
1325
|
+
"micromark-util-character": "^2.0.0",
|
|
1326
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1327
|
+
"micromark-util-types": "^2.0.0"
|
|
1328
|
+
}
|
|
1329
|
+
},
|
|
1330
|
+
"node_modules/micromark-factory-space": {
|
|
1331
|
+
"version": "2.0.1",
|
|
1332
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
|
|
1333
|
+
"integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
|
|
1334
|
+
"funding": [
|
|
1335
|
+
{
|
|
1336
|
+
"type": "GitHub Sponsors",
|
|
1337
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
"type": "OpenCollective",
|
|
1341
|
+
"url": "https://opencollective.com/unified"
|
|
1342
|
+
}
|
|
1343
|
+
],
|
|
1344
|
+
"license": "MIT",
|
|
1345
|
+
"dependencies": {
|
|
1346
|
+
"micromark-util-character": "^2.0.0",
|
|
1347
|
+
"micromark-util-types": "^2.0.0"
|
|
1348
|
+
}
|
|
1349
|
+
},
|
|
1350
|
+
"node_modules/micromark-factory-title": {
|
|
1351
|
+
"version": "2.0.1",
|
|
1352
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
|
|
1353
|
+
"integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
|
|
1354
|
+
"funding": [
|
|
1355
|
+
{
|
|
1356
|
+
"type": "GitHub Sponsors",
|
|
1357
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"type": "OpenCollective",
|
|
1361
|
+
"url": "https://opencollective.com/unified"
|
|
1362
|
+
}
|
|
1363
|
+
],
|
|
1364
|
+
"license": "MIT",
|
|
1365
|
+
"dependencies": {
|
|
1366
|
+
"micromark-factory-space": "^2.0.0",
|
|
1367
|
+
"micromark-util-character": "^2.0.0",
|
|
1368
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1369
|
+
"micromark-util-types": "^2.0.0"
|
|
1370
|
+
}
|
|
1371
|
+
},
|
|
1372
|
+
"node_modules/micromark-factory-whitespace": {
|
|
1373
|
+
"version": "2.0.1",
|
|
1374
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
|
|
1375
|
+
"integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
|
|
1376
|
+
"funding": [
|
|
1377
|
+
{
|
|
1378
|
+
"type": "GitHub Sponsors",
|
|
1379
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"type": "OpenCollective",
|
|
1383
|
+
"url": "https://opencollective.com/unified"
|
|
1384
|
+
}
|
|
1385
|
+
],
|
|
1386
|
+
"license": "MIT",
|
|
1387
|
+
"dependencies": {
|
|
1388
|
+
"micromark-factory-space": "^2.0.0",
|
|
1389
|
+
"micromark-util-character": "^2.0.0",
|
|
1390
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1391
|
+
"micromark-util-types": "^2.0.0"
|
|
1392
|
+
}
|
|
1393
|
+
},
|
|
1394
|
+
"node_modules/micromark-util-character": {
|
|
1395
|
+
"version": "2.1.1",
|
|
1396
|
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
|
|
1397
|
+
"integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
|
|
1398
|
+
"funding": [
|
|
1399
|
+
{
|
|
1400
|
+
"type": "GitHub Sponsors",
|
|
1401
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
"type": "OpenCollective",
|
|
1405
|
+
"url": "https://opencollective.com/unified"
|
|
1406
|
+
}
|
|
1407
|
+
],
|
|
1408
|
+
"license": "MIT",
|
|
1409
|
+
"dependencies": {
|
|
1410
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1411
|
+
"micromark-util-types": "^2.0.0"
|
|
1412
|
+
}
|
|
1413
|
+
},
|
|
1414
|
+
"node_modules/micromark-util-chunked": {
|
|
1415
|
+
"version": "2.0.1",
|
|
1416
|
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
|
|
1417
|
+
"integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
|
|
1418
|
+
"funding": [
|
|
1419
|
+
{
|
|
1420
|
+
"type": "GitHub Sponsors",
|
|
1421
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"type": "OpenCollective",
|
|
1425
|
+
"url": "https://opencollective.com/unified"
|
|
1426
|
+
}
|
|
1427
|
+
],
|
|
1428
|
+
"license": "MIT",
|
|
1429
|
+
"dependencies": {
|
|
1430
|
+
"micromark-util-symbol": "^2.0.0"
|
|
1431
|
+
}
|
|
1432
|
+
},
|
|
1433
|
+
"node_modules/micromark-util-classify-character": {
|
|
1434
|
+
"version": "2.0.1",
|
|
1435
|
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
|
|
1436
|
+
"integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
|
|
1437
|
+
"funding": [
|
|
1438
|
+
{
|
|
1439
|
+
"type": "GitHub Sponsors",
|
|
1440
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
"type": "OpenCollective",
|
|
1444
|
+
"url": "https://opencollective.com/unified"
|
|
1445
|
+
}
|
|
1446
|
+
],
|
|
1447
|
+
"license": "MIT",
|
|
1448
|
+
"dependencies": {
|
|
1449
|
+
"micromark-util-character": "^2.0.0",
|
|
1450
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1451
|
+
"micromark-util-types": "^2.0.0"
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
"node_modules/micromark-util-combine-extensions": {
|
|
1455
|
+
"version": "2.0.1",
|
|
1456
|
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
|
|
1457
|
+
"integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
|
|
1458
|
+
"funding": [
|
|
1459
|
+
{
|
|
1460
|
+
"type": "GitHub Sponsors",
|
|
1461
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"type": "OpenCollective",
|
|
1465
|
+
"url": "https://opencollective.com/unified"
|
|
1466
|
+
}
|
|
1467
|
+
],
|
|
1468
|
+
"license": "MIT",
|
|
1469
|
+
"dependencies": {
|
|
1470
|
+
"micromark-util-chunked": "^2.0.0",
|
|
1471
|
+
"micromark-util-types": "^2.0.0"
|
|
1472
|
+
}
|
|
1473
|
+
},
|
|
1474
|
+
"node_modules/micromark-util-decode-numeric-character-reference": {
|
|
1475
|
+
"version": "2.0.2",
|
|
1476
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
|
|
1477
|
+
"integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
|
|
1478
|
+
"funding": [
|
|
1479
|
+
{
|
|
1480
|
+
"type": "GitHub Sponsors",
|
|
1481
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"type": "OpenCollective",
|
|
1485
|
+
"url": "https://opencollective.com/unified"
|
|
1486
|
+
}
|
|
1487
|
+
],
|
|
1488
|
+
"license": "MIT",
|
|
1489
|
+
"dependencies": {
|
|
1490
|
+
"micromark-util-symbol": "^2.0.0"
|
|
1491
|
+
}
|
|
1492
|
+
},
|
|
1493
|
+
"node_modules/micromark-util-decode-string": {
|
|
1494
|
+
"version": "2.0.1",
|
|
1495
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
|
|
1496
|
+
"integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
|
|
1497
|
+
"funding": [
|
|
1498
|
+
{
|
|
1499
|
+
"type": "GitHub Sponsors",
|
|
1500
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
"type": "OpenCollective",
|
|
1504
|
+
"url": "https://opencollective.com/unified"
|
|
1505
|
+
}
|
|
1506
|
+
],
|
|
1507
|
+
"license": "MIT",
|
|
1508
|
+
"dependencies": {
|
|
1509
|
+
"decode-named-character-reference": "^1.0.0",
|
|
1510
|
+
"micromark-util-character": "^2.0.0",
|
|
1511
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
1512
|
+
"micromark-util-symbol": "^2.0.0"
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1515
|
+
"node_modules/micromark-util-encode": {
|
|
1516
|
+
"version": "2.0.1",
|
|
1517
|
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
|
|
1518
|
+
"integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
|
|
1519
|
+
"funding": [
|
|
1520
|
+
{
|
|
1521
|
+
"type": "GitHub Sponsors",
|
|
1522
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
"type": "OpenCollective",
|
|
1526
|
+
"url": "https://opencollective.com/unified"
|
|
1527
|
+
}
|
|
1528
|
+
],
|
|
1529
|
+
"license": "MIT"
|
|
1530
|
+
},
|
|
1531
|
+
"node_modules/micromark-util-html-tag-name": {
|
|
1532
|
+
"version": "2.0.1",
|
|
1533
|
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
|
|
1534
|
+
"integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
|
|
1535
|
+
"funding": [
|
|
1536
|
+
{
|
|
1537
|
+
"type": "GitHub Sponsors",
|
|
1538
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"type": "OpenCollective",
|
|
1542
|
+
"url": "https://opencollective.com/unified"
|
|
1543
|
+
}
|
|
1544
|
+
],
|
|
1545
|
+
"license": "MIT"
|
|
1546
|
+
},
|
|
1547
|
+
"node_modules/micromark-util-normalize-identifier": {
|
|
1548
|
+
"version": "2.0.1",
|
|
1549
|
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
|
|
1550
|
+
"integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
|
|
1551
|
+
"funding": [
|
|
1552
|
+
{
|
|
1553
|
+
"type": "GitHub Sponsors",
|
|
1554
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"type": "OpenCollective",
|
|
1558
|
+
"url": "https://opencollective.com/unified"
|
|
1559
|
+
}
|
|
1560
|
+
],
|
|
1561
|
+
"license": "MIT",
|
|
1562
|
+
"dependencies": {
|
|
1563
|
+
"micromark-util-symbol": "^2.0.0"
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
"node_modules/micromark-util-resolve-all": {
|
|
1567
|
+
"version": "2.0.1",
|
|
1568
|
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
|
|
1569
|
+
"integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
|
|
1570
|
+
"funding": [
|
|
1571
|
+
{
|
|
1572
|
+
"type": "GitHub Sponsors",
|
|
1573
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"type": "OpenCollective",
|
|
1577
|
+
"url": "https://opencollective.com/unified"
|
|
1578
|
+
}
|
|
1579
|
+
],
|
|
1580
|
+
"license": "MIT",
|
|
1581
|
+
"dependencies": {
|
|
1582
|
+
"micromark-util-types": "^2.0.0"
|
|
1583
|
+
}
|
|
1584
|
+
},
|
|
1585
|
+
"node_modules/micromark-util-sanitize-uri": {
|
|
1586
|
+
"version": "2.0.1",
|
|
1587
|
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
|
|
1588
|
+
"integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
|
|
1589
|
+
"funding": [
|
|
1590
|
+
{
|
|
1591
|
+
"type": "GitHub Sponsors",
|
|
1592
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"type": "OpenCollective",
|
|
1596
|
+
"url": "https://opencollective.com/unified"
|
|
1597
|
+
}
|
|
1598
|
+
],
|
|
1599
|
+
"license": "MIT",
|
|
1600
|
+
"dependencies": {
|
|
1601
|
+
"micromark-util-character": "^2.0.0",
|
|
1602
|
+
"micromark-util-encode": "^2.0.0",
|
|
1603
|
+
"micromark-util-symbol": "^2.0.0"
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1606
|
+
"node_modules/micromark-util-subtokenize": {
|
|
1607
|
+
"version": "2.1.0",
|
|
1608
|
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
|
|
1609
|
+
"integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
|
|
1610
|
+
"funding": [
|
|
1611
|
+
{
|
|
1612
|
+
"type": "GitHub Sponsors",
|
|
1613
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"type": "OpenCollective",
|
|
1617
|
+
"url": "https://opencollective.com/unified"
|
|
1618
|
+
}
|
|
1619
|
+
],
|
|
1620
|
+
"license": "MIT",
|
|
1621
|
+
"dependencies": {
|
|
1622
|
+
"devlop": "^1.0.0",
|
|
1623
|
+
"micromark-util-chunked": "^2.0.0",
|
|
1624
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1625
|
+
"micromark-util-types": "^2.0.0"
|
|
1626
|
+
}
|
|
1627
|
+
},
|
|
1628
|
+
"node_modules/micromark-util-symbol": {
|
|
1629
|
+
"version": "2.0.1",
|
|
1630
|
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
|
|
1631
|
+
"integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
|
|
1632
|
+
"funding": [
|
|
1633
|
+
{
|
|
1634
|
+
"type": "GitHub Sponsors",
|
|
1635
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"type": "OpenCollective",
|
|
1639
|
+
"url": "https://opencollective.com/unified"
|
|
1640
|
+
}
|
|
1641
|
+
],
|
|
1642
|
+
"license": "MIT"
|
|
1643
|
+
},
|
|
1644
|
+
"node_modules/micromark-util-types": {
|
|
1645
|
+
"version": "2.0.2",
|
|
1646
|
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
|
|
1647
|
+
"integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
|
|
1648
|
+
"funding": [
|
|
1649
|
+
{
|
|
1650
|
+
"type": "GitHub Sponsors",
|
|
1651
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1652
|
+
},
|
|
1653
|
+
{
|
|
1654
|
+
"type": "OpenCollective",
|
|
1655
|
+
"url": "https://opencollective.com/unified"
|
|
1656
|
+
}
|
|
1657
|
+
],
|
|
1658
|
+
"license": "MIT"
|
|
1659
|
+
},
|
|
1660
|
+
"node_modules/ms": {
|
|
1661
|
+
"version": "2.1.3",
|
|
1662
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1663
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1664
|
+
"license": "MIT"
|
|
1665
|
+
},
|
|
1666
|
+
"node_modules/nanoid": {
|
|
1667
|
+
"version": "3.3.11",
|
|
1668
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
1669
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
1670
|
+
"funding": [
|
|
1671
|
+
{
|
|
1672
|
+
"type": "github",
|
|
1673
|
+
"url": "https://github.com/sponsors/ai"
|
|
1674
|
+
}
|
|
1675
|
+
],
|
|
1676
|
+
"license": "MIT",
|
|
1677
|
+
"bin": {
|
|
1678
|
+
"nanoid": "bin/nanoid.cjs"
|
|
1679
|
+
},
|
|
1680
|
+
"engines": {
|
|
1681
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
"node_modules/next": {
|
|
1685
|
+
"version": "16.1.6",
|
|
1686
|
+
"resolved": "https://registry.npmjs.org/next/-/next-16.1.6.tgz",
|
|
1687
|
+
"integrity": "sha512-hkyRkcu5x/41KoqnROkfTm2pZVbKxvbZRuNvKXLRXxs3VfyO0WhY50TQS40EuKO9SW3rBj/sF3WbVwDACeMZyw==",
|
|
1688
|
+
"license": "MIT",
|
|
1689
|
+
"dependencies": {
|
|
1690
|
+
"@next/env": "16.1.6",
|
|
1691
|
+
"@swc/helpers": "0.5.15",
|
|
1692
|
+
"baseline-browser-mapping": "^2.8.3",
|
|
1693
|
+
"caniuse-lite": "^1.0.30001579",
|
|
1694
|
+
"postcss": "8.4.31",
|
|
1695
|
+
"styled-jsx": "5.1.6"
|
|
1696
|
+
},
|
|
1697
|
+
"bin": {
|
|
1698
|
+
"next": "dist/bin/next"
|
|
1699
|
+
},
|
|
1700
|
+
"engines": {
|
|
1701
|
+
"node": ">=20.9.0"
|
|
1702
|
+
},
|
|
1703
|
+
"optionalDependencies": {
|
|
1704
|
+
"@next/swc-darwin-arm64": "16.1.6",
|
|
1705
|
+
"@next/swc-darwin-x64": "16.1.6",
|
|
1706
|
+
"@next/swc-linux-arm64-gnu": "16.1.6",
|
|
1707
|
+
"@next/swc-linux-arm64-musl": "16.1.6",
|
|
1708
|
+
"@next/swc-linux-x64-gnu": "16.1.6",
|
|
1709
|
+
"@next/swc-linux-x64-musl": "16.1.6",
|
|
1710
|
+
"@next/swc-win32-arm64-msvc": "16.1.6",
|
|
1711
|
+
"@next/swc-win32-x64-msvc": "16.1.6",
|
|
1712
|
+
"sharp": "^0.34.4"
|
|
1713
|
+
},
|
|
1714
|
+
"peerDependencies": {
|
|
1715
|
+
"@opentelemetry/api": "^1.1.0",
|
|
1716
|
+
"@playwright/test": "^1.51.1",
|
|
1717
|
+
"babel-plugin-react-compiler": "*",
|
|
1718
|
+
"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
1719
|
+
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
1720
|
+
"sass": "^1.3.0"
|
|
1721
|
+
},
|
|
1722
|
+
"peerDependenciesMeta": {
|
|
1723
|
+
"@opentelemetry/api": {
|
|
1724
|
+
"optional": true
|
|
1725
|
+
},
|
|
1726
|
+
"@playwright/test": {
|
|
1727
|
+
"optional": true
|
|
1728
|
+
},
|
|
1729
|
+
"babel-plugin-react-compiler": {
|
|
1730
|
+
"optional": true
|
|
1731
|
+
},
|
|
1732
|
+
"sass": {
|
|
1733
|
+
"optional": true
|
|
1734
|
+
}
|
|
1735
|
+
}
|
|
1736
|
+
},
|
|
1737
|
+
"node_modules/parse-entities": {
|
|
1738
|
+
"version": "4.0.2",
|
|
1739
|
+
"resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
|
|
1740
|
+
"integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
|
|
1741
|
+
"license": "MIT",
|
|
1742
|
+
"dependencies": {
|
|
1743
|
+
"@types/unist": "^2.0.0",
|
|
1744
|
+
"character-entities-legacy": "^3.0.0",
|
|
1745
|
+
"character-reference-invalid": "^2.0.0",
|
|
1746
|
+
"decode-named-character-reference": "^1.0.0",
|
|
1747
|
+
"is-alphanumerical": "^2.0.0",
|
|
1748
|
+
"is-decimal": "^2.0.0",
|
|
1749
|
+
"is-hexadecimal": "^2.0.0"
|
|
1750
|
+
},
|
|
1751
|
+
"funding": {
|
|
1752
|
+
"type": "github",
|
|
1753
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1754
|
+
}
|
|
1755
|
+
},
|
|
1756
|
+
"node_modules/parse-entities/node_modules/@types/unist": {
|
|
1757
|
+
"version": "2.0.11",
|
|
1758
|
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
|
|
1759
|
+
"integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
|
|
1760
|
+
"license": "MIT"
|
|
1761
|
+
},
|
|
1762
|
+
"node_modules/picocolors": {
|
|
1763
|
+
"version": "1.1.1",
|
|
1764
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
1765
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1766
|
+
"license": "ISC"
|
|
1767
|
+
},
|
|
1768
|
+
"node_modules/postcss": {
|
|
1769
|
+
"version": "8.4.31",
|
|
1770
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
|
|
1771
|
+
"integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
|
|
1772
|
+
"funding": [
|
|
1773
|
+
{
|
|
1774
|
+
"type": "opencollective",
|
|
1775
|
+
"url": "https://opencollective.com/postcss/"
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"type": "tidelift",
|
|
1779
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
"type": "github",
|
|
1783
|
+
"url": "https://github.com/sponsors/ai"
|
|
1784
|
+
}
|
|
1785
|
+
],
|
|
1786
|
+
"license": "MIT",
|
|
1787
|
+
"dependencies": {
|
|
1788
|
+
"nanoid": "^3.3.6",
|
|
1789
|
+
"picocolors": "^1.0.0",
|
|
1790
|
+
"source-map-js": "^1.0.2"
|
|
1791
|
+
},
|
|
1792
|
+
"engines": {
|
|
1793
|
+
"node": "^10 || ^12 || >=14"
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
"node_modules/property-information": {
|
|
1797
|
+
"version": "7.1.0",
|
|
1798
|
+
"resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz",
|
|
1799
|
+
"integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==",
|
|
1800
|
+
"license": "MIT",
|
|
1801
|
+
"funding": {
|
|
1802
|
+
"type": "github",
|
|
1803
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1804
|
+
}
|
|
1805
|
+
},
|
|
1806
|
+
"node_modules/react": {
|
|
1807
|
+
"version": "19.2.4",
|
|
1808
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
|
|
1809
|
+
"integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
|
|
1810
|
+
"license": "MIT",
|
|
1811
|
+
"engines": {
|
|
1812
|
+
"node": ">=0.10.0"
|
|
1813
|
+
}
|
|
1814
|
+
},
|
|
1815
|
+
"node_modules/react-dom": {
|
|
1816
|
+
"version": "19.2.4",
|
|
1817
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
|
|
1818
|
+
"integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
|
|
1819
|
+
"license": "MIT",
|
|
1820
|
+
"dependencies": {
|
|
1821
|
+
"scheduler": "^0.27.0"
|
|
1822
|
+
},
|
|
1823
|
+
"peerDependencies": {
|
|
1824
|
+
"react": "^19.2.4"
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1827
|
+
"node_modules/react-markdown": {
|
|
1828
|
+
"version": "10.1.0",
|
|
1829
|
+
"resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz",
|
|
1830
|
+
"integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==",
|
|
1831
|
+
"license": "MIT",
|
|
1832
|
+
"dependencies": {
|
|
1833
|
+
"@types/hast": "^3.0.0",
|
|
1834
|
+
"@types/mdast": "^4.0.0",
|
|
1835
|
+
"devlop": "^1.0.0",
|
|
1836
|
+
"hast-util-to-jsx-runtime": "^2.0.0",
|
|
1837
|
+
"html-url-attributes": "^3.0.0",
|
|
1838
|
+
"mdast-util-to-hast": "^13.0.0",
|
|
1839
|
+
"remark-parse": "^11.0.0",
|
|
1840
|
+
"remark-rehype": "^11.0.0",
|
|
1841
|
+
"unified": "^11.0.0",
|
|
1842
|
+
"unist-util-visit": "^5.0.0",
|
|
1843
|
+
"vfile": "^6.0.0"
|
|
1844
|
+
},
|
|
1845
|
+
"funding": {
|
|
1846
|
+
"type": "opencollective",
|
|
1847
|
+
"url": "https://opencollective.com/unified"
|
|
1848
|
+
},
|
|
1849
|
+
"peerDependencies": {
|
|
1850
|
+
"@types/react": ">=18",
|
|
1851
|
+
"react": ">=18"
|
|
1852
|
+
}
|
|
1853
|
+
},
|
|
1854
|
+
"node_modules/remark-parse": {
|
|
1855
|
+
"version": "11.0.0",
|
|
1856
|
+
"resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
|
|
1857
|
+
"integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
|
|
1858
|
+
"license": "MIT",
|
|
1859
|
+
"dependencies": {
|
|
1860
|
+
"@types/mdast": "^4.0.0",
|
|
1861
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
1862
|
+
"micromark-util-types": "^2.0.0",
|
|
1863
|
+
"unified": "^11.0.0"
|
|
1864
|
+
},
|
|
1865
|
+
"funding": {
|
|
1866
|
+
"type": "opencollective",
|
|
1867
|
+
"url": "https://opencollective.com/unified"
|
|
1868
|
+
}
|
|
1869
|
+
},
|
|
1870
|
+
"node_modules/remark-rehype": {
|
|
1871
|
+
"version": "11.1.2",
|
|
1872
|
+
"resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
|
|
1873
|
+
"integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
|
|
1874
|
+
"license": "MIT",
|
|
1875
|
+
"dependencies": {
|
|
1876
|
+
"@types/hast": "^3.0.0",
|
|
1877
|
+
"@types/mdast": "^4.0.0",
|
|
1878
|
+
"mdast-util-to-hast": "^13.0.0",
|
|
1879
|
+
"unified": "^11.0.0",
|
|
1880
|
+
"vfile": "^6.0.0"
|
|
1881
|
+
},
|
|
1882
|
+
"funding": {
|
|
1883
|
+
"type": "opencollective",
|
|
1884
|
+
"url": "https://opencollective.com/unified"
|
|
1885
|
+
}
|
|
1886
|
+
},
|
|
1887
|
+
"node_modules/scheduler": {
|
|
1888
|
+
"version": "0.27.0",
|
|
1889
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
|
|
1890
|
+
"integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
|
|
1891
|
+
"license": "MIT"
|
|
1892
|
+
},
|
|
1893
|
+
"node_modules/semver": {
|
|
1894
|
+
"version": "7.7.4",
|
|
1895
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
|
1896
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
1897
|
+
"license": "ISC",
|
|
1898
|
+
"optional": true,
|
|
1899
|
+
"bin": {
|
|
1900
|
+
"semver": "bin/semver.js"
|
|
1901
|
+
},
|
|
1902
|
+
"engines": {
|
|
1903
|
+
"node": ">=10"
|
|
1904
|
+
}
|
|
1905
|
+
},
|
|
1906
|
+
"node_modules/sharp": {
|
|
1907
|
+
"version": "0.34.5",
|
|
1908
|
+
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
|
|
1909
|
+
"integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
|
|
1910
|
+
"hasInstallScript": true,
|
|
1911
|
+
"license": "Apache-2.0",
|
|
1912
|
+
"optional": true,
|
|
1913
|
+
"dependencies": {
|
|
1914
|
+
"@img/colour": "^1.0.0",
|
|
1915
|
+
"detect-libc": "^2.1.2",
|
|
1916
|
+
"semver": "^7.7.3"
|
|
1917
|
+
},
|
|
1918
|
+
"engines": {
|
|
1919
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1920
|
+
},
|
|
1921
|
+
"funding": {
|
|
1922
|
+
"url": "https://opencollective.com/libvips"
|
|
1923
|
+
},
|
|
1924
|
+
"optionalDependencies": {
|
|
1925
|
+
"@img/sharp-darwin-arm64": "0.34.5",
|
|
1926
|
+
"@img/sharp-darwin-x64": "0.34.5",
|
|
1927
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4",
|
|
1928
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4",
|
|
1929
|
+
"@img/sharp-libvips-linux-arm": "1.2.4",
|
|
1930
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4",
|
|
1931
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4",
|
|
1932
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4",
|
|
1933
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4",
|
|
1934
|
+
"@img/sharp-libvips-linux-x64": "1.2.4",
|
|
1935
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
|
|
1936
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4",
|
|
1937
|
+
"@img/sharp-linux-arm": "0.34.5",
|
|
1938
|
+
"@img/sharp-linux-arm64": "0.34.5",
|
|
1939
|
+
"@img/sharp-linux-ppc64": "0.34.5",
|
|
1940
|
+
"@img/sharp-linux-riscv64": "0.34.5",
|
|
1941
|
+
"@img/sharp-linux-s390x": "0.34.5",
|
|
1942
|
+
"@img/sharp-linux-x64": "0.34.5",
|
|
1943
|
+
"@img/sharp-linuxmusl-arm64": "0.34.5",
|
|
1944
|
+
"@img/sharp-linuxmusl-x64": "0.34.5",
|
|
1945
|
+
"@img/sharp-wasm32": "0.34.5",
|
|
1946
|
+
"@img/sharp-win32-arm64": "0.34.5",
|
|
1947
|
+
"@img/sharp-win32-ia32": "0.34.5",
|
|
1948
|
+
"@img/sharp-win32-x64": "0.34.5"
|
|
1949
|
+
}
|
|
1950
|
+
},
|
|
1951
|
+
"node_modules/source-map-js": {
|
|
1952
|
+
"version": "1.2.1",
|
|
1953
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1954
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1955
|
+
"license": "BSD-3-Clause",
|
|
1956
|
+
"engines": {
|
|
1957
|
+
"node": ">=0.10.0"
|
|
1958
|
+
}
|
|
1959
|
+
},
|
|
1960
|
+
"node_modules/space-separated-tokens": {
|
|
1961
|
+
"version": "2.0.2",
|
|
1962
|
+
"resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
|
|
1963
|
+
"integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
|
|
1964
|
+
"license": "MIT",
|
|
1965
|
+
"funding": {
|
|
1966
|
+
"type": "github",
|
|
1967
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1968
|
+
}
|
|
1969
|
+
},
|
|
1970
|
+
"node_modules/stringify-entities": {
|
|
1971
|
+
"version": "4.0.4",
|
|
1972
|
+
"resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
|
|
1973
|
+
"integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
|
|
1974
|
+
"license": "MIT",
|
|
1975
|
+
"dependencies": {
|
|
1976
|
+
"character-entities-html4": "^2.0.0",
|
|
1977
|
+
"character-entities-legacy": "^3.0.0"
|
|
1978
|
+
},
|
|
1979
|
+
"funding": {
|
|
1980
|
+
"type": "github",
|
|
1981
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1982
|
+
}
|
|
1983
|
+
},
|
|
1984
|
+
"node_modules/style-to-js": {
|
|
1985
|
+
"version": "1.1.21",
|
|
1986
|
+
"resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
|
|
1987
|
+
"integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
|
|
1988
|
+
"license": "MIT",
|
|
1989
|
+
"dependencies": {
|
|
1990
|
+
"style-to-object": "1.0.14"
|
|
1991
|
+
}
|
|
1992
|
+
},
|
|
1993
|
+
"node_modules/style-to-object": {
|
|
1994
|
+
"version": "1.0.14",
|
|
1995
|
+
"resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
|
|
1996
|
+
"integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
|
|
1997
|
+
"license": "MIT",
|
|
1998
|
+
"dependencies": {
|
|
1999
|
+
"inline-style-parser": "0.2.7"
|
|
2000
|
+
}
|
|
2001
|
+
},
|
|
2002
|
+
"node_modules/styled-jsx": {
|
|
2003
|
+
"version": "5.1.6",
|
|
2004
|
+
"resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
|
|
2005
|
+
"integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
|
|
2006
|
+
"license": "MIT",
|
|
2007
|
+
"dependencies": {
|
|
2008
|
+
"client-only": "0.0.1"
|
|
2009
|
+
},
|
|
2010
|
+
"engines": {
|
|
2011
|
+
"node": ">= 12.0.0"
|
|
2012
|
+
},
|
|
2013
|
+
"peerDependencies": {
|
|
2014
|
+
"react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
|
|
2015
|
+
},
|
|
2016
|
+
"peerDependenciesMeta": {
|
|
2017
|
+
"@babel/core": {
|
|
2018
|
+
"optional": true
|
|
2019
|
+
},
|
|
2020
|
+
"babel-plugin-macros": {
|
|
2021
|
+
"optional": true
|
|
2022
|
+
}
|
|
2023
|
+
}
|
|
2024
|
+
},
|
|
2025
|
+
"node_modules/trim-lines": {
|
|
2026
|
+
"version": "3.0.1",
|
|
2027
|
+
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
|
|
2028
|
+
"integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
|
|
2029
|
+
"license": "MIT",
|
|
2030
|
+
"funding": {
|
|
2031
|
+
"type": "github",
|
|
2032
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
2033
|
+
}
|
|
2034
|
+
},
|
|
2035
|
+
"node_modules/trough": {
|
|
2036
|
+
"version": "2.2.0",
|
|
2037
|
+
"resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
|
|
2038
|
+
"integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
|
|
2039
|
+
"license": "MIT",
|
|
2040
|
+
"funding": {
|
|
2041
|
+
"type": "github",
|
|
2042
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
2043
|
+
}
|
|
2044
|
+
},
|
|
2045
|
+
"node_modules/tslib": {
|
|
2046
|
+
"version": "2.8.1",
|
|
2047
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2048
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2049
|
+
"license": "0BSD"
|
|
2050
|
+
},
|
|
2051
|
+
"node_modules/typescript": {
|
|
2052
|
+
"version": "5.9.3",
|
|
2053
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
2054
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
2055
|
+
"dev": true,
|
|
2056
|
+
"license": "Apache-2.0",
|
|
2057
|
+
"bin": {
|
|
2058
|
+
"tsc": "bin/tsc",
|
|
2059
|
+
"tsserver": "bin/tsserver"
|
|
2060
|
+
},
|
|
2061
|
+
"engines": {
|
|
2062
|
+
"node": ">=14.17"
|
|
2063
|
+
}
|
|
2064
|
+
},
|
|
2065
|
+
"node_modules/undici-types": {
|
|
2066
|
+
"version": "6.21.0",
|
|
2067
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
2068
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
2069
|
+
"dev": true,
|
|
2070
|
+
"license": "MIT"
|
|
2071
|
+
},
|
|
2072
|
+
"node_modules/unified": {
|
|
2073
|
+
"version": "11.0.5",
|
|
2074
|
+
"resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
|
|
2075
|
+
"integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
|
|
2076
|
+
"license": "MIT",
|
|
2077
|
+
"dependencies": {
|
|
2078
|
+
"@types/unist": "^3.0.0",
|
|
2079
|
+
"bail": "^2.0.0",
|
|
2080
|
+
"devlop": "^1.0.0",
|
|
2081
|
+
"extend": "^3.0.0",
|
|
2082
|
+
"is-plain-obj": "^4.0.0",
|
|
2083
|
+
"trough": "^2.0.0",
|
|
2084
|
+
"vfile": "^6.0.0"
|
|
2085
|
+
},
|
|
2086
|
+
"funding": {
|
|
2087
|
+
"type": "opencollective",
|
|
2088
|
+
"url": "https://opencollective.com/unified"
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2091
|
+
"node_modules/unist-util-is": {
|
|
2092
|
+
"version": "6.0.1",
|
|
2093
|
+
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
|
|
2094
|
+
"integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
|
|
2095
|
+
"license": "MIT",
|
|
2096
|
+
"dependencies": {
|
|
2097
|
+
"@types/unist": "^3.0.0"
|
|
2098
|
+
},
|
|
2099
|
+
"funding": {
|
|
2100
|
+
"type": "opencollective",
|
|
2101
|
+
"url": "https://opencollective.com/unified"
|
|
2102
|
+
}
|
|
2103
|
+
},
|
|
2104
|
+
"node_modules/unist-util-position": {
|
|
2105
|
+
"version": "5.0.0",
|
|
2106
|
+
"resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
|
|
2107
|
+
"integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
|
|
2108
|
+
"license": "MIT",
|
|
2109
|
+
"dependencies": {
|
|
2110
|
+
"@types/unist": "^3.0.0"
|
|
2111
|
+
},
|
|
2112
|
+
"funding": {
|
|
2113
|
+
"type": "opencollective",
|
|
2114
|
+
"url": "https://opencollective.com/unified"
|
|
2115
|
+
}
|
|
2116
|
+
},
|
|
2117
|
+
"node_modules/unist-util-stringify-position": {
|
|
2118
|
+
"version": "4.0.0",
|
|
2119
|
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
|
|
2120
|
+
"integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
|
|
2121
|
+
"license": "MIT",
|
|
2122
|
+
"dependencies": {
|
|
2123
|
+
"@types/unist": "^3.0.0"
|
|
2124
|
+
},
|
|
2125
|
+
"funding": {
|
|
2126
|
+
"type": "opencollective",
|
|
2127
|
+
"url": "https://opencollective.com/unified"
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
2130
|
+
"node_modules/unist-util-visit": {
|
|
2131
|
+
"version": "5.1.0",
|
|
2132
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
|
|
2133
|
+
"integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
|
|
2134
|
+
"license": "MIT",
|
|
2135
|
+
"dependencies": {
|
|
2136
|
+
"@types/unist": "^3.0.0",
|
|
2137
|
+
"unist-util-is": "^6.0.0",
|
|
2138
|
+
"unist-util-visit-parents": "^6.0.0"
|
|
2139
|
+
},
|
|
2140
|
+
"funding": {
|
|
2141
|
+
"type": "opencollective",
|
|
2142
|
+
"url": "https://opencollective.com/unified"
|
|
2143
|
+
}
|
|
2144
|
+
},
|
|
2145
|
+
"node_modules/unist-util-visit-parents": {
|
|
2146
|
+
"version": "6.0.2",
|
|
2147
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
|
|
2148
|
+
"integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
|
|
2149
|
+
"license": "MIT",
|
|
2150
|
+
"dependencies": {
|
|
2151
|
+
"@types/unist": "^3.0.0",
|
|
2152
|
+
"unist-util-is": "^6.0.0"
|
|
2153
|
+
},
|
|
2154
|
+
"funding": {
|
|
2155
|
+
"type": "opencollective",
|
|
2156
|
+
"url": "https://opencollective.com/unified"
|
|
2157
|
+
}
|
|
2158
|
+
},
|
|
2159
|
+
"node_modules/vfile": {
|
|
2160
|
+
"version": "6.0.3",
|
|
2161
|
+
"resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
|
|
2162
|
+
"integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
|
|
2163
|
+
"license": "MIT",
|
|
2164
|
+
"dependencies": {
|
|
2165
|
+
"@types/unist": "^3.0.0",
|
|
2166
|
+
"vfile-message": "^4.0.0"
|
|
2167
|
+
},
|
|
2168
|
+
"funding": {
|
|
2169
|
+
"type": "opencollective",
|
|
2170
|
+
"url": "https://opencollective.com/unified"
|
|
2171
|
+
}
|
|
2172
|
+
},
|
|
2173
|
+
"node_modules/vfile-message": {
|
|
2174
|
+
"version": "4.0.3",
|
|
2175
|
+
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
|
|
2176
|
+
"integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
|
|
2177
|
+
"license": "MIT",
|
|
2178
|
+
"dependencies": {
|
|
2179
|
+
"@types/unist": "^3.0.0",
|
|
2180
|
+
"unist-util-stringify-position": "^4.0.0"
|
|
2181
|
+
},
|
|
2182
|
+
"funding": {
|
|
2183
|
+
"type": "opencollective",
|
|
2184
|
+
"url": "https://opencollective.com/unified"
|
|
2185
|
+
}
|
|
2186
|
+
},
|
|
2187
|
+
"node_modules/zwitch": {
|
|
2188
|
+
"version": "2.0.4",
|
|
2189
|
+
"resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
|
|
2190
|
+
"integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
|
|
2191
|
+
"license": "MIT",
|
|
2192
|
+
"funding": {
|
|
2193
|
+
"type": "github",
|
|
2194
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
2195
|
+
}
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
}
|