@metamask-previews/platform-api-docs 0.0.0-preview-1275d0fda

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/LICENSE +6 -0
  3. package/LICENSE.APACHE2 +201 -0
  4. package/LICENSE.MIT +21 -0
  5. package/README.md +39 -0
  6. package/dist/cli.cjs +214 -0
  7. package/dist/cli.cjs.map +1 -0
  8. package/dist/cli.d.cts +3 -0
  9. package/dist/cli.d.cts.map +1 -0
  10. package/dist/cli.d.mts +3 -0
  11. package/dist/cli.d.mts.map +1 -0
  12. package/dist/cli.mjs +212 -0
  13. package/dist/cli.mjs.map +1 -0
  14. package/dist/discovery.cjs +53 -0
  15. package/dist/discovery.cjs.map +1 -0
  16. package/dist/discovery.d.cts +22 -0
  17. package/dist/discovery.d.cts.map +1 -0
  18. package/dist/discovery.d.mts +22 -0
  19. package/dist/discovery.d.mts.map +1 -0
  20. package/dist/discovery.mjs +48 -0
  21. package/dist/discovery.mjs.map +1 -0
  22. package/dist/extraction.cjs +745 -0
  23. package/dist/extraction.cjs.map +1 -0
  24. package/dist/extraction.d.cts +40 -0
  25. package/dist/extraction.d.cts.map +1 -0
  26. package/dist/extraction.d.mts +40 -0
  27. package/dist/extraction.d.mts.map +1 -0
  28. package/dist/extraction.mjs +716 -0
  29. package/dist/extraction.mjs.map +1 -0
  30. package/dist/generate.cjs +373 -0
  31. package/dist/generate.cjs.map +1 -0
  32. package/dist/generate.d.cts +37 -0
  33. package/dist/generate.d.cts.map +1 -0
  34. package/dist/generate.d.mts +37 -0
  35. package/dist/generate.d.mts.map +1 -0
  36. package/dist/generate.mjs +346 -0
  37. package/dist/generate.mjs.map +1 -0
  38. package/dist/markdown.cjs +239 -0
  39. package/dist/markdown.cjs.map +1 -0
  40. package/dist/markdown.d.cts +52 -0
  41. package/dist/markdown.d.cts.map +1 -0
  42. package/dist/markdown.d.mts +52 -0
  43. package/dist/markdown.d.mts.map +1 -0
  44. package/dist/markdown.mjs +232 -0
  45. package/dist/markdown.mjs.map +1 -0
  46. package/dist/types.cjs +3 -0
  47. package/dist/types.cjs.map +1 -0
  48. package/dist/types.d.cts +63 -0
  49. package/dist/types.d.cts.map +1 -0
  50. package/dist/types.d.mts +63 -0
  51. package/dist/types.d.mts.map +1 -0
  52. package/dist/types.mjs +2 -0
  53. package/dist/types.mjs.map +1 -0
  54. package/package.json +75 -0
  55. package/site/docusaurus.config.ts +103 -0
  56. package/site/src/css/custom.css +336 -0
  57. package/site/static/fonts/MM-Sans/MM_Sans_Mono-Regular.woff2 +0 -0
  58. package/site/static/img/favicons/favicon-96x96.png +0 -0
  59. package/site/static/img/metamask-fox.svg +12 -0
  60. package/site/static/img/metamask-logo-dark.svg +3 -0
  61. package/site/static/img/metamask-logo.svg +3 -0
  62. package/site/tsconfig.json +13 -0
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@metamask-previews/platform-api-docs",
3
+ "version": "0.0.0-preview-1275d0fda",
4
+ "description": "Produces documentation for the platform API, the set of actions and events available in the clients through the message bus",
5
+ "keywords": [
6
+ "Ethereum",
7
+ "MetaMask"
8
+ ],
9
+ "homepage": "https://github.com/MetaMask/core/tree/main/packages/platform-api-docs#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/MetaMask/core/issues"
12
+ },
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/MetaMask/core.git"
17
+ },
18
+ "bin": "./dist/cli.mjs",
19
+ "files": [
20
+ "dist/",
21
+ "site/"
22
+ ],
23
+ "sideEffects": false,
24
+ "publishConfig": {
25
+ "access": "public",
26
+ "registry": "https://registry.npmjs.org/"
27
+ },
28
+ "scripts": {
29
+ "build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
30
+ "build:all": "ts-bridge --project tsconfig.build.json --verbose --clean",
31
+ "changelog:update": "../../scripts/update-changelog.sh @metamask/platform-api-docs",
32
+ "changelog:validate": "../../scripts/validate-changelog.sh @metamask/platform-api-docs",
33
+ "cli": "tsx src/cli.ts",
34
+ "since-latest-release": "../../scripts/since-latest-release.sh",
35
+ "test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
36
+ "test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
37
+ "test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
38
+ "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
39
+ },
40
+ "dependencies": {
41
+ "@docusaurus/core": "^3.10.1",
42
+ "@docusaurus/plugin-content-docs": "^3.10.1",
43
+ "@docusaurus/preset-classic": "^3.10.1",
44
+ "@docusaurus/theme-common": "^3.10.1",
45
+ "@easyops-cn/docusaurus-search-local": "^0.55.1",
46
+ "@mdx-js/react": "^3.1.1",
47
+ "@metamask/utils": "^11.9.0",
48
+ "execa": "^5.0.0",
49
+ "glob": "^13.0.6",
50
+ "npm-which": "^3.0.1",
51
+ "prism-react-renderer": "^2.4.1",
52
+ "react": "^19.2.6",
53
+ "react-dom": "^19.2.6",
54
+ "ts-morph": "^28.0.0",
55
+ "yargs": "^17.7.2"
56
+ },
57
+ "devDependencies": {
58
+ "@docusaurus/types": "^3.10.1",
59
+ "@metamask/auto-changelog": "^6.1.0",
60
+ "@ts-bridge/cli": "^0.6.4",
61
+ "@types/jest": "^29.5.14",
62
+ "@types/node": "^16.18.54",
63
+ "@types/npm-which": "^3",
64
+ "@types/react": "^19.2.14",
65
+ "@types/yargs": "^17.0.32",
66
+ "deepmerge": "^4.2.2",
67
+ "jest": "^29.7.0",
68
+ "ts-jest": "^29.2.5",
69
+ "tsx": "^4.20.5",
70
+ "typescript": "~5.3.3"
71
+ },
72
+ "engines": {
73
+ "node": "^18.18 || >=20"
74
+ }
75
+ }
@@ -0,0 +1,103 @@
1
+ import type * as Preset from '@docusaurus/preset-classic';
2
+ import type { Config } from '@docusaurus/types';
3
+ import { themes } from 'prism-react-renderer';
4
+
5
+ const codeTheme = themes.dracula;
6
+
7
+ const projectLabel = process.env.DOCS_PROJECT_LABEL;
8
+ const commitSha = process.env.DOCS_COMMIT_SHA;
9
+ const projectSuffix = projectLabel ? ` (${projectLabel})` : '';
10
+
11
+ const config: Config = {
12
+ title: `Platform API${projectSuffix}`,
13
+ tagline: commitSha
14
+ ? `Generated from commit ${commitSha} — actions and events available for use in clients via the message bus`
15
+ : 'Actions and events available for use in clients via the message bus',
16
+ url: process.env.DOCS_URL ?? 'https://metamask.github.io',
17
+ baseUrl: process.env.DOCS_BASE_URL ?? '/',
18
+ favicon: 'img/favicons/favicon-96x96.png',
19
+
20
+ onBrokenLinks: 'warn',
21
+
22
+ markdown: {
23
+ hooks: {
24
+ onBrokenMarkdownLinks: 'warn',
25
+ },
26
+ },
27
+
28
+ i18n: {
29
+ defaultLocale: 'en',
30
+ locales: ['en'],
31
+ },
32
+
33
+ themes: [
34
+ [
35
+ '@easyops-cn/docusaurus-search-local',
36
+ {
37
+ docsRouteBasePath: '/',
38
+ hashed: true,
39
+ indexBlog: false,
40
+ highlightSearchTermsOnTargetPage: true,
41
+ },
42
+ ],
43
+ ],
44
+
45
+ presets: [
46
+ [
47
+ 'classic',
48
+ {
49
+ docs: {
50
+ routeBasePath: '/',
51
+ sidebarPath: './sidebars.ts',
52
+ breadcrumbs: false,
53
+ },
54
+ blog: false,
55
+ theme: {
56
+ customCss: './src/css/custom.css',
57
+ },
58
+ } satisfies Preset.Options,
59
+ ],
60
+ ],
61
+
62
+ themeConfig: {
63
+ colorMode: {
64
+ respectPrefersColorScheme: true,
65
+ },
66
+ navbar: {
67
+ logo: {
68
+ alt: 'MetaMask logo',
69
+ src: 'img/metamask-logo.svg',
70
+ srcDark: 'img/metamask-logo-dark.svg',
71
+ },
72
+ hideOnScroll: false,
73
+ items: [
74
+ ...(commitSha
75
+ ? [
76
+ {
77
+ label: `commit ${commitSha}`,
78
+ position: 'right' as const,
79
+ href: 'https://github.com/MetaMask/core',
80
+ },
81
+ ]
82
+ : []),
83
+ {
84
+ href: 'https://github.com/MetaMask/core',
85
+ label: 'GitHub',
86
+ position: 'right',
87
+ },
88
+ ],
89
+ },
90
+ docs: {
91
+ sidebar: {
92
+ autoCollapseCategories: false,
93
+ },
94
+ },
95
+ prism: {
96
+ theme: codeTheme,
97
+ defaultLanguage: 'typescript',
98
+ additionalLanguages: ['bash', 'json'],
99
+ },
100
+ } satisfies Preset.ThemeConfig,
101
+ };
102
+
103
+ export default config;
@@ -0,0 +1,336 @@
1
+ /*
2
+ * MetaMask-themed Docusaurus styles.
3
+ * Adapted from the MetaMask developer documentation template.
4
+ */
5
+
6
+ /* ── Fonts ──────────────────────────────────────────────────────────── */
7
+
8
+ @import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;700&display=swap');
9
+
10
+ @font-face {
11
+ font-family: 'MM Sans Mono';
12
+ src: url('../../static/fonts/MM-Sans/MM_Sans_Mono-Regular.woff2')
13
+ format('woff2');
14
+ font-weight: normal;
15
+ font-style: normal;
16
+ font-display: swap;
17
+ }
18
+
19
+ /* ── MetaMask color palette ─────────────────────────────────────────── */
20
+
21
+ :root {
22
+ /* General */
23
+ --general-white: #fff;
24
+ --general-white-off: #f7f9fc;
25
+ --general-gray-light: #e9edf6;
26
+ --general-gray: #c8ceda;
27
+ --general-gray-mid: #a1a8b7;
28
+ --general-gray-dark: #393d46;
29
+ --general-black-light: #242628;
30
+ --general-black-mid: #1b1b1b;
31
+ --general-black: #0a0a0a;
32
+
33
+ /* Developer */
34
+ --developer-purple-light: #eac2ff;
35
+ --developer-purple: #d075ff;
36
+ --developer-purple-dark: #3d065f;
37
+ --developer-green-light: #e5ffc3;
38
+ --developer-green: #baf24a;
39
+ --developer-green-dark: #013330;
40
+ --developer-blue-light: #cce7ff;
41
+ --developer-blue: #89b0ff;
42
+ --developer-orange-light: #ffa680;
43
+ --developer-orange: #ff5c16;
44
+ --developer-orange-dark: #661800;
45
+
46
+ /* Institution */
47
+ --institution-purple-dark-2: #25043a;
48
+ --institution-green-dark: #013330;
49
+ --institution-green-dark-2: #012321;
50
+
51
+ /* Consumer */
52
+ --consumer-blue-dark: #190066;
53
+ --consumer-blue-light: #cce7ff;
54
+ --consumer-green-dark: #013330;
55
+ --consumer-green-light: #e5ffc3;
56
+ --consumer-orange-dark: #661800;
57
+ --consumer-orange-light: #ffa680;
58
+ }
59
+
60
+ /* ── Light mode Infima overrides ────────────────────────────────────── */
61
+
62
+ :root {
63
+ /* Primary: purple */
64
+ --ifm-color-primary: #d075ff;
65
+ --ifm-color-primary-dark: #3d065f;
66
+ --ifm-color-primary-darker: #25043a;
67
+ --ifm-color-primary-darkest: #25043a;
68
+ --ifm-color-primary-light: #eac2ff;
69
+ --ifm-color-primary-lighter: #eac2ff;
70
+ --ifm-color-primary-lightest: #eac2ff;
71
+
72
+ --ifm-heading-color: var(--general-black);
73
+ --ifm-font-family-monospace:
74
+ 'MM Sans Mono', 'Andale Mono', AndaleMono, monospace;
75
+ --ifm-heading-font-family: var(--ifm-font-family-monospace);
76
+ --ifm-font-family-base:
77
+ 'Geist', Arial, 'Helvetica Neue', Helvetica, sans-serif;
78
+ --ifm-code-font-size: 90%;
79
+ --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
80
+
81
+ /* Links */
82
+ --ifm-link-color: var(--general-black);
83
+ --ifm-link-hover-color: var(--ifm-color-primary);
84
+
85
+ /* Sidebar */
86
+ --ifm-hover-overlay: var(--general-gray-light);
87
+ --ifm-menu-color-active: var(--general-black);
88
+ --ifm-menu-color: var(--general-gray-dark);
89
+
90
+ /* TOC */
91
+ --ifm-toc-border-color: var(--general-gray-light);
92
+ --ifm-toc-link-color: var(--general-gray-dark);
93
+ --ifm-code-background: #e6e6e6;
94
+
95
+ /* Admonitions */
96
+ --ifm-color-success: var(--developer-green-light);
97
+ --ifm-color-info: var(--developer-blue-light);
98
+ --ifm-color-warning: var(--developer-purple-light);
99
+ --ifm-color-danger: var(--developer-orange-light);
100
+
101
+ --ifm-color-secondary-contrast-background: var(--general-gray-light);
102
+ --ifm-color-secondary-contrast-foreground: var(--general-black);
103
+ --ifm-color-info-contrast-background: var(--developer-blue-light);
104
+ --ifm-color-info-contrast-foreground: var(--consumer-blue-dark);
105
+ --ifm-color-success-contrast-background: var(--developer-green-light);
106
+ --ifm-color-success-contrast-foreground: var(--consumer-green-dark);
107
+ --ifm-color-warning-contrast-background: var(--developer-orange-light);
108
+ --ifm-color-warning-contrast-foreground: var(--consumer-orange-dark);
109
+ --ifm-color-danger-contrast-background: var(--developer-orange-light);
110
+ --ifm-color-danger-contrast-foreground: var(--consumer-orange-dark);
111
+
112
+ --ifm-color-white: var(--general-white);
113
+ --ifm-color-black: var(--general-black);
114
+ --ifm-background-color: var(--general-white);
115
+
116
+ /* Buttons */
117
+ --ifm-button-border-radius: 10rem;
118
+
119
+ /* Header */
120
+ --ifm-navbar-link-hover-color: var(--developer-purple);
121
+
122
+ /* Footer */
123
+ --ifm-footer-background-color: var(--general-white);
124
+
125
+ /* Code Block */
126
+ --ifm-code-border-radius: 0;
127
+ --prism-background-color: var(--general-black-light);
128
+
129
+ /* Tables */
130
+ --ifm-table-border-color: var(--general-gray-light);
131
+ --ifm-table-head-background: var(--general-white-off);
132
+ --ifm-table-stripe-background: var(--general-white-off);
133
+ }
134
+
135
+ /* ── Dark mode Infima overrides ─────────────────────────────────────── */
136
+
137
+ [data-theme='dark'] {
138
+ /* Primary: green */
139
+ --ifm-color-primary: #baf24a;
140
+ --ifm-color-primary-dark: #013330;
141
+ --ifm-color-primary-darker: #012321;
142
+ --ifm-color-primary-darkest: #012321;
143
+ --ifm-color-primary-light: #e5ffc3;
144
+ --ifm-color-primary-lighter: #e5ffc3;
145
+ --ifm-color-primary-lightest: #e5ffc3;
146
+
147
+ --ifm-background-surface-color: var(--general-black-light) !important;
148
+
149
+ /* Links */
150
+ --ifm-link-color: var(--general-white);
151
+ --ifm-link-hover-color: var(--ifm-color-primary);
152
+
153
+ /* Sidebar */
154
+ --ifm-hover-overlay: var(--general-black-light) !important;
155
+ --ifm-menu-color-active: var(--general-white) !important;
156
+ --ifm-menu-color: var(--general-white) !important;
157
+
158
+ /* TOC */
159
+ --ifm-toc-border-color: var(--general-gray) !important;
160
+ --ifm-code-background: #4d5059;
161
+ --ifm-toc-link-color: var(--general-gray);
162
+
163
+ --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
164
+
165
+ /* Admonitions */
166
+ --ifm-color-success: var(--developer-green);
167
+ --ifm-color-info: var(--developer-blue);
168
+ --ifm-color-warning: var(--developer-purple);
169
+ --ifm-color-danger: var(--developer-orange);
170
+
171
+ --ifm-color-secondary-contrast-background: var(
172
+ --general-black-light
173
+ ) !important;
174
+ --ifm-color-info-contrast-background: var(--consumer-blue-dark) !important;
175
+ --ifm-color-info-contrast-foreground: var(--consumer-blue-light) !important;
176
+ --ifm-color-success-contrast-background: var(
177
+ --consumer-green-dark
178
+ ) !important;
179
+ --ifm-color-success-contrast-foreground: var(
180
+ --consumer-green-light
181
+ ) !important;
182
+ --ifm-color-warning-contrast-background: var(
183
+ --consumer-orange-dark
184
+ ) !important;
185
+ --ifm-color-warning-contrast-foreground: var(
186
+ --consumer-orange-light
187
+ ) !important;
188
+ --ifm-color-danger-contrast-background: var(
189
+ --consumer-orange-dark
190
+ ) !important;
191
+ --ifm-color-danger-contrast-foreground: var(
192
+ --consumer-orange-light
193
+ ) !important;
194
+
195
+ --ifm-background-color: var(--general-gray-dark);
196
+ --ifm-heading-color: var(--general-white);
197
+
198
+ /* Header */
199
+ --ifm-navbar-link-hover-color: var(--developer-green);
200
+
201
+ /* Footer */
202
+ --ifm-footer-background-color: var(--general-black-light);
203
+
204
+ /* Tables */
205
+ --ifm-table-border-color: var(--general-black-light);
206
+ --ifm-table-head-background: var(--general-black-mid);
207
+ --ifm-table-stripe-background: var(--general-black-light) !important;
208
+ }
209
+
210
+ /* ── Body & Dark mode ───────────────────────────────────────────────── */
211
+
212
+ body {
213
+ height: auto !important;
214
+ -webkit-text-size-adjust: 100%;
215
+ }
216
+
217
+ [data-theme='dark'] body {
218
+ background: var(--general-gray-dark);
219
+ color: var(--general-white);
220
+ }
221
+
222
+ /* ── Typography ─────────────────────────────────────────────────────── */
223
+
224
+ h1,
225
+ h2,
226
+ h3,
227
+ h4,
228
+ h5,
229
+ h6 {
230
+ font-family: var(--ifm-font-family-base);
231
+ font-weight: 500;
232
+ }
233
+
234
+ .alert {
235
+ border: none;
236
+ }
237
+
238
+ /* ── Navbar ──────────────────────────────────────────────────────────── */
239
+
240
+ .navbar {
241
+ box-shadow: none;
242
+ border-bottom: 1px solid var(--ifm-toc-border-color);
243
+ height: 5rem; /* 80px */
244
+ }
245
+
246
+ .navbar > .navbar__inner {
247
+ height: 100%;
248
+ }
249
+
250
+ .navbar__brand {
251
+ margin-right: 4rem;
252
+ }
253
+
254
+ .navbar__logo {
255
+ height: 3.2rem;
256
+ width: 6.5rem;
257
+ }
258
+
259
+ .navbar__title {
260
+ display: none;
261
+ }
262
+
263
+ .navbar__link {
264
+ font-size: 1.6rem;
265
+ font-weight: 500;
266
+ }
267
+
268
+ .navbar__link:hover {
269
+ text-decoration: none !important;
270
+ }
271
+
272
+ /* ── Footer ──────────────────────────────────────────────────────────── */
273
+
274
+ .footer {
275
+ border-top: 1px solid var(--general-gray-light);
276
+ padding: 4.6rem 3rem 3rem;
277
+ }
278
+
279
+ [data-theme='dark'] .footer {
280
+ border-top: 1px solid transparent;
281
+ }
282
+
283
+ .footer__logo {
284
+ max-width: 6.4rem;
285
+ margin-bottom: 1rem;
286
+ }
287
+
288
+ @media screen and (min-width: 997px) {
289
+ .footer__logo {
290
+ max-width: 12.4rem;
291
+ margin-bottom: 2rem;
292
+ }
293
+ }
294
+
295
+ .footer__copyright {
296
+ font-size: 1.2rem;
297
+ font-style: normal;
298
+ font-weight: 400;
299
+ line-height: 1.8rem;
300
+ }
301
+
302
+ [data-theme='dark'] .footer__copyright {
303
+ color: var(--general-gray);
304
+ }
305
+
306
+ /* ── Sidebar ─────────────────────────────────────────────────────────── */
307
+
308
+ html {
309
+ scroll-padding-top: 5rem;
310
+ }
311
+
312
+ /* ── Code blocks ─────────────────────────────────────────────────────── */
313
+
314
+ article h3 code {
315
+ font-size: 1rem;
316
+ }
317
+
318
+ /* ── Search ──────────────────────────────────────────────────────────── */
319
+
320
+ :root {
321
+ --search-local-highlight-color: var(--developer-purple);
322
+ --search-local-hit-active-color: var(--general-white);
323
+ --search-local-hit-background: var(--general-white);
324
+ --search-local-modal-background: var(--general-white-off);
325
+ --search-local-hit-shadow: 0 1px 3px 0 var(--general-gray);
326
+ --search-local-muted-color: var(--general-gray-mid);
327
+ }
328
+
329
+ [data-theme='dark'] {
330
+ --search-local-highlight-color: var(--developer-purple-light);
331
+ --search-local-hit-active-color: var(--general-black);
332
+ --search-local-hit-background: var(--general-black-light);
333
+ --search-local-modal-background: var(--general-gray-dark);
334
+ --search-local-hit-shadow: none;
335
+ --search-local-muted-color: var(--general-gray-mid);
336
+ }
@@ -0,0 +1,12 @@
1
+ <svg width="417" height="400" viewBox="0 0 417 400" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M374.724 0L234.039 83.696H172.161L31.4754 0L0.23845 122.444L23.9642 199.106L0 288.644L30.9985 392.489L120.179 366.021L177.168 400H229.151L286.259 366.021L375.44 392.489L406.319 288.644L382.355 199.106L405.842 124.709L374.724 0Z" fill="#0A0A0A"/>
3
+ <path d="M369.704 198.869L357.186 205.665L377.454 281.373H281.12L229.973 320.121L236.769 327.632L244.16 326.679L276.47 302.118V336.217L290.301 340.27V295.084H377.216L393.669 288.288L369.585 198.631L369.704 198.869Z" fill="#D075FF"/>
4
+ <path d="M303.884 202.453V229.875L286.238 213.303H241.529L239.383 227.133H280.754L296.611 242.155L286.715 244.54V258.727L317.475 251.216L317.714 205.553L303.884 202.334V202.453Z" fill="#D075FF"/>
5
+ <path d="M274.699 232.955H243.82L235.116 255.369L233.328 267.053L241.435 270.153L286.622 259.065H286.86V244.758L274.818 232.955H274.699ZM244.178 259.185L250.497 242.851H270.646L278.753 250.72L244.178 259.185Z" fill="#BAF24A"/>
6
+ <path d="M36.2611 198.869L48.7797 205.665L28.3923 281.373H124.845L175.993 320.121L169.197 327.632L161.805 326.679L129.495 302.118V336.217L115.665 340.27V295.084H28.7499L12.2969 288.288L36.3803 198.631L36.2611 198.869Z" fill="#D075FF"/>
7
+ <path d="M102.199 202.453V229.875L119.844 213.303H164.554L166.7 227.133H125.329L109.472 242.155L119.368 244.54V258.727L88.4883 251.216V205.553L102.199 202.334V202.453Z" fill="#D075FF"/>
8
+ <path d="M377.343 295.331L357.909 360.547L244.168 326.806L236.776 327.76L233.915 338.133L266.344 347.79L221.873 374.258H184.079L139.608 347.79L172.037 338.133L169.176 327.76L161.784 326.806L48.043 360.547L28.6093 295.331L12.1562 288.654L38.7434 377.835L121.486 353.274L180.144 388.207H225.569L284.347 353.274L367.089 377.835L393.676 288.654L377.343 295.331Z" fill="#89B0FF"/>
9
+ <path d="M393.459 122.095L366.991 18.4883L237.275 95.6269H168.839L39.1225 18.4883L12.6546 122.095L12.2969 123.168L12.6546 124.241L36.2611 198.757L48.6605 205.552H88.124L101.954 202.333L156.798 164.777L180.166 315.239L184.458 310.47H193.4L168.959 152.616L173.251 109.219H232.744L237.036 152.616L212.595 310.47H221.537L225.829 315.239L249.197 164.777L304.041 202.333L317.871 205.552H357.334L369.734 198.757L393.34 124.241L393.698 123.168L393.34 122.095H393.459ZM93.0122 191.841H48.4221L26.4847 122.81L46.9914 42.8102L151.313 151.782L92.893 191.722L93.0122 191.841ZM156.559 137.356L83.5935 61.0516L159.659 106.238L156.678 137.236L156.559 137.356ZM246.216 106.357L322.282 61.1708L249.316 137.475L246.336 106.476L246.216 106.357ZM357.334 191.961H312.863L254.443 152.02L359.003 42.9294L379.51 122.929L357.573 191.961H357.334Z" fill="#FF5C16"/>
10
+ <path d="M221.398 310.707H184.558L169.059 327.756L176.808 356.013H228.91L236.659 327.756L221.16 310.707H221.398ZM218.537 342.182H187.419L184.439 331.452L190.519 324.656H215.318L221.398 331.452L218.418 342.182H218.537Z" fill="#BAF24A"/>
11
+ <path d="M119.363 244.641V258.829H119.602L164.788 270.036L172.895 266.936L171.107 255.252L162.404 232.838H131.524L119.482 244.641H119.363ZM127.351 250.602L135.459 242.734H155.608L161.927 259.067L127.351 250.602Z" fill="#BAF24A"/>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 66 34">
2
+ <path fill="#BAF24A" d="M37.173 25.901v7.1952h-3.6845v-4.985l-4.1988.4924c-.9222.1072-1.328.4114-1.328.9716 0 .8206.7703 1.1664 2.4216 1.1664 1.0069 0 2.1222-.151 3.1074-.4114l-1.9074 2.7223c-.7703.1728-1.5211.2582-2.3131.2582-3.3417 0-5.2491-1.3393-5.2491-3.7158 0-2.0964 1.4994-3.1971 4.9062-3.5866l4.5004-.5274c-.243-1.3196-1.2303-1.8929-3.1941-1.8929-1.8423 0-3.8777.4749-5.6982 1.3611l.5793-3.219c1.6926-.7134 3.6217-1.081 5.5703-1.081 4.2856 0 6.4924 1.7944 6.4924 5.2498l-.0044.0021ZM4.02739 16.8917 0 33.0962h4.02739l1.9985-8.1427 3.46538 4.1884h4.19883l3.4654-4.1884 1.9985 8.1427h4.0273L19.154 16.8896l-7.5644 9.0596-7.56438-9.0596.00217.0021ZM19.154.685059 11.5896 9.74469 4.02739.685059 0 16.8917h4.02739l1.9985-8.14269 3.46538 4.18839h4.19883l3.4654-4.18839 1.9985 8.14269h4.0273L19.154.685059ZM46.8574 25.75l-3.257-.4748c-.8138-.1291-1.1349-.3895-1.1349-.8425 0-.7353.792-1.0592 2.4216-1.0592 1.8857 0 3.5782.3896 5.3576 1.2321l-.4492-3.1753c-1.4365-.5186-3.0856-.7768-4.7999-.7768-4.0057 0-6.1929 1.4049-6.1929 3.9324 0 1.9673 1.1999 3.068 3.7496 3.4575l3.3005.4968c.8354.1291 1.1782.4529 1.1782.9716 0 .7352-.7703 1.081-2.3348 1.081-2.0571 0-4.2856-.4968-6.1062-1.383l.3646 3.1752c1.5645.5843 3.5999.9301 5.5072.9301 4.1142 0 6.2559-1.4487 6.2559-4.02 0-2.0526-1.1999-3.1555-3.8559-3.5429l-.0044-.0022Zm5.2925-7.4118v14.758h3.6845v-14.758h-3.6845Zm7.9897 8.1252 5.1232-5.5977h-4.5851l-4.8433 5.7903 5.1644 6.438h4.6502l-5.5094-6.6327v.0021Zm-8.504-13.073c0 2.3765 1.9074 3.7158 5.2491 3.7158.792 0 1.5428-.0875 2.3131-.2582l1.9074-2.7223c-.9852.2582-2.1005.4114-3.1074.4114-1.6491 0-2.4216-.3457-2.4216-1.1664 0-.5624.4079-.8644 1.328-.9716l4.1988-.4923v4.9849h3.6845V9.69655c0-3.45754-2.2068-5.24977-6.4924-5.24977-1.9507 0-3.8776.36763-5.5702 1.08102l-.5794 3.21902c1.8206-.88627 3.856-1.36113 5.6983-1.36113 1.9638 0 2.9511.57334 3.1941 1.89289l-4.5004.52739c-3.4068.38953-4.9062 1.49023-4.9062 3.58663l.0043-.0022Zm-10.305-.7768c0 2.9827 1.7143 4.4948 5.0994 4.4948 1.3497 0 2.465-.2167 3.5348-.7134l.4708-3.2628c-1.0285.6259-2.0788.9497-3.129.9497-1.5862 0-2.2936-.6477-2.2936-2.0964V7.6636h5.5919V4.66123H45.013V2.11184l-7.0067 3.73765V7.6636h3.32v4.9478l.0043.0022Zm-3.6216-1.3612v.7353h-9.9578c.4492 1.4968 1.7837 2.1818 4.1533 2.1818 1.8856 0 3.6433-.3895 5.2056-1.1445l-.4492 3.1555c-1.4365.604-3.257.9301-5.121.9301-4.9496 0-7.649-2.2037-7.649-6.2871 0-4.08337 2.7428-6.37454 6.985-6.37454s6.8353 2.48593 6.8353 6.80564l-.0022-.0022ZM27.7035 9.47991h6.2971c-.332-1.43335-1.4235-2.18176-3.1681-2.18176s-2.7797.72871-3.129 2.18176Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 66 34">
2
+ <path fill="#0A0A0A" d="M37.173 25.901v7.1952h-3.6845v-4.985l-4.1988.4924c-.9222.1072-1.328.4114-1.328.9716 0 .8206.7703 1.1664 2.4216 1.1664 1.0069 0 2.1222-.151 3.1074-.4114l-1.9074 2.7223c-.7703.1728-1.5211.2582-2.3131.2582-3.3417 0-5.2491-1.3393-5.2491-3.7158 0-2.0964 1.4994-3.1971 4.9062-3.5866l4.5004-.5274c-.243-1.3196-1.2303-1.8929-3.1941-1.8929-1.8423 0-3.8777.4749-5.6982 1.3611l.5793-3.219c1.6926-.7134 3.6217-1.081 5.5703-1.081 4.2856 0 6.4924 1.7944 6.4924 5.2498l-.0044.0021ZM4.02739 16.8917 0 33.0962h4.02739l1.9985-8.1427 3.46538 4.1884h4.19883l3.4654-4.1884 1.9985 8.1427h4.0273L19.154 16.8896l-7.5644 9.0596-7.56438-9.0596.00217.0021ZM19.154.685059 11.5896 9.74469 4.02739.685059 0 16.8917h4.02739l1.9985-8.14269 3.46538 4.18839h4.19883l3.4654-4.18839 1.9985 8.14269h4.0273L19.154.685059ZM46.8574 25.75l-3.257-.4748c-.8138-.1291-1.1349-.3895-1.1349-.8425 0-.7353.792-1.0592 2.4216-1.0592 1.8857 0 3.5782.3896 5.3576 1.2321l-.4492-3.1753c-1.4365-.5186-3.0856-.7768-4.7999-.7768-4.0057 0-6.1929 1.4049-6.1929 3.9324 0 1.9673 1.1999 3.068 3.7496 3.4575l3.3005.4968c.8354.1291 1.1782.4529 1.1782.9716 0 .7352-.7703 1.081-2.3348 1.081-2.0571 0-4.2856-.4968-6.1062-1.383l.3646 3.1752c1.5645.5843 3.5999.9301 5.5072.9301 4.1142 0 6.2559-1.4487 6.2559-4.02 0-2.0526-1.1999-3.1555-3.8559-3.5429l-.0044-.0022Zm5.2925-7.4118v14.758h3.6845v-14.758h-3.6845Zm7.9897 8.1252 5.1232-5.5977h-4.5851l-4.8433 5.7903 5.1644 6.438h4.6502l-5.5094-6.6327v.0021Zm-8.504-13.073c0 2.3765 1.9074 3.7158 5.2491 3.7158.792 0 1.5428-.0875 2.3131-.2582l1.9074-2.7223c-.9852.2582-2.1005.4114-3.1074.4114-1.6491 0-2.4216-.3457-2.4216-1.1664 0-.5624.4079-.8644 1.328-.9716l4.1988-.4923v4.9849h3.6845V9.69655c0-3.45754-2.2068-5.24977-6.4924-5.24977-1.9507 0-3.8776.36763-5.5702 1.08102l-.5794 3.21902c1.8206-.88627 3.856-1.36113 5.6983-1.36113 1.9638 0 2.9511.57334 3.1941 1.89289l-4.5004.52739c-3.4068.38953-4.9062 1.49023-4.9062 3.58663l.0043-.0022Zm-10.305-.7768c0 2.9827 1.7143 4.4948 5.0994 4.4948 1.3497 0 2.465-.2167 3.5348-.7134l.4708-3.2628c-1.0285.6259-2.0788.9497-3.129.9497-1.5862 0-2.2936-.6477-2.2936-2.0964V7.6636h5.5919V4.66123H45.013V2.11184l-7.0067 3.73765V7.6636h3.32v4.9478l.0043.0022Zm-3.6216-1.3612v.7353h-9.9578c.4492 1.4968 1.7837 2.1818 4.1533 2.1818 1.8856 0 3.6433-.3895 5.2056-1.1445l-.4492 3.1555c-1.4365.604-3.257.9301-5.121.9301-4.9496 0-7.649-2.2037-7.649-6.2871 0-4.08337 2.7428-6.37454 6.985-6.37454s6.8353 2.48593 6.8353 6.80564l-.0022-.0022ZM27.7035 9.47991h6.2971c-.332-1.43335-1.4235-2.18176-3.1681-2.18176s-2.7797.72871-3.129 2.18176Z"/>
3
+ </svg>
@@ -0,0 +1,13 @@
1
+ {
2
+ "compilerOptions": {
3
+ "composite": false,
4
+ "noEmit": true,
5
+ "jsx": "react-jsx",
6
+ "module": "ESNext",
7
+ "moduleResolution": "Bundler",
8
+ "target": "ES2020",
9
+ "esModuleInterop": true,
10
+ "strict": true
11
+ },
12
+ "include": ["./**/*.ts", "./**/*.tsx"]
13
+ }