activeadmin_mitosis_editor 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +17 -0
- data/CLAUDE.md +118 -0
- data/Gemfile +3 -0
- data/LICENSE +21 -0
- data/README.md +126 -0
- data/RELEASE.md +80 -0
- data/Rakefile +2 -0
- data/activeadmin_mitosis_editor.gemspec +17 -0
- data/app/views/inputs/mitosis_editor_input/_dependencies.html.erb +9 -0
- data/app/views/inputs/mitosis_editor_input/_form.html.erb +52 -0
- data/bin/console +5 -0
- data/bin/setup +14 -0
- data/demo/.dockerignore +51 -0
- data/demo/.gitattributes +9 -0
- data/demo/.gitignore +37 -0
- data/demo/.kamal/hooks/docker-setup.sample +3 -0
- data/demo/.kamal/hooks/post-app-boot.sample +3 -0
- data/demo/.kamal/hooks/post-deploy.sample +14 -0
- data/demo/.kamal/hooks/post-proxy-reboot.sample +3 -0
- data/demo/.kamal/hooks/pre-app-boot.sample +3 -0
- data/demo/.kamal/hooks/pre-build.sample +51 -0
- data/demo/.kamal/hooks/pre-connect.sample +47 -0
- data/demo/.kamal/hooks/pre-deploy.sample +122 -0
- data/demo/.kamal/hooks/pre-proxy-reboot.sample +3 -0
- data/demo/.kamal/secrets +20 -0
- data/demo/.rubocop.yml +8 -0
- data/demo/.ruby-version +1 -0
- data/demo/Dockerfile +76 -0
- data/demo/Gemfile +78 -0
- data/demo/Procfile.dev +2 -0
- data/demo/README.md +24 -0
- data/demo/Rakefile +6 -0
- data/demo/app/admin/articles.rb +12 -0
- data/demo/app/admin/dashboard.rb +17 -0
- data/demo/app/admin/pages.rb +12 -0
- data/demo/app/admin/posts.rb +12 -0
- data/demo/app/assets/builds/.keep +0 -0
- data/demo/app/assets/builds/active_admin.css +3852 -0
- data/demo/app/assets/images/.keep +0 -0
- data/demo/app/assets/stylesheets/active_admin.css +3 -0
- data/demo/app/assets/stylesheets/application.css +1 -0
- data/demo/app/assets/stylesheets/mitosis-editor.css +1 -0
- data/demo/app/assets/stylesheets/theme-dark.css +1 -0
- data/demo/app/assets/stylesheets/theme-light.css +1 -0
- data/demo/app/controllers/application_controller.rb +7 -0
- data/demo/app/controllers/articles_controller.rb +7 -0
- data/demo/app/controllers/concerns/.keep +0 -0
- data/demo/app/helpers/application_helper.rb +2 -0
- data/demo/app/helpers/articles_helper.rb +2 -0
- data/demo/app/javascript/application.js +3 -0
- data/demo/app/javascript/controllers/application.js +9 -0
- data/demo/app/javascript/controllers/hello_controller.js +7 -0
- data/demo/app/javascript/controllers/index.js +4 -0
- data/demo/app/jobs/application_job.rb +7 -0
- data/demo/app/mailers/application_mailer.rb +4 -0
- data/demo/app/models/application_record.rb +3 -0
- data/demo/app/models/article.rb +5 -0
- data/demo/app/models/concerns/.keep +0 -0
- data/demo/app/models/page.rb +5 -0
- data/demo/app/models/post.rb +5 -0
- data/demo/app/views/articles/_article.html.erb +12 -0
- data/demo/app/views/articles/_article.json.jbuilder +2 -0
- data/demo/app/views/articles/_form.html.erb +27 -0
- data/demo/app/views/articles/edit.html.erb +12 -0
- data/demo/app/views/articles/index.html.erb +16 -0
- data/demo/app/views/articles/index.json.jbuilder +1 -0
- data/demo/app/views/articles/new.html.erb +11 -0
- data/demo/app/views/articles/show.html.erb +10 -0
- data/demo/app/views/articles/show.json.jbuilder +1 -0
- data/demo/app/views/inputs/mitosis_editor_input/_dependencies.html.erb +17 -0
- data/demo/app/views/layouts/application.html.erb +29 -0
- data/demo/app/views/layouts/mailer.html.erb +13 -0
- data/demo/app/views/layouts/mailer.text.erb +1 -0
- data/demo/app/views/pwa/manifest.json.erb +22 -0
- data/demo/app/views/pwa/service-worker.js +26 -0
- data/demo/bin/brakeman +7 -0
- data/demo/bin/bundler-audit +6 -0
- data/demo/bin/ci +6 -0
- data/demo/bin/dev +8 -0
- data/demo/bin/docker-entrypoint +8 -0
- data/demo/bin/importmap +4 -0
- data/demo/bin/jobs +6 -0
- data/demo/bin/kamal +27 -0
- data/demo/bin/rails +4 -0
- data/demo/bin/rake +4 -0
- data/demo/bin/rubocop +8 -0
- data/demo/bin/setup +35 -0
- data/demo/bin/thrust +5 -0
- data/demo/config/application.rb +27 -0
- data/demo/config/boot.rb +4 -0
- data/demo/config/bundler-audit.yml +5 -0
- data/demo/config/cable.yml +17 -0
- data/demo/config/cache.yml +16 -0
- data/demo/config/ci.rb +23 -0
- data/demo/config/credentials.yml.enc +1 -0
- data/demo/config/database.yml +41 -0
- data/demo/config/deploy.yml +120 -0
- data/demo/config/environment.rb +21 -0
- data/demo/config/environments/development.rb +78 -0
- data/demo/config/environments/production.rb +90 -0
- data/demo/config/environments/test.rb +53 -0
- data/demo/config/importmap.rb +7 -0
- data/demo/config/initializers/active_admin.rb +275 -0
- data/demo/config/initializers/activeadmin_mitosis_editor.rb +19 -0
- data/demo/config/initializers/assets.rb +7 -0
- data/demo/config/initializers/content_security_policy.rb +29 -0
- data/demo/config/initializers/filter_parameter_logging.rb +8 -0
- data/demo/config/initializers/inflections.rb +16 -0
- data/demo/config/locales/en.yml +31 -0
- data/demo/config/puma.rb +42 -0
- data/demo/config/queue.yml +18 -0
- data/demo/config/recurring.yml +15 -0
- data/demo/config/routes.rb +16 -0
- data/demo/config/storage.yml +27 -0
- data/demo/config.ru +6 -0
- data/demo/db/cable_schema.rb +11 -0
- data/demo/db/cache_schema.rb +12 -0
- data/demo/db/migrate/20260215110410_create_active_admin_comments.rb +16 -0
- data/demo/db/migrate/20260215110416_create_articles.rb +10 -0
- data/demo/db/migrate/20260216124916_create_posts.rb +10 -0
- data/demo/db/migrate/20260216124919_create_pages.rb +10 -0
- data/demo/db/queue_schema.rb +129 -0
- data/demo/db/schema.rb +48 -0
- data/demo/db/seeds.rb +9 -0
- data/demo/lib/tasks/.keep +0 -0
- data/demo/log/.keep +0 -0
- data/demo/package-lock.json +1260 -0
- data/demo/package.json +13 -0
- data/demo/public/400.html +135 -0
- data/demo/public/404.html +135 -0
- data/demo/public/406-unsupported-browser.html +135 -0
- data/demo/public/422.html +135 -0
- data/demo/public/500.html +135 -0
- data/demo/public/icon.png +0 -0
- data/demo/public/icon.svg +3 -0
- data/demo/public/robots.txt +1 -0
- data/demo/script/.keep +0 -0
- data/demo/spec/rails_helper.rb +72 -0
- data/demo/spec/spec_helper.rb +94 -0
- data/demo/spec/system/admin_articles_spec.rb +22 -0
- data/demo/spec/system/mitosis_editor_prism_spec.rb +34 -0
- data/demo/spec/system/mitosis_editor_theme_spec.rb +63 -0
- data/demo/storage/.keep +0 -0
- data/demo/tailwind-active_admin.config.js +17 -0
- data/demo/tmp/.keep +0 -0
- data/demo/tmp/storage/.keep +0 -0
- data/demo/vendor/.keep +0 -0
- data/demo/vendor/javascript/.keep +0 -0
- data/docs/plans/2026-02-15-mitosis-editor-gem-design.md +70 -0
- data/docs/plans/2026-02-15-mitosis-editor-gem-implementation.md +407 -0
- data/lib/activeadmin_mitosis_editor/inputs/mitosis_editor_input.rb +29 -0
- data/lib/activeadmin_mitosis_editor/railtie.rb +7 -0
- data/lib/activeadmin_mitosis_editor/version.rb +3 -0
- data/lib/activeadmin_mitosis_editor.rb +13 -0
- data/lib/generators/mitosis_editor/styles_generator.rb +23 -0
- data/lib/generators/mitosis_editor/templates/_dependencies.html.erb +17 -0
- data/lib/generators/mitosis_editor/views_generator.rb +14 -0
- data/preview.png +0 -0
- data/script/bump-version +78 -0
- data/vendor/assets/javascripts/mitosis-editor.js +61 -0
- data/vendor/assets/stylesheets/mitosis-editor.css +1 -0
- data/vendor/assets/stylesheets/theme-dark.min.css +1 -0
- data/vendor/assets/stylesheets/theme-light.min.css +1 -0
- metadata +248 -0
|
@@ -0,0 +1,1260 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "activeadmin-mitosis-demo",
|
|
3
|
+
"lockfileVersion": 3,
|
|
4
|
+
"requires": true,
|
|
5
|
+
"packages": {
|
|
6
|
+
"": {
|
|
7
|
+
"name": "activeadmin-mitosis-demo",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@activeadmin/activeadmin": "4.0.0-beta21",
|
|
10
|
+
"@tailwindcss/cli": "^4.0.0",
|
|
11
|
+
"tailwindcss": "^4.0.0"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"node_modules/@activeadmin/activeadmin": {
|
|
15
|
+
"version": "4.0.0-beta21",
|
|
16
|
+
"resolved": "https://registry.npmjs.org/@activeadmin/activeadmin/-/activeadmin-4.0.0-beta21.tgz",
|
|
17
|
+
"integrity": "sha512-AiZ1If2Ck1BeM5vYK1k6nptSJB0+acXxuKNz/2G33z7ZA5QRMB1zm2tucMyPiV2+T2bYYt1hm0TCXaBj9sU8Xw==",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@rails/ujs": "7.1.600",
|
|
21
|
+
"flowbite": "3.1.2"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
25
|
+
"version": "0.3.13",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
27
|
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
31
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"node_modules/@jridgewell/remapping": {
|
|
35
|
+
"version": "2.3.5",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
|
|
37
|
+
"integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@jridgewell/gen-mapping": "^0.3.5",
|
|
41
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
45
|
+
"version": "3.1.2",
|
|
46
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
47
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=6.0.0"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
54
|
+
"version": "1.5.5",
|
|
55
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
56
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
57
|
+
"license": "MIT"
|
|
58
|
+
},
|
|
59
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
60
|
+
"version": "0.3.31",
|
|
61
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
62
|
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
63
|
+
"license": "MIT",
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
66
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"node_modules/@parcel/watcher": {
|
|
70
|
+
"version": "2.5.6",
|
|
71
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz",
|
|
72
|
+
"integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==",
|
|
73
|
+
"hasInstallScript": true,
|
|
74
|
+
"license": "MIT",
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"detect-libc": "^2.0.3",
|
|
77
|
+
"is-glob": "^4.0.3",
|
|
78
|
+
"node-addon-api": "^7.0.0",
|
|
79
|
+
"picomatch": "^4.0.3"
|
|
80
|
+
},
|
|
81
|
+
"engines": {
|
|
82
|
+
"node": ">= 10.0.0"
|
|
83
|
+
},
|
|
84
|
+
"funding": {
|
|
85
|
+
"type": "opencollective",
|
|
86
|
+
"url": "https://opencollective.com/parcel"
|
|
87
|
+
},
|
|
88
|
+
"optionalDependencies": {
|
|
89
|
+
"@parcel/watcher-android-arm64": "2.5.6",
|
|
90
|
+
"@parcel/watcher-darwin-arm64": "2.5.6",
|
|
91
|
+
"@parcel/watcher-darwin-x64": "2.5.6",
|
|
92
|
+
"@parcel/watcher-freebsd-x64": "2.5.6",
|
|
93
|
+
"@parcel/watcher-linux-arm-glibc": "2.5.6",
|
|
94
|
+
"@parcel/watcher-linux-arm-musl": "2.5.6",
|
|
95
|
+
"@parcel/watcher-linux-arm64-glibc": "2.5.6",
|
|
96
|
+
"@parcel/watcher-linux-arm64-musl": "2.5.6",
|
|
97
|
+
"@parcel/watcher-linux-x64-glibc": "2.5.6",
|
|
98
|
+
"@parcel/watcher-linux-x64-musl": "2.5.6",
|
|
99
|
+
"@parcel/watcher-win32-arm64": "2.5.6",
|
|
100
|
+
"@parcel/watcher-win32-ia32": "2.5.6",
|
|
101
|
+
"@parcel/watcher-win32-x64": "2.5.6"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"node_modules/@parcel/watcher-android-arm64": {
|
|
105
|
+
"version": "2.5.6",
|
|
106
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz",
|
|
107
|
+
"integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==",
|
|
108
|
+
"cpu": [
|
|
109
|
+
"arm64"
|
|
110
|
+
],
|
|
111
|
+
"license": "MIT",
|
|
112
|
+
"optional": true,
|
|
113
|
+
"os": [
|
|
114
|
+
"android"
|
|
115
|
+
],
|
|
116
|
+
"engines": {
|
|
117
|
+
"node": ">= 10.0.0"
|
|
118
|
+
},
|
|
119
|
+
"funding": {
|
|
120
|
+
"type": "opencollective",
|
|
121
|
+
"url": "https://opencollective.com/parcel"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"node_modules/@parcel/watcher-darwin-arm64": {
|
|
125
|
+
"version": "2.5.6",
|
|
126
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz",
|
|
127
|
+
"integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==",
|
|
128
|
+
"cpu": [
|
|
129
|
+
"arm64"
|
|
130
|
+
],
|
|
131
|
+
"license": "MIT",
|
|
132
|
+
"optional": true,
|
|
133
|
+
"os": [
|
|
134
|
+
"darwin"
|
|
135
|
+
],
|
|
136
|
+
"engines": {
|
|
137
|
+
"node": ">= 10.0.0"
|
|
138
|
+
},
|
|
139
|
+
"funding": {
|
|
140
|
+
"type": "opencollective",
|
|
141
|
+
"url": "https://opencollective.com/parcel"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"node_modules/@parcel/watcher-darwin-x64": {
|
|
145
|
+
"version": "2.5.6",
|
|
146
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz",
|
|
147
|
+
"integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==",
|
|
148
|
+
"cpu": [
|
|
149
|
+
"x64"
|
|
150
|
+
],
|
|
151
|
+
"license": "MIT",
|
|
152
|
+
"optional": true,
|
|
153
|
+
"os": [
|
|
154
|
+
"darwin"
|
|
155
|
+
],
|
|
156
|
+
"engines": {
|
|
157
|
+
"node": ">= 10.0.0"
|
|
158
|
+
},
|
|
159
|
+
"funding": {
|
|
160
|
+
"type": "opencollective",
|
|
161
|
+
"url": "https://opencollective.com/parcel"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"node_modules/@parcel/watcher-freebsd-x64": {
|
|
165
|
+
"version": "2.5.6",
|
|
166
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz",
|
|
167
|
+
"integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==",
|
|
168
|
+
"cpu": [
|
|
169
|
+
"x64"
|
|
170
|
+
],
|
|
171
|
+
"license": "MIT",
|
|
172
|
+
"optional": true,
|
|
173
|
+
"os": [
|
|
174
|
+
"freebsd"
|
|
175
|
+
],
|
|
176
|
+
"engines": {
|
|
177
|
+
"node": ">= 10.0.0"
|
|
178
|
+
},
|
|
179
|
+
"funding": {
|
|
180
|
+
"type": "opencollective",
|
|
181
|
+
"url": "https://opencollective.com/parcel"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"node_modules/@parcel/watcher-linux-arm-glibc": {
|
|
185
|
+
"version": "2.5.6",
|
|
186
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz",
|
|
187
|
+
"integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==",
|
|
188
|
+
"cpu": [
|
|
189
|
+
"arm"
|
|
190
|
+
],
|
|
191
|
+
"license": "MIT",
|
|
192
|
+
"optional": true,
|
|
193
|
+
"os": [
|
|
194
|
+
"linux"
|
|
195
|
+
],
|
|
196
|
+
"engines": {
|
|
197
|
+
"node": ">= 10.0.0"
|
|
198
|
+
},
|
|
199
|
+
"funding": {
|
|
200
|
+
"type": "opencollective",
|
|
201
|
+
"url": "https://opencollective.com/parcel"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"node_modules/@parcel/watcher-linux-arm-musl": {
|
|
205
|
+
"version": "2.5.6",
|
|
206
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz",
|
|
207
|
+
"integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==",
|
|
208
|
+
"cpu": [
|
|
209
|
+
"arm"
|
|
210
|
+
],
|
|
211
|
+
"license": "MIT",
|
|
212
|
+
"optional": true,
|
|
213
|
+
"os": [
|
|
214
|
+
"linux"
|
|
215
|
+
],
|
|
216
|
+
"engines": {
|
|
217
|
+
"node": ">= 10.0.0"
|
|
218
|
+
},
|
|
219
|
+
"funding": {
|
|
220
|
+
"type": "opencollective",
|
|
221
|
+
"url": "https://opencollective.com/parcel"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"node_modules/@parcel/watcher-linux-arm64-glibc": {
|
|
225
|
+
"version": "2.5.6",
|
|
226
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz",
|
|
227
|
+
"integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==",
|
|
228
|
+
"cpu": [
|
|
229
|
+
"arm64"
|
|
230
|
+
],
|
|
231
|
+
"license": "MIT",
|
|
232
|
+
"optional": true,
|
|
233
|
+
"os": [
|
|
234
|
+
"linux"
|
|
235
|
+
],
|
|
236
|
+
"engines": {
|
|
237
|
+
"node": ">= 10.0.0"
|
|
238
|
+
},
|
|
239
|
+
"funding": {
|
|
240
|
+
"type": "opencollective",
|
|
241
|
+
"url": "https://opencollective.com/parcel"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"node_modules/@parcel/watcher-linux-arm64-musl": {
|
|
245
|
+
"version": "2.5.6",
|
|
246
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz",
|
|
247
|
+
"integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==",
|
|
248
|
+
"cpu": [
|
|
249
|
+
"arm64"
|
|
250
|
+
],
|
|
251
|
+
"license": "MIT",
|
|
252
|
+
"optional": true,
|
|
253
|
+
"os": [
|
|
254
|
+
"linux"
|
|
255
|
+
],
|
|
256
|
+
"engines": {
|
|
257
|
+
"node": ">= 10.0.0"
|
|
258
|
+
},
|
|
259
|
+
"funding": {
|
|
260
|
+
"type": "opencollective",
|
|
261
|
+
"url": "https://opencollective.com/parcel"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"node_modules/@parcel/watcher-linux-x64-glibc": {
|
|
265
|
+
"version": "2.5.6",
|
|
266
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz",
|
|
267
|
+
"integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==",
|
|
268
|
+
"cpu": [
|
|
269
|
+
"x64"
|
|
270
|
+
],
|
|
271
|
+
"license": "MIT",
|
|
272
|
+
"optional": true,
|
|
273
|
+
"os": [
|
|
274
|
+
"linux"
|
|
275
|
+
],
|
|
276
|
+
"engines": {
|
|
277
|
+
"node": ">= 10.0.0"
|
|
278
|
+
},
|
|
279
|
+
"funding": {
|
|
280
|
+
"type": "opencollective",
|
|
281
|
+
"url": "https://opencollective.com/parcel"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"node_modules/@parcel/watcher-linux-x64-musl": {
|
|
285
|
+
"version": "2.5.6",
|
|
286
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz",
|
|
287
|
+
"integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==",
|
|
288
|
+
"cpu": [
|
|
289
|
+
"x64"
|
|
290
|
+
],
|
|
291
|
+
"license": "MIT",
|
|
292
|
+
"optional": true,
|
|
293
|
+
"os": [
|
|
294
|
+
"linux"
|
|
295
|
+
],
|
|
296
|
+
"engines": {
|
|
297
|
+
"node": ">= 10.0.0"
|
|
298
|
+
},
|
|
299
|
+
"funding": {
|
|
300
|
+
"type": "opencollective",
|
|
301
|
+
"url": "https://opencollective.com/parcel"
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
"node_modules/@parcel/watcher-win32-arm64": {
|
|
305
|
+
"version": "2.5.6",
|
|
306
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz",
|
|
307
|
+
"integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==",
|
|
308
|
+
"cpu": [
|
|
309
|
+
"arm64"
|
|
310
|
+
],
|
|
311
|
+
"license": "MIT",
|
|
312
|
+
"optional": true,
|
|
313
|
+
"os": [
|
|
314
|
+
"win32"
|
|
315
|
+
],
|
|
316
|
+
"engines": {
|
|
317
|
+
"node": ">= 10.0.0"
|
|
318
|
+
},
|
|
319
|
+
"funding": {
|
|
320
|
+
"type": "opencollective",
|
|
321
|
+
"url": "https://opencollective.com/parcel"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"node_modules/@parcel/watcher-win32-ia32": {
|
|
325
|
+
"version": "2.5.6",
|
|
326
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz",
|
|
327
|
+
"integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==",
|
|
328
|
+
"cpu": [
|
|
329
|
+
"ia32"
|
|
330
|
+
],
|
|
331
|
+
"license": "MIT",
|
|
332
|
+
"optional": true,
|
|
333
|
+
"os": [
|
|
334
|
+
"win32"
|
|
335
|
+
],
|
|
336
|
+
"engines": {
|
|
337
|
+
"node": ">= 10.0.0"
|
|
338
|
+
},
|
|
339
|
+
"funding": {
|
|
340
|
+
"type": "opencollective",
|
|
341
|
+
"url": "https://opencollective.com/parcel"
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"node_modules/@parcel/watcher-win32-x64": {
|
|
345
|
+
"version": "2.5.6",
|
|
346
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz",
|
|
347
|
+
"integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==",
|
|
348
|
+
"cpu": [
|
|
349
|
+
"x64"
|
|
350
|
+
],
|
|
351
|
+
"license": "MIT",
|
|
352
|
+
"optional": true,
|
|
353
|
+
"os": [
|
|
354
|
+
"win32"
|
|
355
|
+
],
|
|
356
|
+
"engines": {
|
|
357
|
+
"node": ">= 10.0.0"
|
|
358
|
+
},
|
|
359
|
+
"funding": {
|
|
360
|
+
"type": "opencollective",
|
|
361
|
+
"url": "https://opencollective.com/parcel"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"node_modules/@popperjs/core": {
|
|
365
|
+
"version": "2.11.8",
|
|
366
|
+
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
|
|
367
|
+
"integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
|
|
368
|
+
"license": "MIT",
|
|
369
|
+
"funding": {
|
|
370
|
+
"type": "opencollective",
|
|
371
|
+
"url": "https://opencollective.com/popperjs"
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
"node_modules/@rails/ujs": {
|
|
375
|
+
"version": "7.1.600",
|
|
376
|
+
"resolved": "https://registry.npmjs.org/@rails/ujs/-/ujs-7.1.600.tgz",
|
|
377
|
+
"integrity": "sha512-ntMYJ8++n1zcIJ1g75or7Va9IU3ueCHgp9IJk7Ny7eFEbu0Kx40EHZ2FNhoxoUEjlF5NifCFCbvoK5rDK5HpIQ==",
|
|
378
|
+
"license": "MIT"
|
|
379
|
+
},
|
|
380
|
+
"node_modules/@rollup/plugin-node-resolve": {
|
|
381
|
+
"version": "15.3.1",
|
|
382
|
+
"resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.1.tgz",
|
|
383
|
+
"integrity": "sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==",
|
|
384
|
+
"license": "MIT",
|
|
385
|
+
"dependencies": {
|
|
386
|
+
"@rollup/pluginutils": "^5.0.1",
|
|
387
|
+
"@types/resolve": "1.20.2",
|
|
388
|
+
"deepmerge": "^4.2.2",
|
|
389
|
+
"is-module": "^1.0.0",
|
|
390
|
+
"resolve": "^1.22.1"
|
|
391
|
+
},
|
|
392
|
+
"engines": {
|
|
393
|
+
"node": ">=14.0.0"
|
|
394
|
+
},
|
|
395
|
+
"peerDependencies": {
|
|
396
|
+
"rollup": "^2.78.0||^3.0.0||^4.0.0"
|
|
397
|
+
},
|
|
398
|
+
"peerDependenciesMeta": {
|
|
399
|
+
"rollup": {
|
|
400
|
+
"optional": true
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
"node_modules/@rollup/pluginutils": {
|
|
405
|
+
"version": "5.3.0",
|
|
406
|
+
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz",
|
|
407
|
+
"integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==",
|
|
408
|
+
"license": "MIT",
|
|
409
|
+
"dependencies": {
|
|
410
|
+
"@types/estree": "^1.0.0",
|
|
411
|
+
"estree-walker": "^2.0.2",
|
|
412
|
+
"picomatch": "^4.0.2"
|
|
413
|
+
},
|
|
414
|
+
"engines": {
|
|
415
|
+
"node": ">=14.0.0"
|
|
416
|
+
},
|
|
417
|
+
"peerDependencies": {
|
|
418
|
+
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
|
|
419
|
+
},
|
|
420
|
+
"peerDependenciesMeta": {
|
|
421
|
+
"rollup": {
|
|
422
|
+
"optional": true
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
"node_modules/@tailwindcss/cli": {
|
|
427
|
+
"version": "4.1.18",
|
|
428
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/cli/-/cli-4.1.18.tgz",
|
|
429
|
+
"integrity": "sha512-sMZ+lZbDyxwjD2E0L7oRUjJ01Ffjtme5OtjvvnC+cV4CEDcbqzbp25TCpxHj6kWLU9+DlqJOiNgSOgctC2aZmg==",
|
|
430
|
+
"license": "MIT",
|
|
431
|
+
"dependencies": {
|
|
432
|
+
"@parcel/watcher": "^2.5.1",
|
|
433
|
+
"@tailwindcss/node": "4.1.18",
|
|
434
|
+
"@tailwindcss/oxide": "4.1.18",
|
|
435
|
+
"enhanced-resolve": "^5.18.3",
|
|
436
|
+
"mri": "^1.2.0",
|
|
437
|
+
"picocolors": "^1.1.1",
|
|
438
|
+
"tailwindcss": "4.1.18"
|
|
439
|
+
},
|
|
440
|
+
"bin": {
|
|
441
|
+
"tailwindcss": "dist/index.mjs"
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"node_modules/@tailwindcss/node": {
|
|
445
|
+
"version": "4.1.18",
|
|
446
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.18.tgz",
|
|
447
|
+
"integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==",
|
|
448
|
+
"license": "MIT",
|
|
449
|
+
"dependencies": {
|
|
450
|
+
"@jridgewell/remapping": "^2.3.4",
|
|
451
|
+
"enhanced-resolve": "^5.18.3",
|
|
452
|
+
"jiti": "^2.6.1",
|
|
453
|
+
"lightningcss": "1.30.2",
|
|
454
|
+
"magic-string": "^0.30.21",
|
|
455
|
+
"source-map-js": "^1.2.1",
|
|
456
|
+
"tailwindcss": "4.1.18"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
"node_modules/@tailwindcss/oxide": {
|
|
460
|
+
"version": "4.1.18",
|
|
461
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.18.tgz",
|
|
462
|
+
"integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==",
|
|
463
|
+
"license": "MIT",
|
|
464
|
+
"engines": {
|
|
465
|
+
"node": ">= 10"
|
|
466
|
+
},
|
|
467
|
+
"optionalDependencies": {
|
|
468
|
+
"@tailwindcss/oxide-android-arm64": "4.1.18",
|
|
469
|
+
"@tailwindcss/oxide-darwin-arm64": "4.1.18",
|
|
470
|
+
"@tailwindcss/oxide-darwin-x64": "4.1.18",
|
|
471
|
+
"@tailwindcss/oxide-freebsd-x64": "4.1.18",
|
|
472
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18",
|
|
473
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
|
|
474
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.1.18",
|
|
475
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
|
|
476
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.1.18",
|
|
477
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.1.18",
|
|
478
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.1.18",
|
|
479
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.1.18"
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
483
|
+
"version": "4.1.18",
|
|
484
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz",
|
|
485
|
+
"integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==",
|
|
486
|
+
"cpu": [
|
|
487
|
+
"arm64"
|
|
488
|
+
],
|
|
489
|
+
"license": "MIT",
|
|
490
|
+
"optional": true,
|
|
491
|
+
"os": [
|
|
492
|
+
"android"
|
|
493
|
+
],
|
|
494
|
+
"engines": {
|
|
495
|
+
"node": ">= 10"
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
499
|
+
"version": "4.1.18",
|
|
500
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz",
|
|
501
|
+
"integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==",
|
|
502
|
+
"cpu": [
|
|
503
|
+
"arm64"
|
|
504
|
+
],
|
|
505
|
+
"license": "MIT",
|
|
506
|
+
"optional": true,
|
|
507
|
+
"os": [
|
|
508
|
+
"darwin"
|
|
509
|
+
],
|
|
510
|
+
"engines": {
|
|
511
|
+
"node": ">= 10"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
515
|
+
"version": "4.1.18",
|
|
516
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz",
|
|
517
|
+
"integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==",
|
|
518
|
+
"cpu": [
|
|
519
|
+
"x64"
|
|
520
|
+
],
|
|
521
|
+
"license": "MIT",
|
|
522
|
+
"optional": true,
|
|
523
|
+
"os": [
|
|
524
|
+
"darwin"
|
|
525
|
+
],
|
|
526
|
+
"engines": {
|
|
527
|
+
"node": ">= 10"
|
|
528
|
+
}
|
|
529
|
+
},
|
|
530
|
+
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
531
|
+
"version": "4.1.18",
|
|
532
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz",
|
|
533
|
+
"integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==",
|
|
534
|
+
"cpu": [
|
|
535
|
+
"x64"
|
|
536
|
+
],
|
|
537
|
+
"license": "MIT",
|
|
538
|
+
"optional": true,
|
|
539
|
+
"os": [
|
|
540
|
+
"freebsd"
|
|
541
|
+
],
|
|
542
|
+
"engines": {
|
|
543
|
+
"node": ">= 10"
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
547
|
+
"version": "4.1.18",
|
|
548
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz",
|
|
549
|
+
"integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==",
|
|
550
|
+
"cpu": [
|
|
551
|
+
"arm"
|
|
552
|
+
],
|
|
553
|
+
"license": "MIT",
|
|
554
|
+
"optional": true,
|
|
555
|
+
"os": [
|
|
556
|
+
"linux"
|
|
557
|
+
],
|
|
558
|
+
"engines": {
|
|
559
|
+
"node": ">= 10"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
563
|
+
"version": "4.1.18",
|
|
564
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz",
|
|
565
|
+
"integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==",
|
|
566
|
+
"cpu": [
|
|
567
|
+
"arm64"
|
|
568
|
+
],
|
|
569
|
+
"license": "MIT",
|
|
570
|
+
"optional": true,
|
|
571
|
+
"os": [
|
|
572
|
+
"linux"
|
|
573
|
+
],
|
|
574
|
+
"engines": {
|
|
575
|
+
"node": ">= 10"
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
579
|
+
"version": "4.1.18",
|
|
580
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz",
|
|
581
|
+
"integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==",
|
|
582
|
+
"cpu": [
|
|
583
|
+
"arm64"
|
|
584
|
+
],
|
|
585
|
+
"license": "MIT",
|
|
586
|
+
"optional": true,
|
|
587
|
+
"os": [
|
|
588
|
+
"linux"
|
|
589
|
+
],
|
|
590
|
+
"engines": {
|
|
591
|
+
"node": ">= 10"
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
595
|
+
"version": "4.1.18",
|
|
596
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz",
|
|
597
|
+
"integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==",
|
|
598
|
+
"cpu": [
|
|
599
|
+
"x64"
|
|
600
|
+
],
|
|
601
|
+
"license": "MIT",
|
|
602
|
+
"optional": true,
|
|
603
|
+
"os": [
|
|
604
|
+
"linux"
|
|
605
|
+
],
|
|
606
|
+
"engines": {
|
|
607
|
+
"node": ">= 10"
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
611
|
+
"version": "4.1.18",
|
|
612
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz",
|
|
613
|
+
"integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==",
|
|
614
|
+
"cpu": [
|
|
615
|
+
"x64"
|
|
616
|
+
],
|
|
617
|
+
"license": "MIT",
|
|
618
|
+
"optional": true,
|
|
619
|
+
"os": [
|
|
620
|
+
"linux"
|
|
621
|
+
],
|
|
622
|
+
"engines": {
|
|
623
|
+
"node": ">= 10"
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
627
|
+
"version": "4.1.18",
|
|
628
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz",
|
|
629
|
+
"integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==",
|
|
630
|
+
"bundleDependencies": [
|
|
631
|
+
"@napi-rs/wasm-runtime",
|
|
632
|
+
"@emnapi/core",
|
|
633
|
+
"@emnapi/runtime",
|
|
634
|
+
"@tybys/wasm-util",
|
|
635
|
+
"@emnapi/wasi-threads",
|
|
636
|
+
"tslib"
|
|
637
|
+
],
|
|
638
|
+
"cpu": [
|
|
639
|
+
"wasm32"
|
|
640
|
+
],
|
|
641
|
+
"license": "MIT",
|
|
642
|
+
"optional": true,
|
|
643
|
+
"dependencies": {
|
|
644
|
+
"@emnapi/core": "^1.7.1",
|
|
645
|
+
"@emnapi/runtime": "^1.7.1",
|
|
646
|
+
"@emnapi/wasi-threads": "^1.1.0",
|
|
647
|
+
"@napi-rs/wasm-runtime": "^1.1.0",
|
|
648
|
+
"@tybys/wasm-util": "^0.10.1",
|
|
649
|
+
"tslib": "^2.4.0"
|
|
650
|
+
},
|
|
651
|
+
"engines": {
|
|
652
|
+
"node": ">=14.0.0"
|
|
653
|
+
}
|
|
654
|
+
},
|
|
655
|
+
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
656
|
+
"version": "4.1.18",
|
|
657
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz",
|
|
658
|
+
"integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==",
|
|
659
|
+
"cpu": [
|
|
660
|
+
"arm64"
|
|
661
|
+
],
|
|
662
|
+
"license": "MIT",
|
|
663
|
+
"optional": true,
|
|
664
|
+
"os": [
|
|
665
|
+
"win32"
|
|
666
|
+
],
|
|
667
|
+
"engines": {
|
|
668
|
+
"node": ">= 10"
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
672
|
+
"version": "4.1.18",
|
|
673
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz",
|
|
674
|
+
"integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==",
|
|
675
|
+
"cpu": [
|
|
676
|
+
"x64"
|
|
677
|
+
],
|
|
678
|
+
"license": "MIT",
|
|
679
|
+
"optional": true,
|
|
680
|
+
"os": [
|
|
681
|
+
"win32"
|
|
682
|
+
],
|
|
683
|
+
"engines": {
|
|
684
|
+
"node": ">= 10"
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
"node_modules/@types/estree": {
|
|
688
|
+
"version": "1.0.8",
|
|
689
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
690
|
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
691
|
+
"license": "MIT"
|
|
692
|
+
},
|
|
693
|
+
"node_modules/@types/resolve": {
|
|
694
|
+
"version": "1.20.2",
|
|
695
|
+
"resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz",
|
|
696
|
+
"integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==",
|
|
697
|
+
"license": "MIT"
|
|
698
|
+
},
|
|
699
|
+
"node_modules/deepmerge": {
|
|
700
|
+
"version": "4.3.1",
|
|
701
|
+
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
|
|
702
|
+
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
|
|
703
|
+
"license": "MIT",
|
|
704
|
+
"engines": {
|
|
705
|
+
"node": ">=0.10.0"
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
"node_modules/detect-libc": {
|
|
709
|
+
"version": "2.1.2",
|
|
710
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
711
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
712
|
+
"license": "Apache-2.0",
|
|
713
|
+
"engines": {
|
|
714
|
+
"node": ">=8"
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"node_modules/enhanced-resolve": {
|
|
718
|
+
"version": "5.19.0",
|
|
719
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.19.0.tgz",
|
|
720
|
+
"integrity": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==",
|
|
721
|
+
"license": "MIT",
|
|
722
|
+
"dependencies": {
|
|
723
|
+
"graceful-fs": "^4.2.4",
|
|
724
|
+
"tapable": "^2.3.0"
|
|
725
|
+
},
|
|
726
|
+
"engines": {
|
|
727
|
+
"node": ">=10.13.0"
|
|
728
|
+
}
|
|
729
|
+
},
|
|
730
|
+
"node_modules/estree-walker": {
|
|
731
|
+
"version": "2.0.2",
|
|
732
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
|
|
733
|
+
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
|
|
734
|
+
"license": "MIT"
|
|
735
|
+
},
|
|
736
|
+
"node_modules/flowbite": {
|
|
737
|
+
"version": "3.1.2",
|
|
738
|
+
"resolved": "https://registry.npmjs.org/flowbite/-/flowbite-3.1.2.tgz",
|
|
739
|
+
"integrity": "sha512-MkwSgbbybCYgMC+go6Da5idEKUFfMqc/AmSjm/2ZbdmvoKf5frLPq/eIhXc9P+rC8t9boZtUXzHDgt5whZ6A/Q==",
|
|
740
|
+
"license": "MIT",
|
|
741
|
+
"dependencies": {
|
|
742
|
+
"@popperjs/core": "^2.9.3",
|
|
743
|
+
"flowbite-datepicker": "^1.3.1",
|
|
744
|
+
"mini-svg-data-uri": "^1.4.3",
|
|
745
|
+
"postcss": "^8.5.1"
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
"node_modules/flowbite-datepicker": {
|
|
749
|
+
"version": "1.3.2",
|
|
750
|
+
"resolved": "https://registry.npmjs.org/flowbite-datepicker/-/flowbite-datepicker-1.3.2.tgz",
|
|
751
|
+
"integrity": "sha512-6Nfm0MCVX3mpaR7YSCjmEO2GO8CDt6CX8ZpQnGdeu03WUCWtEPQ/uy0PUiNtIJjJZWnX0Cm3H55MOhbD1g+E/g==",
|
|
752
|
+
"license": "MIT",
|
|
753
|
+
"dependencies": {
|
|
754
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
755
|
+
"flowbite": "^2.0.0"
|
|
756
|
+
}
|
|
757
|
+
},
|
|
758
|
+
"node_modules/flowbite-datepicker/node_modules/flowbite": {
|
|
759
|
+
"version": "2.5.2",
|
|
760
|
+
"resolved": "https://registry.npmjs.org/flowbite/-/flowbite-2.5.2.tgz",
|
|
761
|
+
"integrity": "sha512-kwFD3n8/YW4EG8GlY3Od9IoKND97kitO+/ejISHSqpn3vw2i5K/+ZI8Jm2V+KC4fGdnfi0XZ+TzYqQb4Q1LshA==",
|
|
762
|
+
"license": "MIT",
|
|
763
|
+
"dependencies": {
|
|
764
|
+
"@popperjs/core": "^2.9.3",
|
|
765
|
+
"flowbite-datepicker": "^1.3.0",
|
|
766
|
+
"mini-svg-data-uri": "^1.4.3"
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"node_modules/function-bind": {
|
|
770
|
+
"version": "1.1.2",
|
|
771
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
772
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
773
|
+
"license": "MIT",
|
|
774
|
+
"funding": {
|
|
775
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
776
|
+
}
|
|
777
|
+
},
|
|
778
|
+
"node_modules/graceful-fs": {
|
|
779
|
+
"version": "4.2.11",
|
|
780
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
781
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
782
|
+
"license": "ISC"
|
|
783
|
+
},
|
|
784
|
+
"node_modules/hasown": {
|
|
785
|
+
"version": "2.0.2",
|
|
786
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
787
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
788
|
+
"license": "MIT",
|
|
789
|
+
"dependencies": {
|
|
790
|
+
"function-bind": "^1.1.2"
|
|
791
|
+
},
|
|
792
|
+
"engines": {
|
|
793
|
+
"node": ">= 0.4"
|
|
794
|
+
}
|
|
795
|
+
},
|
|
796
|
+
"node_modules/is-core-module": {
|
|
797
|
+
"version": "2.16.1",
|
|
798
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
|
799
|
+
"integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
|
|
800
|
+
"license": "MIT",
|
|
801
|
+
"dependencies": {
|
|
802
|
+
"hasown": "^2.0.2"
|
|
803
|
+
},
|
|
804
|
+
"engines": {
|
|
805
|
+
"node": ">= 0.4"
|
|
806
|
+
},
|
|
807
|
+
"funding": {
|
|
808
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
"node_modules/is-extglob": {
|
|
812
|
+
"version": "2.1.1",
|
|
813
|
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
814
|
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
815
|
+
"license": "MIT",
|
|
816
|
+
"engines": {
|
|
817
|
+
"node": ">=0.10.0"
|
|
818
|
+
}
|
|
819
|
+
},
|
|
820
|
+
"node_modules/is-glob": {
|
|
821
|
+
"version": "4.0.3",
|
|
822
|
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
823
|
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
824
|
+
"license": "MIT",
|
|
825
|
+
"dependencies": {
|
|
826
|
+
"is-extglob": "^2.1.1"
|
|
827
|
+
},
|
|
828
|
+
"engines": {
|
|
829
|
+
"node": ">=0.10.0"
|
|
830
|
+
}
|
|
831
|
+
},
|
|
832
|
+
"node_modules/is-module": {
|
|
833
|
+
"version": "1.0.0",
|
|
834
|
+
"resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
|
|
835
|
+
"integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==",
|
|
836
|
+
"license": "MIT"
|
|
837
|
+
},
|
|
838
|
+
"node_modules/jiti": {
|
|
839
|
+
"version": "2.6.1",
|
|
840
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
|
|
841
|
+
"integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
|
|
842
|
+
"license": "MIT",
|
|
843
|
+
"bin": {
|
|
844
|
+
"jiti": "lib/jiti-cli.mjs"
|
|
845
|
+
}
|
|
846
|
+
},
|
|
847
|
+
"node_modules/lightningcss": {
|
|
848
|
+
"version": "1.30.2",
|
|
849
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz",
|
|
850
|
+
"integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==",
|
|
851
|
+
"license": "MPL-2.0",
|
|
852
|
+
"dependencies": {
|
|
853
|
+
"detect-libc": "^2.0.3"
|
|
854
|
+
},
|
|
855
|
+
"engines": {
|
|
856
|
+
"node": ">= 12.0.0"
|
|
857
|
+
},
|
|
858
|
+
"funding": {
|
|
859
|
+
"type": "opencollective",
|
|
860
|
+
"url": "https://opencollective.com/parcel"
|
|
861
|
+
},
|
|
862
|
+
"optionalDependencies": {
|
|
863
|
+
"lightningcss-android-arm64": "1.30.2",
|
|
864
|
+
"lightningcss-darwin-arm64": "1.30.2",
|
|
865
|
+
"lightningcss-darwin-x64": "1.30.2",
|
|
866
|
+
"lightningcss-freebsd-x64": "1.30.2",
|
|
867
|
+
"lightningcss-linux-arm-gnueabihf": "1.30.2",
|
|
868
|
+
"lightningcss-linux-arm64-gnu": "1.30.2",
|
|
869
|
+
"lightningcss-linux-arm64-musl": "1.30.2",
|
|
870
|
+
"lightningcss-linux-x64-gnu": "1.30.2",
|
|
871
|
+
"lightningcss-linux-x64-musl": "1.30.2",
|
|
872
|
+
"lightningcss-win32-arm64-msvc": "1.30.2",
|
|
873
|
+
"lightningcss-win32-x64-msvc": "1.30.2"
|
|
874
|
+
}
|
|
875
|
+
},
|
|
876
|
+
"node_modules/lightningcss-android-arm64": {
|
|
877
|
+
"version": "1.30.2",
|
|
878
|
+
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz",
|
|
879
|
+
"integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==",
|
|
880
|
+
"cpu": [
|
|
881
|
+
"arm64"
|
|
882
|
+
],
|
|
883
|
+
"license": "MPL-2.0",
|
|
884
|
+
"optional": true,
|
|
885
|
+
"os": [
|
|
886
|
+
"android"
|
|
887
|
+
],
|
|
888
|
+
"engines": {
|
|
889
|
+
"node": ">= 12.0.0"
|
|
890
|
+
},
|
|
891
|
+
"funding": {
|
|
892
|
+
"type": "opencollective",
|
|
893
|
+
"url": "https://opencollective.com/parcel"
|
|
894
|
+
}
|
|
895
|
+
},
|
|
896
|
+
"node_modules/lightningcss-darwin-arm64": {
|
|
897
|
+
"version": "1.30.2",
|
|
898
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz",
|
|
899
|
+
"integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==",
|
|
900
|
+
"cpu": [
|
|
901
|
+
"arm64"
|
|
902
|
+
],
|
|
903
|
+
"license": "MPL-2.0",
|
|
904
|
+
"optional": true,
|
|
905
|
+
"os": [
|
|
906
|
+
"darwin"
|
|
907
|
+
],
|
|
908
|
+
"engines": {
|
|
909
|
+
"node": ">= 12.0.0"
|
|
910
|
+
},
|
|
911
|
+
"funding": {
|
|
912
|
+
"type": "opencollective",
|
|
913
|
+
"url": "https://opencollective.com/parcel"
|
|
914
|
+
}
|
|
915
|
+
},
|
|
916
|
+
"node_modules/lightningcss-darwin-x64": {
|
|
917
|
+
"version": "1.30.2",
|
|
918
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz",
|
|
919
|
+
"integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==",
|
|
920
|
+
"cpu": [
|
|
921
|
+
"x64"
|
|
922
|
+
],
|
|
923
|
+
"license": "MPL-2.0",
|
|
924
|
+
"optional": true,
|
|
925
|
+
"os": [
|
|
926
|
+
"darwin"
|
|
927
|
+
],
|
|
928
|
+
"engines": {
|
|
929
|
+
"node": ">= 12.0.0"
|
|
930
|
+
},
|
|
931
|
+
"funding": {
|
|
932
|
+
"type": "opencollective",
|
|
933
|
+
"url": "https://opencollective.com/parcel"
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
"node_modules/lightningcss-freebsd-x64": {
|
|
937
|
+
"version": "1.30.2",
|
|
938
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz",
|
|
939
|
+
"integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==",
|
|
940
|
+
"cpu": [
|
|
941
|
+
"x64"
|
|
942
|
+
],
|
|
943
|
+
"license": "MPL-2.0",
|
|
944
|
+
"optional": true,
|
|
945
|
+
"os": [
|
|
946
|
+
"freebsd"
|
|
947
|
+
],
|
|
948
|
+
"engines": {
|
|
949
|
+
"node": ">= 12.0.0"
|
|
950
|
+
},
|
|
951
|
+
"funding": {
|
|
952
|
+
"type": "opencollective",
|
|
953
|
+
"url": "https://opencollective.com/parcel"
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
957
|
+
"version": "1.30.2",
|
|
958
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz",
|
|
959
|
+
"integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==",
|
|
960
|
+
"cpu": [
|
|
961
|
+
"arm"
|
|
962
|
+
],
|
|
963
|
+
"license": "MPL-2.0",
|
|
964
|
+
"optional": true,
|
|
965
|
+
"os": [
|
|
966
|
+
"linux"
|
|
967
|
+
],
|
|
968
|
+
"engines": {
|
|
969
|
+
"node": ">= 12.0.0"
|
|
970
|
+
},
|
|
971
|
+
"funding": {
|
|
972
|
+
"type": "opencollective",
|
|
973
|
+
"url": "https://opencollective.com/parcel"
|
|
974
|
+
}
|
|
975
|
+
},
|
|
976
|
+
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
977
|
+
"version": "1.30.2",
|
|
978
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz",
|
|
979
|
+
"integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==",
|
|
980
|
+
"cpu": [
|
|
981
|
+
"arm64"
|
|
982
|
+
],
|
|
983
|
+
"license": "MPL-2.0",
|
|
984
|
+
"optional": true,
|
|
985
|
+
"os": [
|
|
986
|
+
"linux"
|
|
987
|
+
],
|
|
988
|
+
"engines": {
|
|
989
|
+
"node": ">= 12.0.0"
|
|
990
|
+
},
|
|
991
|
+
"funding": {
|
|
992
|
+
"type": "opencollective",
|
|
993
|
+
"url": "https://opencollective.com/parcel"
|
|
994
|
+
}
|
|
995
|
+
},
|
|
996
|
+
"node_modules/lightningcss-linux-arm64-musl": {
|
|
997
|
+
"version": "1.30.2",
|
|
998
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz",
|
|
999
|
+
"integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==",
|
|
1000
|
+
"cpu": [
|
|
1001
|
+
"arm64"
|
|
1002
|
+
],
|
|
1003
|
+
"license": "MPL-2.0",
|
|
1004
|
+
"optional": true,
|
|
1005
|
+
"os": [
|
|
1006
|
+
"linux"
|
|
1007
|
+
],
|
|
1008
|
+
"engines": {
|
|
1009
|
+
"node": ">= 12.0.0"
|
|
1010
|
+
},
|
|
1011
|
+
"funding": {
|
|
1012
|
+
"type": "opencollective",
|
|
1013
|
+
"url": "https://opencollective.com/parcel"
|
|
1014
|
+
}
|
|
1015
|
+
},
|
|
1016
|
+
"node_modules/lightningcss-linux-x64-gnu": {
|
|
1017
|
+
"version": "1.30.2",
|
|
1018
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz",
|
|
1019
|
+
"integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==",
|
|
1020
|
+
"cpu": [
|
|
1021
|
+
"x64"
|
|
1022
|
+
],
|
|
1023
|
+
"license": "MPL-2.0",
|
|
1024
|
+
"optional": true,
|
|
1025
|
+
"os": [
|
|
1026
|
+
"linux"
|
|
1027
|
+
],
|
|
1028
|
+
"engines": {
|
|
1029
|
+
"node": ">= 12.0.0"
|
|
1030
|
+
},
|
|
1031
|
+
"funding": {
|
|
1032
|
+
"type": "opencollective",
|
|
1033
|
+
"url": "https://opencollective.com/parcel"
|
|
1034
|
+
}
|
|
1035
|
+
},
|
|
1036
|
+
"node_modules/lightningcss-linux-x64-musl": {
|
|
1037
|
+
"version": "1.30.2",
|
|
1038
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz",
|
|
1039
|
+
"integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==",
|
|
1040
|
+
"cpu": [
|
|
1041
|
+
"x64"
|
|
1042
|
+
],
|
|
1043
|
+
"license": "MPL-2.0",
|
|
1044
|
+
"optional": true,
|
|
1045
|
+
"os": [
|
|
1046
|
+
"linux"
|
|
1047
|
+
],
|
|
1048
|
+
"engines": {
|
|
1049
|
+
"node": ">= 12.0.0"
|
|
1050
|
+
},
|
|
1051
|
+
"funding": {
|
|
1052
|
+
"type": "opencollective",
|
|
1053
|
+
"url": "https://opencollective.com/parcel"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
1057
|
+
"version": "1.30.2",
|
|
1058
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz",
|
|
1059
|
+
"integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==",
|
|
1060
|
+
"cpu": [
|
|
1061
|
+
"arm64"
|
|
1062
|
+
],
|
|
1063
|
+
"license": "MPL-2.0",
|
|
1064
|
+
"optional": true,
|
|
1065
|
+
"os": [
|
|
1066
|
+
"win32"
|
|
1067
|
+
],
|
|
1068
|
+
"engines": {
|
|
1069
|
+
"node": ">= 12.0.0"
|
|
1070
|
+
},
|
|
1071
|
+
"funding": {
|
|
1072
|
+
"type": "opencollective",
|
|
1073
|
+
"url": "https://opencollective.com/parcel"
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"node_modules/lightningcss-win32-x64-msvc": {
|
|
1077
|
+
"version": "1.30.2",
|
|
1078
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz",
|
|
1079
|
+
"integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==",
|
|
1080
|
+
"cpu": [
|
|
1081
|
+
"x64"
|
|
1082
|
+
],
|
|
1083
|
+
"license": "MPL-2.0",
|
|
1084
|
+
"optional": true,
|
|
1085
|
+
"os": [
|
|
1086
|
+
"win32"
|
|
1087
|
+
],
|
|
1088
|
+
"engines": {
|
|
1089
|
+
"node": ">= 12.0.0"
|
|
1090
|
+
},
|
|
1091
|
+
"funding": {
|
|
1092
|
+
"type": "opencollective",
|
|
1093
|
+
"url": "https://opencollective.com/parcel"
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1096
|
+
"node_modules/magic-string": {
|
|
1097
|
+
"version": "0.30.21",
|
|
1098
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
1099
|
+
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
1100
|
+
"license": "MIT",
|
|
1101
|
+
"dependencies": {
|
|
1102
|
+
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
1103
|
+
}
|
|
1104
|
+
},
|
|
1105
|
+
"node_modules/mini-svg-data-uri": {
|
|
1106
|
+
"version": "1.4.4",
|
|
1107
|
+
"resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
|
|
1108
|
+
"integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==",
|
|
1109
|
+
"license": "MIT",
|
|
1110
|
+
"bin": {
|
|
1111
|
+
"mini-svg-data-uri": "cli.js"
|
|
1112
|
+
}
|
|
1113
|
+
},
|
|
1114
|
+
"node_modules/mri": {
|
|
1115
|
+
"version": "1.2.0",
|
|
1116
|
+
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
|
|
1117
|
+
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
|
|
1118
|
+
"license": "MIT",
|
|
1119
|
+
"engines": {
|
|
1120
|
+
"node": ">=4"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1123
|
+
"node_modules/nanoid": {
|
|
1124
|
+
"version": "3.3.11",
|
|
1125
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
1126
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
1127
|
+
"funding": [
|
|
1128
|
+
{
|
|
1129
|
+
"type": "github",
|
|
1130
|
+
"url": "https://github.com/sponsors/ai"
|
|
1131
|
+
}
|
|
1132
|
+
],
|
|
1133
|
+
"license": "MIT",
|
|
1134
|
+
"bin": {
|
|
1135
|
+
"nanoid": "bin/nanoid.cjs"
|
|
1136
|
+
},
|
|
1137
|
+
"engines": {
|
|
1138
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1139
|
+
}
|
|
1140
|
+
},
|
|
1141
|
+
"node_modules/node-addon-api": {
|
|
1142
|
+
"version": "7.1.1",
|
|
1143
|
+
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
|
|
1144
|
+
"integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
|
|
1145
|
+
"license": "MIT"
|
|
1146
|
+
},
|
|
1147
|
+
"node_modules/path-parse": {
|
|
1148
|
+
"version": "1.0.7",
|
|
1149
|
+
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
|
1150
|
+
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
|
|
1151
|
+
"license": "MIT"
|
|
1152
|
+
},
|
|
1153
|
+
"node_modules/picocolors": {
|
|
1154
|
+
"version": "1.1.1",
|
|
1155
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
1156
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1157
|
+
"license": "ISC"
|
|
1158
|
+
},
|
|
1159
|
+
"node_modules/picomatch": {
|
|
1160
|
+
"version": "4.0.3",
|
|
1161
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
|
1162
|
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
1163
|
+
"license": "MIT",
|
|
1164
|
+
"engines": {
|
|
1165
|
+
"node": ">=12"
|
|
1166
|
+
},
|
|
1167
|
+
"funding": {
|
|
1168
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
1171
|
+
"node_modules/postcss": {
|
|
1172
|
+
"version": "8.5.6",
|
|
1173
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
1174
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
1175
|
+
"funding": [
|
|
1176
|
+
{
|
|
1177
|
+
"type": "opencollective",
|
|
1178
|
+
"url": "https://opencollective.com/postcss/"
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"type": "tidelift",
|
|
1182
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"type": "github",
|
|
1186
|
+
"url": "https://github.com/sponsors/ai"
|
|
1187
|
+
}
|
|
1188
|
+
],
|
|
1189
|
+
"license": "MIT",
|
|
1190
|
+
"dependencies": {
|
|
1191
|
+
"nanoid": "^3.3.11",
|
|
1192
|
+
"picocolors": "^1.1.1",
|
|
1193
|
+
"source-map-js": "^1.2.1"
|
|
1194
|
+
},
|
|
1195
|
+
"engines": {
|
|
1196
|
+
"node": "^10 || ^12 || >=14"
|
|
1197
|
+
}
|
|
1198
|
+
},
|
|
1199
|
+
"node_modules/resolve": {
|
|
1200
|
+
"version": "1.22.11",
|
|
1201
|
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
|
|
1202
|
+
"integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
|
|
1203
|
+
"license": "MIT",
|
|
1204
|
+
"dependencies": {
|
|
1205
|
+
"is-core-module": "^2.16.1",
|
|
1206
|
+
"path-parse": "^1.0.7",
|
|
1207
|
+
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
1208
|
+
},
|
|
1209
|
+
"bin": {
|
|
1210
|
+
"resolve": "bin/resolve"
|
|
1211
|
+
},
|
|
1212
|
+
"engines": {
|
|
1213
|
+
"node": ">= 0.4"
|
|
1214
|
+
},
|
|
1215
|
+
"funding": {
|
|
1216
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
"node_modules/source-map-js": {
|
|
1220
|
+
"version": "1.2.1",
|
|
1221
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1222
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1223
|
+
"license": "BSD-3-Clause",
|
|
1224
|
+
"engines": {
|
|
1225
|
+
"node": ">=0.10.0"
|
|
1226
|
+
}
|
|
1227
|
+
},
|
|
1228
|
+
"node_modules/supports-preserve-symlinks-flag": {
|
|
1229
|
+
"version": "1.0.0",
|
|
1230
|
+
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
|
1231
|
+
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
|
|
1232
|
+
"license": "MIT",
|
|
1233
|
+
"engines": {
|
|
1234
|
+
"node": ">= 0.4"
|
|
1235
|
+
},
|
|
1236
|
+
"funding": {
|
|
1237
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1238
|
+
}
|
|
1239
|
+
},
|
|
1240
|
+
"node_modules/tailwindcss": {
|
|
1241
|
+
"version": "4.1.18",
|
|
1242
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz",
|
|
1243
|
+
"integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
|
|
1244
|
+
"license": "MIT"
|
|
1245
|
+
},
|
|
1246
|
+
"node_modules/tapable": {
|
|
1247
|
+
"version": "2.3.0",
|
|
1248
|
+
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
|
|
1249
|
+
"integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
|
|
1250
|
+
"license": "MIT",
|
|
1251
|
+
"engines": {
|
|
1252
|
+
"node": ">=6"
|
|
1253
|
+
},
|
|
1254
|
+
"funding": {
|
|
1255
|
+
"type": "opencollective",
|
|
1256
|
+
"url": "https://opencollective.com/webpack"
|
|
1257
|
+
}
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
}
|