create-nuclo 0.1.1
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/README.md +60 -0
- package/package.json +35 -0
- package/src/create-nuclo.mjs +193 -0
- package/templates/basic/README.md +16 -0
- package/templates/basic/_gitignore +5 -0
- package/templates/basic/index.html +26 -0
- package/templates/basic/node_modules/.package-lock.json +348 -0
- package/templates/basic/node_modules/.vite/deps/_metadata.json +15 -0
- package/templates/basic/node_modules/.vite/deps/nuclo.js +1665 -0
- package/templates/basic/node_modules/.vite/deps/nuclo.js.map +1 -0
- package/templates/basic/node_modules/.vite/deps/package.json +3 -0
- package/templates/basic/node_modules/@oxc-project/types/LICENSE +22 -0
- package/templates/basic/node_modules/@oxc-project/types/README.md +3 -0
- package/templates/basic/node_modules/@oxc-project/types/package.json +26 -0
- package/templates/basic/node_modules/@oxc-project/types/types.d.ts +1912 -0
- package/templates/basic/node_modules/@rolldown/binding-darwin-arm64/README.md +3 -0
- package/templates/basic/node_modules/@rolldown/binding-darwin-arm64/package.json +37 -0
- package/templates/basic/node_modules/@rolldown/binding-darwin-arm64/rolldown-binding.darwin-arm64.node +0 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/LICENSE +21 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/README.md +145 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/filter/index.d.mts +194 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/filter/index.mjs +2 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/filter-B_mD-HGz.mjs +323 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/index.d.mts +2 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/index.mjs +2 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/package.json +40 -0
- package/templates/basic/node_modules/detect-libc/LICENSE +201 -0
- package/templates/basic/node_modules/detect-libc/README.md +163 -0
- package/templates/basic/node_modules/detect-libc/index.d.ts +14 -0
- package/templates/basic/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/templates/basic/node_modules/detect-libc/lib/elf.js +39 -0
- package/templates/basic/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/templates/basic/node_modules/detect-libc/lib/process.js +24 -0
- package/templates/basic/node_modules/detect-libc/package.json +44 -0
- package/templates/basic/node_modules/fdir/LICENSE +7 -0
- package/templates/basic/node_modules/fdir/README.md +91 -0
- package/templates/basic/node_modules/fdir/dist/index.cjs +588 -0
- package/templates/basic/node_modules/fdir/dist/index.d.cts +155 -0
- package/templates/basic/node_modules/fdir/dist/index.d.mts +155 -0
- package/templates/basic/node_modules/fdir/dist/index.mjs +570 -0
- package/templates/basic/node_modules/fdir/package.json +103 -0
- package/templates/basic/node_modules/lightningcss/LICENSE +373 -0
- package/templates/basic/node_modules/lightningcss/README.md +105 -0
- package/templates/basic/node_modules/lightningcss/node/ast.d.ts +9892 -0
- package/templates/basic/node_modules/lightningcss/node/ast.js.flow +10539 -0
- package/templates/basic/node_modules/lightningcss/node/browserslistToTargets.js +48 -0
- package/templates/basic/node_modules/lightningcss/node/composeVisitors.js +450 -0
- package/templates/basic/node_modules/lightningcss/node/flags.js +28 -0
- package/templates/basic/node_modules/lightningcss/node/index.d.ts +494 -0
- package/templates/basic/node_modules/lightningcss/node/index.js +59 -0
- package/templates/basic/node_modules/lightningcss/node/index.js.flow +843 -0
- package/templates/basic/node_modules/lightningcss/node/index.mjs +4 -0
- package/templates/basic/node_modules/lightningcss/node/targets.d.ts +40 -0
- package/templates/basic/node_modules/lightningcss/node/targets.js.flow +39 -0
- package/templates/basic/node_modules/lightningcss/package.json +110 -0
- package/templates/basic/node_modules/lightningcss-darwin-arm64/LICENSE +373 -0
- package/templates/basic/node_modules/lightningcss-darwin-arm64/README.md +1 -0
- package/templates/basic/node_modules/lightningcss-darwin-arm64/lightningcss.darwin-arm64.node +0 -0
- package/templates/basic/node_modules/lightningcss-darwin-arm64/package.json +34 -0
- package/templates/basic/node_modules/nanoid/LICENSE +20 -0
- package/templates/basic/node_modules/nanoid/README.md +36 -0
- package/templates/basic/node_modules/nanoid/async/index.browser.cjs +42 -0
- package/templates/basic/node_modules/nanoid/async/index.browser.js +42 -0
- package/templates/basic/node_modules/nanoid/async/index.cjs +44 -0
- package/templates/basic/node_modules/nanoid/async/index.d.ts +56 -0
- package/templates/basic/node_modules/nanoid/async/index.js +44 -0
- package/templates/basic/node_modules/nanoid/async/index.native.js +35 -0
- package/templates/basic/node_modules/nanoid/async/package.json +12 -0
- package/templates/basic/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/templates/basic/node_modules/nanoid/index.browser.cjs +44 -0
- package/templates/basic/node_modules/nanoid/index.browser.js +44 -0
- package/templates/basic/node_modules/nanoid/index.cjs +57 -0
- package/templates/basic/node_modules/nanoid/index.d.cts +91 -0
- package/templates/basic/node_modules/nanoid/index.d.ts +91 -0
- package/templates/basic/node_modules/nanoid/index.js +62 -0
- package/templates/basic/node_modules/nanoid/nanoid.js +1 -0
- package/templates/basic/node_modules/nanoid/non-secure/index.cjs +24 -0
- package/templates/basic/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/templates/basic/node_modules/nanoid/non-secure/index.js +24 -0
- package/templates/basic/node_modules/nanoid/non-secure/package.json +6 -0
- package/templates/basic/node_modules/nanoid/package.json +89 -0
- package/templates/basic/node_modules/nanoid/url-alphabet/index.cjs +4 -0
- package/templates/basic/node_modules/nanoid/url-alphabet/index.js +4 -0
- package/templates/basic/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/templates/basic/node_modules/nuclo/LICENSE.md +45 -0
- package/templates/basic/node_modules/nuclo/README.md +727 -0
- package/templates/basic/node_modules/nuclo/dist/bootstrap.d.ts +5 -0
- package/templates/basic/node_modules/nuclo/dist/bootstrap.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/attributes.d.ts +3 -0
- package/templates/basic/node_modules/nuclo/dist/element/attributes.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/class-name.d.ts +6 -0
- package/templates/basic/node_modules/nuclo/dist/element/class-name.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/events.d.ts +35 -0
- package/templates/basic/node_modules/nuclo/dist/element/events.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/factory.d.ts +32 -0
- package/templates/basic/node_modules/nuclo/dist/element/factory.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/inline-style.d.ts +9 -0
- package/templates/basic/node_modules/nuclo/dist/element/inline-style.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/modifiers.d.ts +11 -0
- package/templates/basic/node_modules/nuclo/dist/element/modifiers.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/tags.d.ts +5 -0
- package/templates/basic/node_modules/nuclo/dist/element/tags.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/hydration.d.ts +73 -0
- package/templates/basic/node_modules/nuclo/dist/hydration.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/index.d.ts +17 -0
- package/templates/basic/node_modules/nuclo/dist/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/list/index.d.ts +7 -0
- package/templates/basic/node_modules/nuclo/dist/list/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/list/runtime.d.ts +6 -0
- package/templates/basic/node_modules/nuclo/dist/list/runtime.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/list/types.d.ts +18 -0
- package/templates/basic/node_modules/nuclo/dist/list/types.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.cjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.cjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.mjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.mjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.umd.js +2 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.umd.js.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Document.d.ts +19 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Document.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Element.d.ts +48 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Element.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Event.d.ts +43 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Event.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Node.d.ts +13 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Node.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Text.d.ts +11 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Text.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/index.d.ts +24 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/nuclo.polyfill.cjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/nuclo.polyfill.cjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/nuclo.polyfill.mjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/nuclo.polyfill.mjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/render.d.ts +33 -0
- package/templates/basic/node_modules/nuclo/dist/render.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/conditions.d.ts +4 -0
- package/templates/basic/node_modules/nuclo/dist/shared/conditions.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/dom.d.ts +69 -0
- package/templates/basic/node_modules/nuclo/dist/shared/dom.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/environment.d.ts +5 -0
- package/templates/basic/node_modules/nuclo/dist/shared/environment.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/errors.d.ts +2 -0
- package/templates/basic/node_modules/nuclo/dist/shared/errors.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/renderables.d.ts +4 -0
- package/templates/basic/node_modules/nuclo/dist/shared/renderables.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/strings.d.ts +19 -0
- package/templates/basic/node_modules/nuclo/dist/shared/strings.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/type-guards.d.ts +16 -0
- package/templates/basic/node_modules/nuclo/dist/shared/type-guards.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/index.d.ts +19 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/nuclo.ssr.cjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/nuclo.ssr.cjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/nuclo.ssr.mjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/nuclo.ssr.mjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/render-to-string.d.ts +41 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/render-to-string.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/style/css.d.ts +19 -0
- package/templates/basic/node_modules/nuclo/dist/style/css.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/style/engine.d.ts +34 -0
- package/templates/basic/node_modules/nuclo/dist/style/engine.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/style/index.d.ts +3 -0
- package/templates/basic/node_modules/nuclo/dist/style/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/conditional.d.ts +3 -0
- package/templates/basic/node_modules/nuclo/dist/update/conditional.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/reactive-attributes.d.ts +45 -0
- package/templates/basic/node_modules/nuclo/dist/update/reactive-attributes.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/reactive-text.d.ts +38 -0
- package/templates/basic/node_modules/nuclo/dist/update/reactive-text.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/registry.d.ts +97 -0
- package/templates/basic/node_modules/nuclo/dist/update/registry.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/scope.d.ts +7 -0
- package/templates/basic/node_modules/nuclo/dist/update/scope.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/update.d.ts +4 -0
- package/templates/basic/node_modules/nuclo/dist/update/update.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/when/builder.d.ts +16 -0
- package/templates/basic/node_modules/nuclo/dist/when/builder.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/when/index.d.ts +44 -0
- package/templates/basic/node_modules/nuclo/dist/when/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/when/runtime.d.ts +59 -0
- package/templates/basic/node_modules/nuclo/dist/when/runtime.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/package.json +88 -0
- package/templates/basic/node_modules/nuclo/types/core/base.d.ts +113 -0
- package/templates/basic/node_modules/nuclo/types/features/list.d.ts +38 -0
- package/templates/basic/node_modules/nuclo/types/features/on.d.ts +59 -0
- package/templates/basic/node_modules/nuclo/types/features/render.d.ts +49 -0
- package/templates/basic/node_modules/nuclo/types/features/scope.d.ts +6 -0
- package/templates/basic/node_modules/nuclo/types/features/style.d.ts +77 -0
- package/templates/basic/node_modules/nuclo/types/features/update.d.ts +6 -0
- package/templates/basic/node_modules/nuclo/types/features/when.d.ts +18 -0
- package/templates/basic/node_modules/nuclo/types/html/tags.d.ts +119 -0
- package/templates/basic/node_modules/nuclo/types/index.d.ts +137 -0
- package/templates/basic/node_modules/nuclo/types/polyfill.d.ts +131 -0
- package/templates/basic/node_modules/nuclo/types/ssr.d.ts +45 -0
- package/templates/basic/node_modules/nuclo/types/style.d.ts +404 -0
- package/templates/basic/node_modules/nuclo/types/svg/base.d.ts +118 -0
- package/templates/basic/node_modules/nuclo/types/svg/tags.d.ts +68 -0
- package/templates/basic/node_modules/picocolors/LICENSE +15 -0
- package/templates/basic/node_modules/picocolors/README.md +21 -0
- package/templates/basic/node_modules/picocolors/package.json +25 -0
- package/templates/basic/node_modules/picocolors/picocolors.browser.js +4 -0
- package/templates/basic/node_modules/picocolors/picocolors.d.ts +5 -0
- package/templates/basic/node_modules/picocolors/picocolors.js +75 -0
- package/templates/basic/node_modules/picocolors/types.d.ts +51 -0
- package/templates/basic/node_modules/picomatch/LICENSE +21 -0
- package/templates/basic/node_modules/picomatch/README.md +743 -0
- package/templates/basic/node_modules/picomatch/index.js +17 -0
- package/templates/basic/node_modules/picomatch/lib/constants.js +184 -0
- package/templates/basic/node_modules/picomatch/lib/parse.js +1416 -0
- package/templates/basic/node_modules/picomatch/lib/picomatch.js +361 -0
- package/templates/basic/node_modules/picomatch/lib/scan.js +391 -0
- package/templates/basic/node_modules/picomatch/lib/utils.js +72 -0
- package/templates/basic/node_modules/picomatch/package.json +83 -0
- package/templates/basic/node_modules/picomatch/posix.js +3 -0
- package/templates/basic/node_modules/postcss/LICENSE +20 -0
- package/templates/basic/node_modules/postcss/README.md +25 -0
- package/templates/basic/node_modules/postcss/lib/at-rule.d.ts +139 -0
- package/templates/basic/node_modules/postcss/lib/at-rule.js +25 -0
- package/templates/basic/node_modules/postcss/lib/comment.d.ts +67 -0
- package/templates/basic/node_modules/postcss/lib/comment.js +13 -0
- package/templates/basic/node_modules/postcss/lib/container.d.ts +478 -0
- package/templates/basic/node_modules/postcss/lib/container.js +447 -0
- package/templates/basic/node_modules/postcss/lib/css-syntax-error.d.ts +247 -0
- package/templates/basic/node_modules/postcss/lib/css-syntax-error.js +133 -0
- package/templates/basic/node_modules/postcss/lib/declaration.d.ts +150 -0
- package/templates/basic/node_modules/postcss/lib/declaration.js +24 -0
- package/templates/basic/node_modules/postcss/lib/document.d.ts +68 -0
- package/templates/basic/node_modules/postcss/lib/document.js +33 -0
- package/templates/basic/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- package/templates/basic/node_modules/postcss/lib/fromJSON.js +68 -0
- package/templates/basic/node_modules/postcss/lib/input.d.ts +226 -0
- package/templates/basic/node_modules/postcss/lib/input.js +276 -0
- package/templates/basic/node_modules/postcss/lib/lazy-result.d.ts +189 -0
- package/templates/basic/node_modules/postcss/lib/lazy-result.js +563 -0
- package/templates/basic/node_modules/postcss/lib/list.d.ts +60 -0
- package/templates/basic/node_modules/postcss/lib/list.js +58 -0
- package/templates/basic/node_modules/postcss/lib/map-generator.js +376 -0
- package/templates/basic/node_modules/postcss/lib/no-work-result.d.ts +45 -0
- package/templates/basic/node_modules/postcss/lib/no-work-result.js +137 -0
- package/templates/basic/node_modules/postcss/lib/node.d.ts +555 -0
- package/templates/basic/node_modules/postcss/lib/node.js +456 -0
- package/templates/basic/node_modules/postcss/lib/parse.d.ts +9 -0
- package/templates/basic/node_modules/postcss/lib/parse.js +42 -0
- package/templates/basic/node_modules/postcss/lib/parser.js +618 -0
- package/templates/basic/node_modules/postcss/lib/postcss.d.mts +66 -0
- package/templates/basic/node_modules/postcss/lib/postcss.d.ts +461 -0
- package/templates/basic/node_modules/postcss/lib/postcss.js +101 -0
- package/templates/basic/node_modules/postcss/lib/postcss.mjs +30 -0
- package/templates/basic/node_modules/postcss/lib/previous-map.d.ts +80 -0
- package/templates/basic/node_modules/postcss/lib/previous-map.js +161 -0
- package/templates/basic/node_modules/postcss/lib/processor.d.ts +114 -0
- package/templates/basic/node_modules/postcss/lib/processor.js +67 -0
- package/templates/basic/node_modules/postcss/lib/result.d.ts +204 -0
- package/templates/basic/node_modules/postcss/lib/result.js +42 -0
- package/templates/basic/node_modules/postcss/lib/root.d.ts +86 -0
- package/templates/basic/node_modules/postcss/lib/root.js +61 -0
- package/templates/basic/node_modules/postcss/lib/rule.d.ts +126 -0
- package/templates/basic/node_modules/postcss/lib/rule.js +27 -0
- package/templates/basic/node_modules/postcss/lib/stringifier.d.ts +45 -0
- package/templates/basic/node_modules/postcss/lib/stringifier.js +374 -0
- package/templates/basic/node_modules/postcss/lib/stringify.d.ts +9 -0
- package/templates/basic/node_modules/postcss/lib/stringify.js +11 -0
- package/templates/basic/node_modules/postcss/lib/symbols.js +5 -0
- package/templates/basic/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/templates/basic/node_modules/postcss/lib/tokenize.js +270 -0
- package/templates/basic/node_modules/postcss/lib/warn-once.js +13 -0
- package/templates/basic/node_modules/postcss/lib/warning.d.ts +146 -0
- package/templates/basic/node_modules/postcss/lib/warning.js +37 -0
- package/templates/basic/node_modules/postcss/package.json +88 -0
- package/templates/basic/node_modules/rolldown/LICENSE +25 -0
- package/templates/basic/node_modules/rolldown/README.md +11 -0
- package/templates/basic/node_modules/rolldown/bin/cli.mjs +2 -0
- package/templates/basic/node_modules/rolldown/dist/cli.d.mts +1 -0
- package/templates/basic/node_modules/rolldown/dist/cli.mjs +1202 -0
- package/templates/basic/node_modules/rolldown/dist/config.d.mts +14 -0
- package/templates/basic/node_modules/rolldown/dist/config.mjs +4 -0
- package/templates/basic/node_modules/rolldown/dist/experimental-index.d.mts +280 -0
- package/templates/basic/node_modules/rolldown/dist/experimental-index.mjs +331 -0
- package/templates/basic/node_modules/rolldown/dist/experimental-runtime-types.d.ts +107 -0
- package/templates/basic/node_modules/rolldown/dist/filter-index.d.mts +195 -0
- package/templates/basic/node_modules/rolldown/dist/filter-index.mjs +380 -0
- package/templates/basic/node_modules/rolldown/dist/get-log-filter.d.mts +3 -0
- package/templates/basic/node_modules/rolldown/dist/get-log-filter.mjs +68 -0
- package/templates/basic/node_modules/rolldown/dist/index.d.mts +4 -0
- package/templates/basic/node_modules/rolldown/dist/index.mjs +50 -0
- package/templates/basic/node_modules/rolldown/dist/parallel-plugin-worker.d.mts +1 -0
- package/templates/basic/node_modules/rolldown/dist/parallel-plugin-worker.mjs +29 -0
- package/templates/basic/node_modules/rolldown/dist/parallel-plugin.d.mts +13 -0
- package/templates/basic/node_modules/rolldown/dist/parallel-plugin.mjs +6 -0
- package/templates/basic/node_modules/rolldown/dist/parse-ast-index.d.mts +32 -0
- package/templates/basic/node_modules/rolldown/dist/parse-ast-index.mjs +60 -0
- package/templates/basic/node_modules/rolldown/dist/plugins-index.d.mts +33 -0
- package/templates/basic/node_modules/rolldown/dist/plugins-index.mjs +40 -0
- package/templates/basic/node_modules/rolldown/dist/shared/binding-B1q9aYT-.d.mts +1947 -0
- package/templates/basic/node_modules/rolldown/dist/shared/binding-BmkJW3Wy.mjs +588 -0
- package/templates/basic/node_modules/rolldown/dist/shared/bindingify-input-options-BsDhfYrS.mjs +2240 -0
- package/templates/basic/node_modules/rolldown/dist/shared/constructors-2i1T9YcF.d.mts +36 -0
- package/templates/basic/node_modules/rolldown/dist/shared/constructors-CE6zZSUt.mjs +65 -0
- package/templates/basic/node_modules/rolldown/dist/shared/define-config-BBz954-q.d.mts +3901 -0
- package/templates/basic/node_modules/rolldown/dist/shared/define-config-Demdg3_4.mjs +6 -0
- package/templates/basic/node_modules/rolldown/dist/shared/error-BlQ0-ek7.mjs +85 -0
- package/templates/basic/node_modules/rolldown/dist/shared/get-log-filter-BpNVNJ5-.d.mts +35 -0
- package/templates/basic/node_modules/rolldown/dist/shared/load-config-FRmAU9xl.mjs +120 -0
- package/templates/basic/node_modules/rolldown/dist/shared/logging-BSNejiLS.d.mts +50 -0
- package/templates/basic/node_modules/rolldown/dist/shared/logs-aMKUxRpj.mjs +180 -0
- package/templates/basic/node_modules/rolldown/dist/shared/misc-CoQm4NHO.mjs +21 -0
- package/templates/basic/node_modules/rolldown/dist/shared/normalize-string-or-regex-BYkbbGqQ.mjs +68 -0
- package/templates/basic/node_modules/rolldown/dist/shared/parse-DVMnkavl.mjs +74 -0
- package/templates/basic/node_modules/rolldown/dist/shared/prompt-B1Yc1NPt.mjs +847 -0
- package/templates/basic/node_modules/rolldown/dist/shared/resolve-tsconfig-CdIAR1Eb.mjs +124 -0
- package/templates/basic/node_modules/rolldown/dist/shared/rolldown-build-aV0QeeTW.mjs +3264 -0
- package/templates/basic/node_modules/rolldown/dist/shared/rolldown-tbHvKzVl.mjs +40 -0
- package/templates/basic/node_modules/rolldown/dist/shared/transform-CEmFsvJW.d.mts +149 -0
- package/templates/basic/node_modules/rolldown/dist/shared/watch-DIhJ-T1s.mjs +374 -0
- package/templates/basic/node_modules/rolldown/dist/utils-index.d.mts +376 -0
- package/templates/basic/node_modules/rolldown/dist/utils-index.mjs +2414 -0
- package/templates/basic/node_modules/rolldown/package.json +153 -0
- package/templates/basic/node_modules/source-map-js/LICENSE +28 -0
- package/templates/basic/node_modules/source-map-js/README.md +765 -0
- package/templates/basic/node_modules/source-map-js/lib/array-set.js +121 -0
- package/templates/basic/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/templates/basic/node_modules/source-map-js/lib/base64.js +67 -0
- package/templates/basic/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/templates/basic/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/templates/basic/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/templates/basic/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- package/templates/basic/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/templates/basic/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- package/templates/basic/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/templates/basic/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- package/templates/basic/node_modules/source-map-js/lib/source-node.js +413 -0
- package/templates/basic/node_modules/source-map-js/lib/util.js +594 -0
- package/templates/basic/node_modules/source-map-js/package.json +71 -0
- package/templates/basic/node_modules/source-map-js/source-map.d.ts +104 -0
- package/templates/basic/node_modules/source-map-js/source-map.js +8 -0
- package/templates/basic/node_modules/tinyglobby/LICENSE +21 -0
- package/templates/basic/node_modules/tinyglobby/README.md +25 -0
- package/templates/basic/node_modules/tinyglobby/dist/index.cjs +335 -0
- package/templates/basic/node_modules/tinyglobby/dist/index.d.cts +148 -0
- package/templates/basic/node_modules/tinyglobby/dist/index.d.mts +148 -0
- package/templates/basic/node_modules/tinyglobby/dist/index.mjs +307 -0
- package/templates/basic/node_modules/tinyglobby/package.json +70 -0
- package/templates/basic/node_modules/typescript/LICENSE.txt +55 -0
- package/templates/basic/node_modules/typescript/README.md +50 -0
- package/templates/basic/node_modules/typescript/SECURITY.md +39 -0
- package/templates/basic/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/templates/basic/node_modules/typescript/bin/tsc +2 -0
- package/templates/basic/node_modules/typescript/bin/tsserver +2 -0
- package/templates/basic/node_modules/typescript/lib/_tsc.js +134465 -0
- package/templates/basic/node_modules/typescript/lib/_tsserver.js +659 -0
- package/templates/basic/node_modules/typescript/lib/_typingsInstaller.js +222 -0
- package/templates/basic/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2125 -0
- package/templates/basic/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2125 -0
- package/templates/basic/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/lib.d.ts +20 -0
- package/templates/basic/node_modules/typescript/lib/lib.decorators.d.ts +382 -0
- package/templates/basic/node_modules/typescript/lib/lib.decorators.legacy.d.ts +20 -0
- package/templates/basic/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +18 -0
- package/templates/basic/node_modules/typescript/lib/lib.dom.d.ts +45125 -0
- package/templates/basic/node_modules/typescript/lib/lib.dom.iterable.d.ts +18 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.collection.d.ts +150 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.core.d.ts +595 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.d.ts +26 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.generator.d.ts +75 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.iterable.d.ts +603 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.promise.d.ts +79 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.proxy.d.ts +126 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.reflect.d.ts +142 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.symbol.d.ts +44 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +324 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2016.array.include.d.ts +114 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2016.d.ts +19 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2016.full.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2016.intl.d.ts +29 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +19 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.d.ts +24 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.date.d.ts +29 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.full.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.intl.d.ts +42 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.object.d.ts +47 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +133 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.string.d.ts +43 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +51 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +75 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +51 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.intl.d.ts +81 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.promise.d.ts +28 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.regexp.d.ts +35 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.array.d.ts +77 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.intl.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.object.d.ts +31 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.string.d.ts +35 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.symbol.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.bigint.d.ts +763 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.d.ts +25 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.date.d.ts +40 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.intl.d.ts +472 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.number.d.ts +26 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.promise.d.ts +45 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +39 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.intl.d.ts +164 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.promise.d.ts +46 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.string.d.ts +31 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.array.d.ts +119 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.intl.d.ts +143 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.object.d.ts +24 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.regexp.d.ts +37 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.string.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.array.d.ts +922 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.collection.d.ts +19 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.d.ts +20 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.intl.d.ts +62 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +63 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.collection.d.ts +27 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.d.ts +24 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.object.d.ts +27 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.promise.d.ts +33 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.regexp.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +66 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.string.d.ts +27 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.collection.d.ts +94 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.float16.d.ts +443 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.intl.d.ts +200 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.iterator.d.ts +146 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.promise.d.ts +32 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.regexp.d.ts +30 -0
- package/templates/basic/node_modules/typescript/lib/lib.es5.d.ts +4599 -0
- package/templates/basic/node_modules/typescript/lib/lib.es6.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.array.d.ts +33 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.collection.d.ts +47 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.d.ts +27 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.date.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.decorators.d.ts +26 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.disposable.d.ts +191 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.error.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.intl.d.ts +107 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.temporal.d.ts +485 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.typedarrays.d.ts +90 -0
- package/templates/basic/node_modules/typescript/lib/lib.scripthost.d.ts +320 -0
- package/templates/basic/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +18 -0
- package/templates/basic/node_modules/typescript/lib/lib.webworker.d.ts +15606 -0
- package/templates/basic/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.webworker.iterable.d.ts +18 -0
- package/templates/basic/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2125 -0
- package/templates/basic/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/tsc.js +8 -0
- package/templates/basic/node_modules/typescript/lib/tsserver.js +8 -0
- package/templates/basic/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- package/templates/basic/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- package/templates/basic/node_modules/typescript/lib/typesMap.json +497 -0
- package/templates/basic/node_modules/typescript/lib/typescript.d.ts +11448 -0
- package/templates/basic/node_modules/typescript/lib/typescript.js +201039 -0
- package/templates/basic/node_modules/typescript/lib/typingsInstaller.js +8 -0
- package/templates/basic/node_modules/typescript/lib/watchGuard.js +53 -0
- package/templates/basic/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2125 -0
- package/templates/basic/node_modules/typescript/package.json +118 -0
- package/templates/basic/node_modules/vite/LICENSE.md +2287 -0
- package/templates/basic/node_modules/vite/README.md +20 -0
- package/templates/basic/node_modules/vite/bin/openChrome.js +68 -0
- package/templates/basic/node_modules/vite/bin/vite.js +79 -0
- package/templates/basic/node_modules/vite/client.d.ts +285 -0
- package/templates/basic/node_modules/vite/dist/client/client.mjs +1269 -0
- package/templates/basic/node_modules/vite/dist/client/env.mjs +18 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/build.js +5371 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/dist.js +6784 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/lib.js +371 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/logger.js +364 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts +96 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/node.js +35836 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/postcss-import.js +467 -0
- package/templates/basic/node_modules/vite/dist/node/cli.js +836 -0
- package/templates/basic/node_modules/vite/dist/node/index.d.ts +4011 -0
- package/templates/basic/node_modules/vite/dist/node/index.js +3 -0
- package/templates/basic/node_modules/vite/dist/node/internal.d.ts +2 -0
- package/templates/basic/node_modules/vite/dist/node/internal.js +2 -0
- package/templates/basic/node_modules/vite/dist/node/module-runner.d.ts +314 -0
- package/templates/basic/node_modules/vite/dist/node/module-runner.js +1274 -0
- package/templates/basic/node_modules/vite/misc/false.js +1 -0
- package/templates/basic/node_modules/vite/misc/true.js +1 -0
- package/templates/basic/node_modules/vite/package.json +194 -0
- package/templates/basic/node_modules/vite/types/customEvent.d.ts +79 -0
- package/templates/basic/node_modules/vite/types/hmrPayload.d.ts +80 -0
- package/templates/basic/node_modules/vite/types/hot.d.ts +39 -0
- package/templates/basic/node_modules/vite/types/import-meta.d.ts +5 -0
- package/templates/basic/node_modules/vite/types/importGlob.d.ts +131 -0
- package/templates/basic/node_modules/vite/types/importMeta.d.ts +30 -0
- package/templates/basic/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts +44 -0
- package/templates/basic/node_modules/vite/types/internal/esbuildOptions.d.ts +28 -0
- package/templates/basic/node_modules/vite/types/internal/lightningcssOptions.d.ts +18 -0
- package/templates/basic/node_modules/vite/types/internal/rollupTypeCompat.d.ts +24 -0
- package/templates/basic/node_modules/vite/types/internal/terserOptions.d.ts +11 -0
- package/templates/basic/node_modules/vite/types/metadata.d.ts +47 -0
- package/templates/basic/package-lock.json +926 -0
- package/templates/basic/package.json +18 -0
- package/templates/basic/public/apple-touch-icon.png +0 -0
- package/templates/basic/public/favicon-16x16.png +0 -0
- package/templates/basic/public/favicon-32x32.png +0 -0
- package/templates/basic/public/favicon.ico +0 -0
- package/templates/basic/public/icon-192.png +0 -0
- package/templates/basic/public/icon-512.png +0 -0
- package/templates/basic/public/nuclo-logo.svg +24 -0
- package/templates/basic/public/site.webmanifest +23 -0
- package/templates/basic/src/app.ts +37 -0
- package/templates/basic/src/main.ts +5 -0
- package/templates/basic/src/styles.ts +85 -0
- package/templates/basic/tsconfig.json +23 -0
- package/templates/basic/vite.config.ts +3 -0
|
@@ -0,0 +1,926 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nuclo-app",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "nuclo-app",
|
|
9
|
+
"version": "0.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"nuclo": "^0.2.13"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"typescript": "^6.0.3",
|
|
15
|
+
"vite": "^8.0.14"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"node_modules/@emnapi/core": {
|
|
19
|
+
"version": "1.11.1",
|
|
20
|
+
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
|
|
21
|
+
"integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
|
|
22
|
+
"dev": true,
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"optional": true,
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@emnapi/wasi-threads": "1.2.2",
|
|
27
|
+
"tslib": "^2.4.0"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"node_modules/@emnapi/runtime": {
|
|
31
|
+
"version": "1.11.1",
|
|
32
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
|
|
33
|
+
"integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
|
|
34
|
+
"dev": true,
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"optional": true,
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"tslib": "^2.4.0"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"node_modules/@emnapi/wasi-threads": {
|
|
42
|
+
"version": "1.2.2",
|
|
43
|
+
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
|
|
44
|
+
"integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
|
|
45
|
+
"dev": true,
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"optional": true,
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"tslib": "^2.4.0"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"node_modules/@napi-rs/wasm-runtime": {
|
|
53
|
+
"version": "1.1.6",
|
|
54
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz",
|
|
55
|
+
"integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==",
|
|
56
|
+
"dev": true,
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"optional": true,
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@tybys/wasm-util": "^0.10.3"
|
|
61
|
+
},
|
|
62
|
+
"funding": {
|
|
63
|
+
"type": "github",
|
|
64
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"@emnapi/core": "^1.7.1",
|
|
68
|
+
"@emnapi/runtime": "^1.7.1"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"node_modules/@oxc-project/types": {
|
|
72
|
+
"version": "0.138.0",
|
|
73
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.138.0.tgz",
|
|
74
|
+
"integrity": "sha512-1a7ZKmrRTCoN1XMZ4L0PyyqrMnrNlLyPuOkdSX2MZg7IiIGRUyurNhAm73ptDOraoBcIordsIGKNPKUzy3ZmfA==",
|
|
75
|
+
"dev": true,
|
|
76
|
+
"license": "MIT",
|
|
77
|
+
"funding": {
|
|
78
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"node_modules/@rolldown/binding-android-arm64": {
|
|
82
|
+
"version": "1.1.4",
|
|
83
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.1.4.tgz",
|
|
84
|
+
"integrity": "sha512-EZLpf/8y7GXkkra90ML47kzik/GMP3EMcE9bPyHmRfxLC6z9+aW5A8poCsoxjrT5GfEcNAAvWwUHjvP1pUQkfw==",
|
|
85
|
+
"cpu": [
|
|
86
|
+
"arm64"
|
|
87
|
+
],
|
|
88
|
+
"dev": true,
|
|
89
|
+
"license": "MIT",
|
|
90
|
+
"optional": true,
|
|
91
|
+
"os": [
|
|
92
|
+
"android"
|
|
93
|
+
],
|
|
94
|
+
"engines": {
|
|
95
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"node_modules/@rolldown/binding-darwin-arm64": {
|
|
99
|
+
"version": "1.1.4",
|
|
100
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.1.4.tgz",
|
|
101
|
+
"integrity": "sha512-aUi+HBvmYb7j8krl1+qJgkG8C17fO79gk3c+jPw4S8glRFc1DTija9S3EyaTSQUm5GJXYKDAsugBEhFHH2vYiQ==",
|
|
102
|
+
"cpu": [
|
|
103
|
+
"arm64"
|
|
104
|
+
],
|
|
105
|
+
"dev": true,
|
|
106
|
+
"license": "MIT",
|
|
107
|
+
"optional": true,
|
|
108
|
+
"os": [
|
|
109
|
+
"darwin"
|
|
110
|
+
],
|
|
111
|
+
"engines": {
|
|
112
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"node_modules/@rolldown/binding-darwin-x64": {
|
|
116
|
+
"version": "1.1.4",
|
|
117
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.1.4.tgz",
|
|
118
|
+
"integrity": "sha512-F7hHC3gwY11+vByKPRWqwGbeXWVgKmL+pTGCinaEhdihzBV2aQ0fvZOch9cXYUOKuKKq429HeYXOqQLc7wFCEg==",
|
|
119
|
+
"cpu": [
|
|
120
|
+
"x64"
|
|
121
|
+
],
|
|
122
|
+
"dev": true,
|
|
123
|
+
"license": "MIT",
|
|
124
|
+
"optional": true,
|
|
125
|
+
"os": [
|
|
126
|
+
"darwin"
|
|
127
|
+
],
|
|
128
|
+
"engines": {
|
|
129
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"node_modules/@rolldown/binding-freebsd-x64": {
|
|
133
|
+
"version": "1.1.4",
|
|
134
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.1.4.tgz",
|
|
135
|
+
"integrity": "sha512-sI5yw+7s92SK6odiEhD5lKCBlWcpjHS5qyqpVQbZAJ0fIzEUXrmbl3DH2ybR3PZogulNJF+COLtmA8hUfvkCCQ==",
|
|
136
|
+
"cpu": [
|
|
137
|
+
"x64"
|
|
138
|
+
],
|
|
139
|
+
"dev": true,
|
|
140
|
+
"license": "MIT",
|
|
141
|
+
"optional": true,
|
|
142
|
+
"os": [
|
|
143
|
+
"freebsd"
|
|
144
|
+
],
|
|
145
|
+
"engines": {
|
|
146
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
|
|
150
|
+
"version": "1.1.4",
|
|
151
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.1.4.tgz",
|
|
152
|
+
"integrity": "sha512-mCi0OKgEieFircrtVYmQAFGszRtMnZ6fpZAXrxanXAu7lqZcsK1E1RAaZNG0uKAnxox3B1f4EyQNnoyMfN1vAA==",
|
|
153
|
+
"cpu": [
|
|
154
|
+
"arm"
|
|
155
|
+
],
|
|
156
|
+
"dev": true,
|
|
157
|
+
"license": "MIT",
|
|
158
|
+
"optional": true,
|
|
159
|
+
"os": [
|
|
160
|
+
"linux"
|
|
161
|
+
],
|
|
162
|
+
"engines": {
|
|
163
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"node_modules/@rolldown/binding-linux-arm64-gnu": {
|
|
167
|
+
"version": "1.1.4",
|
|
168
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.1.4.tgz",
|
|
169
|
+
"integrity": "sha512-B9Ial3Kv5sh0SHnB1g/QWcUQCEvCF6QKGAl4zXypYj65mVI+B4AhFBwPtSN7pDrJeIx8Z7zdy4ntx+wQABom7w==",
|
|
170
|
+
"cpu": [
|
|
171
|
+
"arm64"
|
|
172
|
+
],
|
|
173
|
+
"dev": true,
|
|
174
|
+
"libc": [
|
|
175
|
+
"glibc"
|
|
176
|
+
],
|
|
177
|
+
"license": "MIT",
|
|
178
|
+
"optional": true,
|
|
179
|
+
"os": [
|
|
180
|
+
"linux"
|
|
181
|
+
],
|
|
182
|
+
"engines": {
|
|
183
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"node_modules/@rolldown/binding-linux-arm64-musl": {
|
|
187
|
+
"version": "1.1.4",
|
|
188
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.1.4.tgz",
|
|
189
|
+
"integrity": "sha512-lZVym0PuHE1KZ22gmFTC15lAkrg9iTszR617oYRB/iPY1A56ywoJzVKOJBKaot5RiikCObmur6pogpse3gRcng==",
|
|
190
|
+
"cpu": [
|
|
191
|
+
"arm64"
|
|
192
|
+
],
|
|
193
|
+
"dev": true,
|
|
194
|
+
"libc": [
|
|
195
|
+
"musl"
|
|
196
|
+
],
|
|
197
|
+
"license": "MIT",
|
|
198
|
+
"optional": true,
|
|
199
|
+
"os": [
|
|
200
|
+
"linux"
|
|
201
|
+
],
|
|
202
|
+
"engines": {
|
|
203
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"node_modules/@rolldown/binding-linux-ppc64-gnu": {
|
|
207
|
+
"version": "1.1.4",
|
|
208
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.1.4.tgz",
|
|
209
|
+
"integrity": "sha512-t2DNiLJWNTbnEHyUzTumldML6ET4/g16467LZoDDJ3tSxGvguL5/NyC2lCsNKuyRycg9XeDQF5SSv+TNOhQEXg==",
|
|
210
|
+
"cpu": [
|
|
211
|
+
"ppc64"
|
|
212
|
+
],
|
|
213
|
+
"dev": true,
|
|
214
|
+
"libc": [
|
|
215
|
+
"glibc"
|
|
216
|
+
],
|
|
217
|
+
"license": "MIT",
|
|
218
|
+
"optional": true,
|
|
219
|
+
"os": [
|
|
220
|
+
"linux"
|
|
221
|
+
],
|
|
222
|
+
"engines": {
|
|
223
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"node_modules/@rolldown/binding-linux-s390x-gnu": {
|
|
227
|
+
"version": "1.1.4",
|
|
228
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.1.4.tgz",
|
|
229
|
+
"integrity": "sha512-0WIRnL1Uw4BvTZRLQt+PVgo6ZKTJadlC2btP+/EOXv2f/DWbY0rEgl+y834mIVwP1FkTlWVTrGGJXf12lru7EQ==",
|
|
230
|
+
"cpu": [
|
|
231
|
+
"s390x"
|
|
232
|
+
],
|
|
233
|
+
"dev": true,
|
|
234
|
+
"libc": [
|
|
235
|
+
"glibc"
|
|
236
|
+
],
|
|
237
|
+
"license": "MIT",
|
|
238
|
+
"optional": true,
|
|
239
|
+
"os": [
|
|
240
|
+
"linux"
|
|
241
|
+
],
|
|
242
|
+
"engines": {
|
|
243
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"node_modules/@rolldown/binding-linux-x64-gnu": {
|
|
247
|
+
"version": "1.1.4",
|
|
248
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.1.4.tgz",
|
|
249
|
+
"integrity": "sha512-JWtGshGfX+oENAKonoNkqEJX+7hC8yfhi9GUyPX1VX4mdh1y5r+ZiJLR5XzAB0aoP6s/PcILsGjKq8O0mm24bw==",
|
|
250
|
+
"cpu": [
|
|
251
|
+
"x64"
|
|
252
|
+
],
|
|
253
|
+
"dev": true,
|
|
254
|
+
"libc": [
|
|
255
|
+
"glibc"
|
|
256
|
+
],
|
|
257
|
+
"license": "MIT",
|
|
258
|
+
"optional": true,
|
|
259
|
+
"os": [
|
|
260
|
+
"linux"
|
|
261
|
+
],
|
|
262
|
+
"engines": {
|
|
263
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"node_modules/@rolldown/binding-linux-x64-musl": {
|
|
267
|
+
"version": "1.1.4",
|
|
268
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.1.4.tgz",
|
|
269
|
+
"integrity": "sha512-rT6yQcxUuXs4CnbofqwHRRV0iem349rLMYpTjkgQGLjrY4ado/eDzwPZPTCgTOlF6Nkp8NEv70yLMTn6qkWxsQ==",
|
|
270
|
+
"cpu": [
|
|
271
|
+
"x64"
|
|
272
|
+
],
|
|
273
|
+
"dev": true,
|
|
274
|
+
"libc": [
|
|
275
|
+
"musl"
|
|
276
|
+
],
|
|
277
|
+
"license": "MIT",
|
|
278
|
+
"optional": true,
|
|
279
|
+
"os": [
|
|
280
|
+
"linux"
|
|
281
|
+
],
|
|
282
|
+
"engines": {
|
|
283
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"node_modules/@rolldown/binding-openharmony-arm64": {
|
|
287
|
+
"version": "1.1.4",
|
|
288
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.1.4.tgz",
|
|
289
|
+
"integrity": "sha512-KXMGoboq5cyaCQjDA4GLuRiOwBQ0EyFnJoVViLeZ45/3rFItRODEr+NdsBcVpll40hhNArlm/speWGRvj08LzA==",
|
|
290
|
+
"cpu": [
|
|
291
|
+
"arm64"
|
|
292
|
+
],
|
|
293
|
+
"dev": true,
|
|
294
|
+
"license": "MIT",
|
|
295
|
+
"optional": true,
|
|
296
|
+
"os": [
|
|
297
|
+
"openharmony"
|
|
298
|
+
],
|
|
299
|
+
"engines": {
|
|
300
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"node_modules/@rolldown/binding-wasm32-wasi": {
|
|
304
|
+
"version": "1.1.4",
|
|
305
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.1.4.tgz",
|
|
306
|
+
"integrity": "sha512-5K83rb36oJiY7BCyE9zLZtGcPV4g5wvq+xwdO0XPIwDVZI8cyB/AUjkNXGb92/rnmezEkjMOpgY61rtwjQtFwg==",
|
|
307
|
+
"cpu": [
|
|
308
|
+
"wasm32"
|
|
309
|
+
],
|
|
310
|
+
"dev": true,
|
|
311
|
+
"license": "MIT",
|
|
312
|
+
"optional": true,
|
|
313
|
+
"dependencies": {
|
|
314
|
+
"@emnapi/core": "1.11.1",
|
|
315
|
+
"@emnapi/runtime": "1.11.1",
|
|
316
|
+
"@napi-rs/wasm-runtime": "^1.1.6"
|
|
317
|
+
},
|
|
318
|
+
"engines": {
|
|
319
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"node_modules/@rolldown/binding-win32-arm64-msvc": {
|
|
323
|
+
"version": "1.1.4",
|
|
324
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.1.4.tgz",
|
|
325
|
+
"integrity": "sha512-PnWBtw3TV5KOg69HQQDR0mnQuyCmSGR2pAB4DC1rPF808fgKeTUMj2EOEyKATpgiuxuR5APQmiDO7PDgEjTFSA==",
|
|
326
|
+
"cpu": [
|
|
327
|
+
"arm64"
|
|
328
|
+
],
|
|
329
|
+
"dev": true,
|
|
330
|
+
"license": "MIT",
|
|
331
|
+
"optional": true,
|
|
332
|
+
"os": [
|
|
333
|
+
"win32"
|
|
334
|
+
],
|
|
335
|
+
"engines": {
|
|
336
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
"node_modules/@rolldown/binding-win32-x64-msvc": {
|
|
340
|
+
"version": "1.1.4",
|
|
341
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.1.4.tgz",
|
|
342
|
+
"integrity": "sha512-M1lpniBePobTfsa7Ks9a199e1akxsXn+GYBUKsEzv3YFzOm1HJAMNwKI3qr0Zq+mxwx9gOZoTdP1yXRYsZUocQ==",
|
|
343
|
+
"cpu": [
|
|
344
|
+
"x64"
|
|
345
|
+
],
|
|
346
|
+
"dev": true,
|
|
347
|
+
"license": "MIT",
|
|
348
|
+
"optional": true,
|
|
349
|
+
"os": [
|
|
350
|
+
"win32"
|
|
351
|
+
],
|
|
352
|
+
"engines": {
|
|
353
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"node_modules/@rolldown/pluginutils": {
|
|
357
|
+
"version": "1.0.1",
|
|
358
|
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
|
|
359
|
+
"integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
|
|
360
|
+
"dev": true,
|
|
361
|
+
"license": "MIT"
|
|
362
|
+
},
|
|
363
|
+
"node_modules/@tybys/wasm-util": {
|
|
364
|
+
"version": "0.10.3",
|
|
365
|
+
"resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
|
|
366
|
+
"integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
|
|
367
|
+
"dev": true,
|
|
368
|
+
"license": "MIT",
|
|
369
|
+
"optional": true,
|
|
370
|
+
"dependencies": {
|
|
371
|
+
"tslib": "^2.4.0"
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
"node_modules/detect-libc": {
|
|
375
|
+
"version": "2.1.2",
|
|
376
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
377
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
378
|
+
"dev": true,
|
|
379
|
+
"license": "Apache-2.0",
|
|
380
|
+
"engines": {
|
|
381
|
+
"node": ">=8"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"node_modules/fdir": {
|
|
385
|
+
"version": "6.5.0",
|
|
386
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
387
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
388
|
+
"dev": true,
|
|
389
|
+
"license": "MIT",
|
|
390
|
+
"engines": {
|
|
391
|
+
"node": ">=12.0.0"
|
|
392
|
+
},
|
|
393
|
+
"peerDependencies": {
|
|
394
|
+
"picomatch": "^3 || ^4"
|
|
395
|
+
},
|
|
396
|
+
"peerDependenciesMeta": {
|
|
397
|
+
"picomatch": {
|
|
398
|
+
"optional": true
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
"node_modules/fsevents": {
|
|
403
|
+
"version": "2.3.3",
|
|
404
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
405
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
406
|
+
"dev": true,
|
|
407
|
+
"hasInstallScript": true,
|
|
408
|
+
"license": "MIT",
|
|
409
|
+
"optional": true,
|
|
410
|
+
"os": [
|
|
411
|
+
"darwin"
|
|
412
|
+
],
|
|
413
|
+
"engines": {
|
|
414
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"node_modules/lightningcss": {
|
|
418
|
+
"version": "1.32.0",
|
|
419
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
|
420
|
+
"integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
|
|
421
|
+
"dev": true,
|
|
422
|
+
"license": "MPL-2.0",
|
|
423
|
+
"dependencies": {
|
|
424
|
+
"detect-libc": "^2.0.3"
|
|
425
|
+
},
|
|
426
|
+
"engines": {
|
|
427
|
+
"node": ">= 12.0.0"
|
|
428
|
+
},
|
|
429
|
+
"funding": {
|
|
430
|
+
"type": "opencollective",
|
|
431
|
+
"url": "https://opencollective.com/parcel"
|
|
432
|
+
},
|
|
433
|
+
"optionalDependencies": {
|
|
434
|
+
"lightningcss-android-arm64": "1.32.0",
|
|
435
|
+
"lightningcss-darwin-arm64": "1.32.0",
|
|
436
|
+
"lightningcss-darwin-x64": "1.32.0",
|
|
437
|
+
"lightningcss-freebsd-x64": "1.32.0",
|
|
438
|
+
"lightningcss-linux-arm-gnueabihf": "1.32.0",
|
|
439
|
+
"lightningcss-linux-arm64-gnu": "1.32.0",
|
|
440
|
+
"lightningcss-linux-arm64-musl": "1.32.0",
|
|
441
|
+
"lightningcss-linux-x64-gnu": "1.32.0",
|
|
442
|
+
"lightningcss-linux-x64-musl": "1.32.0",
|
|
443
|
+
"lightningcss-win32-arm64-msvc": "1.32.0",
|
|
444
|
+
"lightningcss-win32-x64-msvc": "1.32.0"
|
|
445
|
+
}
|
|
446
|
+
},
|
|
447
|
+
"node_modules/lightningcss-android-arm64": {
|
|
448
|
+
"version": "1.32.0",
|
|
449
|
+
"resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
|
|
450
|
+
"integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
|
|
451
|
+
"cpu": [
|
|
452
|
+
"arm64"
|
|
453
|
+
],
|
|
454
|
+
"dev": true,
|
|
455
|
+
"license": "MPL-2.0",
|
|
456
|
+
"optional": true,
|
|
457
|
+
"os": [
|
|
458
|
+
"android"
|
|
459
|
+
],
|
|
460
|
+
"engines": {
|
|
461
|
+
"node": ">= 12.0.0"
|
|
462
|
+
},
|
|
463
|
+
"funding": {
|
|
464
|
+
"type": "opencollective",
|
|
465
|
+
"url": "https://opencollective.com/parcel"
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
"node_modules/lightningcss-darwin-arm64": {
|
|
469
|
+
"version": "1.32.0",
|
|
470
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
|
|
471
|
+
"integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
|
|
472
|
+
"cpu": [
|
|
473
|
+
"arm64"
|
|
474
|
+
],
|
|
475
|
+
"dev": true,
|
|
476
|
+
"license": "MPL-2.0",
|
|
477
|
+
"optional": true,
|
|
478
|
+
"os": [
|
|
479
|
+
"darwin"
|
|
480
|
+
],
|
|
481
|
+
"engines": {
|
|
482
|
+
"node": ">= 12.0.0"
|
|
483
|
+
},
|
|
484
|
+
"funding": {
|
|
485
|
+
"type": "opencollective",
|
|
486
|
+
"url": "https://opencollective.com/parcel"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
"node_modules/lightningcss-darwin-x64": {
|
|
490
|
+
"version": "1.32.0",
|
|
491
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
|
|
492
|
+
"integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
|
|
493
|
+
"cpu": [
|
|
494
|
+
"x64"
|
|
495
|
+
],
|
|
496
|
+
"dev": true,
|
|
497
|
+
"license": "MPL-2.0",
|
|
498
|
+
"optional": true,
|
|
499
|
+
"os": [
|
|
500
|
+
"darwin"
|
|
501
|
+
],
|
|
502
|
+
"engines": {
|
|
503
|
+
"node": ">= 12.0.0"
|
|
504
|
+
},
|
|
505
|
+
"funding": {
|
|
506
|
+
"type": "opencollective",
|
|
507
|
+
"url": "https://opencollective.com/parcel"
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
"node_modules/lightningcss-freebsd-x64": {
|
|
511
|
+
"version": "1.32.0",
|
|
512
|
+
"resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
|
|
513
|
+
"integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
|
|
514
|
+
"cpu": [
|
|
515
|
+
"x64"
|
|
516
|
+
],
|
|
517
|
+
"dev": true,
|
|
518
|
+
"license": "MPL-2.0",
|
|
519
|
+
"optional": true,
|
|
520
|
+
"os": [
|
|
521
|
+
"freebsd"
|
|
522
|
+
],
|
|
523
|
+
"engines": {
|
|
524
|
+
"node": ">= 12.0.0"
|
|
525
|
+
},
|
|
526
|
+
"funding": {
|
|
527
|
+
"type": "opencollective",
|
|
528
|
+
"url": "https://opencollective.com/parcel"
|
|
529
|
+
}
|
|
530
|
+
},
|
|
531
|
+
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
532
|
+
"version": "1.32.0",
|
|
533
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
|
|
534
|
+
"integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
|
|
535
|
+
"cpu": [
|
|
536
|
+
"arm"
|
|
537
|
+
],
|
|
538
|
+
"dev": true,
|
|
539
|
+
"license": "MPL-2.0",
|
|
540
|
+
"optional": true,
|
|
541
|
+
"os": [
|
|
542
|
+
"linux"
|
|
543
|
+
],
|
|
544
|
+
"engines": {
|
|
545
|
+
"node": ">= 12.0.0"
|
|
546
|
+
},
|
|
547
|
+
"funding": {
|
|
548
|
+
"type": "opencollective",
|
|
549
|
+
"url": "https://opencollective.com/parcel"
|
|
550
|
+
}
|
|
551
|
+
},
|
|
552
|
+
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
553
|
+
"version": "1.32.0",
|
|
554
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
|
|
555
|
+
"integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
|
|
556
|
+
"cpu": [
|
|
557
|
+
"arm64"
|
|
558
|
+
],
|
|
559
|
+
"dev": true,
|
|
560
|
+
"libc": [
|
|
561
|
+
"glibc"
|
|
562
|
+
],
|
|
563
|
+
"license": "MPL-2.0",
|
|
564
|
+
"optional": true,
|
|
565
|
+
"os": [
|
|
566
|
+
"linux"
|
|
567
|
+
],
|
|
568
|
+
"engines": {
|
|
569
|
+
"node": ">= 12.0.0"
|
|
570
|
+
},
|
|
571
|
+
"funding": {
|
|
572
|
+
"type": "opencollective",
|
|
573
|
+
"url": "https://opencollective.com/parcel"
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
"node_modules/lightningcss-linux-arm64-musl": {
|
|
577
|
+
"version": "1.32.0",
|
|
578
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
|
|
579
|
+
"integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
|
|
580
|
+
"cpu": [
|
|
581
|
+
"arm64"
|
|
582
|
+
],
|
|
583
|
+
"dev": true,
|
|
584
|
+
"libc": [
|
|
585
|
+
"musl"
|
|
586
|
+
],
|
|
587
|
+
"license": "MPL-2.0",
|
|
588
|
+
"optional": true,
|
|
589
|
+
"os": [
|
|
590
|
+
"linux"
|
|
591
|
+
],
|
|
592
|
+
"engines": {
|
|
593
|
+
"node": ">= 12.0.0"
|
|
594
|
+
},
|
|
595
|
+
"funding": {
|
|
596
|
+
"type": "opencollective",
|
|
597
|
+
"url": "https://opencollective.com/parcel"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"node_modules/lightningcss-linux-x64-gnu": {
|
|
601
|
+
"version": "1.32.0",
|
|
602
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
|
|
603
|
+
"integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
|
|
604
|
+
"cpu": [
|
|
605
|
+
"x64"
|
|
606
|
+
],
|
|
607
|
+
"dev": true,
|
|
608
|
+
"libc": [
|
|
609
|
+
"glibc"
|
|
610
|
+
],
|
|
611
|
+
"license": "MPL-2.0",
|
|
612
|
+
"optional": true,
|
|
613
|
+
"os": [
|
|
614
|
+
"linux"
|
|
615
|
+
],
|
|
616
|
+
"engines": {
|
|
617
|
+
"node": ">= 12.0.0"
|
|
618
|
+
},
|
|
619
|
+
"funding": {
|
|
620
|
+
"type": "opencollective",
|
|
621
|
+
"url": "https://opencollective.com/parcel"
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"node_modules/lightningcss-linux-x64-musl": {
|
|
625
|
+
"version": "1.32.0",
|
|
626
|
+
"resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
|
|
627
|
+
"integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
|
|
628
|
+
"cpu": [
|
|
629
|
+
"x64"
|
|
630
|
+
],
|
|
631
|
+
"dev": true,
|
|
632
|
+
"libc": [
|
|
633
|
+
"musl"
|
|
634
|
+
],
|
|
635
|
+
"license": "MPL-2.0",
|
|
636
|
+
"optional": true,
|
|
637
|
+
"os": [
|
|
638
|
+
"linux"
|
|
639
|
+
],
|
|
640
|
+
"engines": {
|
|
641
|
+
"node": ">= 12.0.0"
|
|
642
|
+
},
|
|
643
|
+
"funding": {
|
|
644
|
+
"type": "opencollective",
|
|
645
|
+
"url": "https://opencollective.com/parcel"
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
649
|
+
"version": "1.32.0",
|
|
650
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
|
|
651
|
+
"integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
|
|
652
|
+
"cpu": [
|
|
653
|
+
"arm64"
|
|
654
|
+
],
|
|
655
|
+
"dev": true,
|
|
656
|
+
"license": "MPL-2.0",
|
|
657
|
+
"optional": true,
|
|
658
|
+
"os": [
|
|
659
|
+
"win32"
|
|
660
|
+
],
|
|
661
|
+
"engines": {
|
|
662
|
+
"node": ">= 12.0.0"
|
|
663
|
+
},
|
|
664
|
+
"funding": {
|
|
665
|
+
"type": "opencollective",
|
|
666
|
+
"url": "https://opencollective.com/parcel"
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"node_modules/lightningcss-win32-x64-msvc": {
|
|
670
|
+
"version": "1.32.0",
|
|
671
|
+
"resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
|
|
672
|
+
"integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
|
|
673
|
+
"cpu": [
|
|
674
|
+
"x64"
|
|
675
|
+
],
|
|
676
|
+
"dev": true,
|
|
677
|
+
"license": "MPL-2.0",
|
|
678
|
+
"optional": true,
|
|
679
|
+
"os": [
|
|
680
|
+
"win32"
|
|
681
|
+
],
|
|
682
|
+
"engines": {
|
|
683
|
+
"node": ">= 12.0.0"
|
|
684
|
+
},
|
|
685
|
+
"funding": {
|
|
686
|
+
"type": "opencollective",
|
|
687
|
+
"url": "https://opencollective.com/parcel"
|
|
688
|
+
}
|
|
689
|
+
},
|
|
690
|
+
"node_modules/nanoid": {
|
|
691
|
+
"version": "3.3.15",
|
|
692
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.15.tgz",
|
|
693
|
+
"integrity": "sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==",
|
|
694
|
+
"dev": true,
|
|
695
|
+
"funding": [
|
|
696
|
+
{
|
|
697
|
+
"type": "github",
|
|
698
|
+
"url": "https://github.com/sponsors/ai"
|
|
699
|
+
}
|
|
700
|
+
],
|
|
701
|
+
"license": "MIT",
|
|
702
|
+
"bin": {
|
|
703
|
+
"nanoid": "bin/nanoid.cjs"
|
|
704
|
+
},
|
|
705
|
+
"engines": {
|
|
706
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"node_modules/nuclo": {
|
|
710
|
+
"version": "0.2.13",
|
|
711
|
+
"resolved": "https://registry.npmjs.org/nuclo/-/nuclo-0.2.13.tgz",
|
|
712
|
+
"integrity": "sha512-aClS93baCZQtFPPGHQUV40kZKyPIFk5Pj4YLCBdHXa8aXbcLn09k/mEBD7VTS2q/EX6G/3vuO6Dh+gnE7GvQ/A==",
|
|
713
|
+
"license": "MIT"
|
|
714
|
+
},
|
|
715
|
+
"node_modules/picocolors": {
|
|
716
|
+
"version": "1.1.1",
|
|
717
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
718
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
719
|
+
"dev": true,
|
|
720
|
+
"license": "ISC"
|
|
721
|
+
},
|
|
722
|
+
"node_modules/picomatch": {
|
|
723
|
+
"version": "4.0.5",
|
|
724
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
|
|
725
|
+
"integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
|
|
726
|
+
"dev": true,
|
|
727
|
+
"license": "MIT",
|
|
728
|
+
"engines": {
|
|
729
|
+
"node": ">=12"
|
|
730
|
+
},
|
|
731
|
+
"funding": {
|
|
732
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
"node_modules/postcss": {
|
|
736
|
+
"version": "8.5.16",
|
|
737
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.16.tgz",
|
|
738
|
+
"integrity": "sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg==",
|
|
739
|
+
"dev": true,
|
|
740
|
+
"funding": [
|
|
741
|
+
{
|
|
742
|
+
"type": "opencollective",
|
|
743
|
+
"url": "https://opencollective.com/postcss/"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"type": "tidelift",
|
|
747
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"type": "github",
|
|
751
|
+
"url": "https://github.com/sponsors/ai"
|
|
752
|
+
}
|
|
753
|
+
],
|
|
754
|
+
"license": "MIT",
|
|
755
|
+
"dependencies": {
|
|
756
|
+
"nanoid": "^3.3.12",
|
|
757
|
+
"picocolors": "^1.1.1",
|
|
758
|
+
"source-map-js": "^1.2.1"
|
|
759
|
+
},
|
|
760
|
+
"engines": {
|
|
761
|
+
"node": "^10 || ^12 || >=14"
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
"node_modules/rolldown": {
|
|
765
|
+
"version": "1.1.4",
|
|
766
|
+
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.1.4.tgz",
|
|
767
|
+
"integrity": "sha512-IjZYiLxZwpnhwhdBH2ugdTGVSdhCQUmLxLoqyjiL0JxYjyRst+5a0P3xfrTxJ5F638j4Mvvw5FAX5XE6eHpXbA==",
|
|
768
|
+
"dev": true,
|
|
769
|
+
"license": "MIT",
|
|
770
|
+
"dependencies": {
|
|
771
|
+
"@oxc-project/types": "=0.138.0",
|
|
772
|
+
"@rolldown/pluginutils": "^1.0.0"
|
|
773
|
+
},
|
|
774
|
+
"bin": {
|
|
775
|
+
"rolldown": "bin/cli.mjs"
|
|
776
|
+
},
|
|
777
|
+
"engines": {
|
|
778
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
779
|
+
},
|
|
780
|
+
"optionalDependencies": {
|
|
781
|
+
"@rolldown/binding-android-arm64": "1.1.4",
|
|
782
|
+
"@rolldown/binding-darwin-arm64": "1.1.4",
|
|
783
|
+
"@rolldown/binding-darwin-x64": "1.1.4",
|
|
784
|
+
"@rolldown/binding-freebsd-x64": "1.1.4",
|
|
785
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.1.4",
|
|
786
|
+
"@rolldown/binding-linux-arm64-gnu": "1.1.4",
|
|
787
|
+
"@rolldown/binding-linux-arm64-musl": "1.1.4",
|
|
788
|
+
"@rolldown/binding-linux-ppc64-gnu": "1.1.4",
|
|
789
|
+
"@rolldown/binding-linux-s390x-gnu": "1.1.4",
|
|
790
|
+
"@rolldown/binding-linux-x64-gnu": "1.1.4",
|
|
791
|
+
"@rolldown/binding-linux-x64-musl": "1.1.4",
|
|
792
|
+
"@rolldown/binding-openharmony-arm64": "1.1.4",
|
|
793
|
+
"@rolldown/binding-wasm32-wasi": "1.1.4",
|
|
794
|
+
"@rolldown/binding-win32-arm64-msvc": "1.1.4",
|
|
795
|
+
"@rolldown/binding-win32-x64-msvc": "1.1.4"
|
|
796
|
+
}
|
|
797
|
+
},
|
|
798
|
+
"node_modules/source-map-js": {
|
|
799
|
+
"version": "1.2.1",
|
|
800
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
801
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
802
|
+
"dev": true,
|
|
803
|
+
"license": "BSD-3-Clause",
|
|
804
|
+
"engines": {
|
|
805
|
+
"node": ">=0.10.0"
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
"node_modules/tinyglobby": {
|
|
809
|
+
"version": "0.2.17",
|
|
810
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
811
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
812
|
+
"dev": true,
|
|
813
|
+
"license": "MIT",
|
|
814
|
+
"dependencies": {
|
|
815
|
+
"fdir": "^6.5.0",
|
|
816
|
+
"picomatch": "^4.0.4"
|
|
817
|
+
},
|
|
818
|
+
"engines": {
|
|
819
|
+
"node": ">=12.0.0"
|
|
820
|
+
},
|
|
821
|
+
"funding": {
|
|
822
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
823
|
+
}
|
|
824
|
+
},
|
|
825
|
+
"node_modules/tslib": {
|
|
826
|
+
"version": "2.8.1",
|
|
827
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
828
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
829
|
+
"dev": true,
|
|
830
|
+
"license": "0BSD",
|
|
831
|
+
"optional": true
|
|
832
|
+
},
|
|
833
|
+
"node_modules/typescript": {
|
|
834
|
+
"version": "6.0.3",
|
|
835
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
|
|
836
|
+
"integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
|
|
837
|
+
"dev": true,
|
|
838
|
+
"license": "Apache-2.0",
|
|
839
|
+
"bin": {
|
|
840
|
+
"tsc": "bin/tsc",
|
|
841
|
+
"tsserver": "bin/tsserver"
|
|
842
|
+
},
|
|
843
|
+
"engines": {
|
|
844
|
+
"node": ">=14.17"
|
|
845
|
+
}
|
|
846
|
+
},
|
|
847
|
+
"node_modules/vite": {
|
|
848
|
+
"version": "8.1.3",
|
|
849
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-8.1.3.tgz",
|
|
850
|
+
"integrity": "sha512-Ds+gBRbj0lwRO2Y5hwnUBdxSwlAve9LeRyU4sNnAr0ewW0gWF0n5bgXgUzbgZ49MV9BVUAQUFYVcDUcilUExMA==",
|
|
851
|
+
"dev": true,
|
|
852
|
+
"license": "MIT",
|
|
853
|
+
"dependencies": {
|
|
854
|
+
"lightningcss": "^1.32.0",
|
|
855
|
+
"picomatch": "^4.0.4",
|
|
856
|
+
"postcss": "^8.5.16",
|
|
857
|
+
"rolldown": "~1.1.3",
|
|
858
|
+
"tinyglobby": "^0.2.17"
|
|
859
|
+
},
|
|
860
|
+
"bin": {
|
|
861
|
+
"vite": "bin/vite.js"
|
|
862
|
+
},
|
|
863
|
+
"engines": {
|
|
864
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
865
|
+
},
|
|
866
|
+
"funding": {
|
|
867
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
868
|
+
},
|
|
869
|
+
"optionalDependencies": {
|
|
870
|
+
"fsevents": "~2.3.3"
|
|
871
|
+
},
|
|
872
|
+
"peerDependencies": {
|
|
873
|
+
"@types/node": "^20.19.0 || >=22.12.0",
|
|
874
|
+
"@vitejs/devtools": "^0.3.0",
|
|
875
|
+
"esbuild": "^0.27.0 || ^0.28.0",
|
|
876
|
+
"jiti": ">=1.21.0",
|
|
877
|
+
"less": "^4.0.0",
|
|
878
|
+
"sass": "^1.70.0",
|
|
879
|
+
"sass-embedded": "^1.70.0",
|
|
880
|
+
"stylus": ">=0.54.8",
|
|
881
|
+
"sugarss": "^5.0.0",
|
|
882
|
+
"terser": "^5.16.0",
|
|
883
|
+
"tsx": "^4.8.1",
|
|
884
|
+
"yaml": "^2.4.2"
|
|
885
|
+
},
|
|
886
|
+
"peerDependenciesMeta": {
|
|
887
|
+
"@types/node": {
|
|
888
|
+
"optional": true
|
|
889
|
+
},
|
|
890
|
+
"@vitejs/devtools": {
|
|
891
|
+
"optional": true
|
|
892
|
+
},
|
|
893
|
+
"esbuild": {
|
|
894
|
+
"optional": true
|
|
895
|
+
},
|
|
896
|
+
"jiti": {
|
|
897
|
+
"optional": true
|
|
898
|
+
},
|
|
899
|
+
"less": {
|
|
900
|
+
"optional": true
|
|
901
|
+
},
|
|
902
|
+
"sass": {
|
|
903
|
+
"optional": true
|
|
904
|
+
},
|
|
905
|
+
"sass-embedded": {
|
|
906
|
+
"optional": true
|
|
907
|
+
},
|
|
908
|
+
"stylus": {
|
|
909
|
+
"optional": true
|
|
910
|
+
},
|
|
911
|
+
"sugarss": {
|
|
912
|
+
"optional": true
|
|
913
|
+
},
|
|
914
|
+
"terser": {
|
|
915
|
+
"optional": true
|
|
916
|
+
},
|
|
917
|
+
"tsx": {
|
|
918
|
+
"optional": true
|
|
919
|
+
},
|
|
920
|
+
"yaml": {
|
|
921
|
+
"optional": true
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
}
|