mockaton 13.7.0 → 13.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -8
- package/package.json +5 -3
- package/src/client/ApiConstants.js +0 -2
- package/src/client/Filename.js +2 -2
- package/src/client/app-payload-viewer.js +4 -2
- package/src/client/dir/groupByFolder.js +16 -14
- package/src/server/MockBroker.js +7 -2
- package/src/server/MockDispatcher.js +3 -2
- package/src/server/Mockaton.js +10 -12
- package/src/server/Mockaton.test.js +42 -0
- package/src/server/cli.js +9 -8
- package/src/server/importResolver.js +35 -0
- package/src/server/utils/logger.js +2 -4
- package/src/server/utils/openInBrowser.js +1 -1
- package/vite-plugin/README.md +29 -0
- package/vite-plugin/index.ts +21 -0
- package/vite-plugin/node_modules/.package-lock.json +356 -0
- package/vite-plugin/node_modules/@oxc-project/types/LICENSE +22 -0
- package/vite-plugin/node_modules/@oxc-project/types/README.md +3 -0
- package/vite-plugin/node_modules/@oxc-project/types/package.json +26 -0
- package/vite-plugin/node_modules/@oxc-project/types/types.d.ts +1912 -0
- package/vite-plugin/node_modules/@rolldown/binding-darwin-arm64/README.md +3 -0
- package/vite-plugin/node_modules/@rolldown/binding-darwin-arm64/package.json +37 -0
- package/vite-plugin/node_modules/@rolldown/binding-darwin-arm64/rolldown-binding.darwin-arm64.node +0 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/LICENSE +25 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/README.md +83 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.d.ts +90 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.js +256 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.d.ts +28 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.js +75 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/index.d.ts +3 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/index.js +3 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.d.ts +71 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.js +70 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/index.d.ts +1 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/index.js +1 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/utils.d.ts +2 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/utils.js +17 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/package.json +37 -0
- package/vite-plugin/node_modules/detect-libc/LICENSE +201 -0
- package/vite-plugin/node_modules/detect-libc/README.md +163 -0
- package/vite-plugin/node_modules/detect-libc/index.d.ts +14 -0
- package/vite-plugin/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/vite-plugin/node_modules/detect-libc/lib/elf.js +39 -0
- package/vite-plugin/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/vite-plugin/node_modules/detect-libc/lib/process.js +24 -0
- package/vite-plugin/node_modules/detect-libc/package.json +44 -0
- package/vite-plugin/node_modules/fdir/LICENSE +7 -0
- package/vite-plugin/node_modules/fdir/README.md +91 -0
- package/vite-plugin/node_modules/fdir/dist/index.cjs +588 -0
- package/vite-plugin/node_modules/fdir/dist/index.d.cts +155 -0
- package/vite-plugin/node_modules/fdir/dist/index.d.mts +155 -0
- package/vite-plugin/node_modules/fdir/dist/index.mjs +570 -0
- package/vite-plugin/node_modules/fdir/package.json +103 -0
- package/vite-plugin/node_modules/fsevents/LICENSE +22 -0
- package/vite-plugin/node_modules/fsevents/README.md +89 -0
- package/vite-plugin/node_modules/fsevents/fsevents.d.ts +46 -0
- package/vite-plugin/node_modules/fsevents/fsevents.js +83 -0
- package/vite-plugin/node_modules/fsevents/fsevents.node +0 -0
- package/vite-plugin/node_modules/fsevents/package.json +62 -0
- package/vite-plugin/node_modules/lightningcss/LICENSE +373 -0
- package/vite-plugin/node_modules/lightningcss/README.md +105 -0
- package/vite-plugin/node_modules/lightningcss/node/ast.d.ts +9892 -0
- package/vite-plugin/node_modules/lightningcss/node/ast.js.flow +10539 -0
- package/vite-plugin/node_modules/lightningcss/node/browserslistToTargets.js +48 -0
- package/vite-plugin/node_modules/lightningcss/node/composeVisitors.js +450 -0
- package/vite-plugin/node_modules/lightningcss/node/flags.js +28 -0
- package/vite-plugin/node_modules/lightningcss/node/index.d.ts +494 -0
- package/vite-plugin/node_modules/lightningcss/node/index.js +59 -0
- package/vite-plugin/node_modules/lightningcss/node/index.js.flow +843 -0
- package/vite-plugin/node_modules/lightningcss/node/index.mjs +4 -0
- package/vite-plugin/node_modules/lightningcss/node/targets.d.ts +40 -0
- package/vite-plugin/node_modules/lightningcss/node/targets.js.flow +39 -0
- package/vite-plugin/node_modules/lightningcss/package.json +110 -0
- package/vite-plugin/node_modules/lightningcss-darwin-arm64/LICENSE +373 -0
- package/vite-plugin/node_modules/lightningcss-darwin-arm64/README.md +1 -0
- package/vite-plugin/node_modules/lightningcss-darwin-arm64/lightningcss.darwin-arm64.node +0 -0
- package/vite-plugin/node_modules/lightningcss-darwin-arm64/package.json +34 -0
- package/vite-plugin/node_modules/nanoid/LICENSE +20 -0
- package/vite-plugin/node_modules/nanoid/README.md +39 -0
- package/vite-plugin/node_modules/nanoid/async/index.browser.cjs +69 -0
- package/vite-plugin/node_modules/nanoid/async/index.browser.js +34 -0
- package/vite-plugin/node_modules/nanoid/async/index.cjs +71 -0
- package/vite-plugin/node_modules/nanoid/async/index.d.ts +56 -0
- package/vite-plugin/node_modules/nanoid/async/index.js +35 -0
- package/vite-plugin/node_modules/nanoid/async/index.native.js +26 -0
- package/vite-plugin/node_modules/nanoid/async/package.json +12 -0
- package/vite-plugin/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/vite-plugin/node_modules/nanoid/index.browser.cjs +72 -0
- package/vite-plugin/node_modules/nanoid/index.browser.js +34 -0
- package/vite-plugin/node_modules/nanoid/index.cjs +85 -0
- package/vite-plugin/node_modules/nanoid/index.d.cts +91 -0
- package/vite-plugin/node_modules/nanoid/index.d.ts +91 -0
- package/vite-plugin/node_modules/nanoid/index.js +45 -0
- package/vite-plugin/node_modules/nanoid/nanoid.js +1 -0
- package/vite-plugin/node_modules/nanoid/non-secure/index.cjs +34 -0
- package/vite-plugin/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/vite-plugin/node_modules/nanoid/non-secure/index.js +21 -0
- package/vite-plugin/node_modules/nanoid/non-secure/package.json +6 -0
- package/vite-plugin/node_modules/nanoid/package.json +89 -0
- package/vite-plugin/node_modules/nanoid/url-alphabet/index.cjs +7 -0
- package/vite-plugin/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/vite-plugin/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/vite-plugin/node_modules/picocolors/LICENSE +15 -0
- package/vite-plugin/node_modules/picocolors/README.md +21 -0
- package/vite-plugin/node_modules/picocolors/package.json +25 -0
- package/vite-plugin/node_modules/picocolors/picocolors.browser.js +4 -0
- package/vite-plugin/node_modules/picocolors/picocolors.d.ts +5 -0
- package/vite-plugin/node_modules/picocolors/picocolors.js +75 -0
- package/vite-plugin/node_modules/picocolors/types.d.ts +51 -0
- package/vite-plugin/node_modules/picomatch/LICENSE +21 -0
- package/vite-plugin/node_modules/picomatch/README.md +749 -0
- package/vite-plugin/node_modules/picomatch/index.js +17 -0
- package/vite-plugin/node_modules/picomatch/lib/constants.js +184 -0
- package/vite-plugin/node_modules/picomatch/lib/parse.js +1386 -0
- package/vite-plugin/node_modules/picomatch/lib/picomatch.js +349 -0
- package/vite-plugin/node_modules/picomatch/lib/scan.js +391 -0
- package/vite-plugin/node_modules/picomatch/lib/utils.js +72 -0
- package/vite-plugin/node_modules/picomatch/package.json +82 -0
- package/vite-plugin/node_modules/picomatch/posix.js +3 -0
- package/vite-plugin/node_modules/postcss/LICENSE +20 -0
- package/vite-plugin/node_modules/postcss/README.md +28 -0
- package/vite-plugin/node_modules/postcss/lib/at-rule.d.ts +139 -0
- package/vite-plugin/node_modules/postcss/lib/at-rule.js +25 -0
- package/vite-plugin/node_modules/postcss/lib/comment.d.ts +67 -0
- package/vite-plugin/node_modules/postcss/lib/comment.js +13 -0
- package/vite-plugin/node_modules/postcss/lib/container.d.ts +478 -0
- package/vite-plugin/node_modules/postcss/lib/container.js +447 -0
- package/vite-plugin/node_modules/postcss/lib/css-syntax-error.d.ts +247 -0
- package/vite-plugin/node_modules/postcss/lib/css-syntax-error.js +133 -0
- package/vite-plugin/node_modules/postcss/lib/declaration.d.ts +150 -0
- package/vite-plugin/node_modules/postcss/lib/declaration.js +24 -0
- package/vite-plugin/node_modules/postcss/lib/document.d.ts +68 -0
- package/vite-plugin/node_modules/postcss/lib/document.js +33 -0
- package/vite-plugin/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- package/vite-plugin/node_modules/postcss/lib/fromJSON.js +54 -0
- package/vite-plugin/node_modules/postcss/lib/input.d.ts +226 -0
- package/vite-plugin/node_modules/postcss/lib/input.js +273 -0
- package/vite-plugin/node_modules/postcss/lib/lazy-result.d.ts +189 -0
- package/vite-plugin/node_modules/postcss/lib/lazy-result.js +550 -0
- package/vite-plugin/node_modules/postcss/lib/list.d.ts +60 -0
- package/vite-plugin/node_modules/postcss/lib/list.js +58 -0
- package/vite-plugin/node_modules/postcss/lib/map-generator.js +376 -0
- package/vite-plugin/node_modules/postcss/lib/no-work-result.d.ts +45 -0
- package/vite-plugin/node_modules/postcss/lib/no-work-result.js +137 -0
- package/vite-plugin/node_modules/postcss/lib/node.d.ts +555 -0
- package/vite-plugin/node_modules/postcss/lib/node.js +449 -0
- package/vite-plugin/node_modules/postcss/lib/parse.d.ts +9 -0
- package/vite-plugin/node_modules/postcss/lib/parse.js +42 -0
- package/vite-plugin/node_modules/postcss/lib/parser.js +611 -0
- package/vite-plugin/node_modules/postcss/lib/postcss.d.mts +66 -0
- package/vite-plugin/node_modules/postcss/lib/postcss.d.ts +456 -0
- package/vite-plugin/node_modules/postcss/lib/postcss.js +101 -0
- package/vite-plugin/node_modules/postcss/lib/postcss.mjs +30 -0
- package/vite-plugin/node_modules/postcss/lib/previous-map.d.ts +80 -0
- package/vite-plugin/node_modules/postcss/lib/previous-map.js +145 -0
- package/vite-plugin/node_modules/postcss/lib/processor.d.ts +114 -0
- package/vite-plugin/node_modules/postcss/lib/processor.js +67 -0
- package/vite-plugin/node_modules/postcss/lib/result.d.ts +204 -0
- package/vite-plugin/node_modules/postcss/lib/result.js +42 -0
- package/vite-plugin/node_modules/postcss/lib/root.d.ts +86 -0
- package/vite-plugin/node_modules/postcss/lib/root.js +61 -0
- package/vite-plugin/node_modules/postcss/lib/rule.d.ts +126 -0
- package/vite-plugin/node_modules/postcss/lib/rule.js +27 -0
- package/vite-plugin/node_modules/postcss/lib/stringifier.d.ts +45 -0
- package/vite-plugin/node_modules/postcss/lib/stringifier.js +370 -0
- package/vite-plugin/node_modules/postcss/lib/stringify.d.ts +9 -0
- package/vite-plugin/node_modules/postcss/lib/stringify.js +11 -0
- package/vite-plugin/node_modules/postcss/lib/symbols.js +5 -0
- package/vite-plugin/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/vite-plugin/node_modules/postcss/lib/tokenize.js +266 -0
- package/vite-plugin/node_modules/postcss/lib/warn-once.js +13 -0
- package/vite-plugin/node_modules/postcss/lib/warning.d.ts +146 -0
- package/vite-plugin/node_modules/postcss/lib/warning.js +37 -0
- package/vite-plugin/node_modules/postcss/package.json +88 -0
- package/vite-plugin/node_modules/rolldown/LICENSE +25 -0
- package/vite-plugin/node_modules/rolldown/README.md +11 -0
- package/vite-plugin/node_modules/rolldown/bin/cli.mjs +2 -0
- package/vite-plugin/node_modules/rolldown/dist/cli.d.mts +1 -0
- package/vite-plugin/node_modules/rolldown/dist/cli.mjs +1191 -0
- package/vite-plugin/node_modules/rolldown/dist/config.d.mts +14 -0
- package/vite-plugin/node_modules/rolldown/dist/config.mjs +4 -0
- package/vite-plugin/node_modules/rolldown/dist/experimental-index.d.mts +253 -0
- package/vite-plugin/node_modules/rolldown/dist/experimental-index.mjs +320 -0
- package/vite-plugin/node_modules/rolldown/dist/experimental-runtime-types.d.ts +98 -0
- package/vite-plugin/node_modules/rolldown/dist/filter-index.d.mts +196 -0
- package/vite-plugin/node_modules/rolldown/dist/filter-index.mjs +386 -0
- package/vite-plugin/node_modules/rolldown/dist/get-log-filter.d.mts +3 -0
- package/vite-plugin/node_modules/rolldown/dist/get-log-filter.mjs +68 -0
- package/vite-plugin/node_modules/rolldown/dist/index.d.mts +4 -0
- package/vite-plugin/node_modules/rolldown/dist/index.mjs +50 -0
- package/vite-plugin/node_modules/rolldown/dist/parallel-plugin-worker.d.mts +1 -0
- package/vite-plugin/node_modules/rolldown/dist/parallel-plugin-worker.mjs +28 -0
- package/vite-plugin/node_modules/rolldown/dist/parallel-plugin.d.mts +13 -0
- package/vite-plugin/node_modules/rolldown/dist/parallel-plugin.mjs +6 -0
- package/vite-plugin/node_modules/rolldown/dist/parse-ast-index.d.mts +32 -0
- package/vite-plugin/node_modules/rolldown/dist/parse-ast-index.mjs +60 -0
- package/vite-plugin/node_modules/rolldown/dist/plugins-index.d.mts +33 -0
- package/vite-plugin/node_modules/rolldown/dist/plugins-index.mjs +40 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/binding-BeU_1iEk.mjs +582 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/binding-zH1vcmbM.d.mts +1899 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/bindingify-input-options-DbbBhzky.mjs +2211 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/constructors-C2EWPKW3.mjs +68 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/constructors-D0W3rNfA.d.mts +37 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/define-config-5HJ1b9vG.d.mts +3829 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/define-config-DJOr6Iwt.mjs +6 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/error-DL-e8-oE.mjs +85 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/get-log-filter-semyr3Lj.d.mts +35 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/load-config-BoVO31Un.mjs +120 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/logging-C6h4g8dA.d.mts +50 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/logs-D80CXhvg.mjs +180 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/misc-DJYbNKZX.mjs +21 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/normalize-string-or-regex-CbQQ69gT.mjs +66 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/parse-B_ZnWxLZ.mjs +74 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/prompt-U5ajztzG.mjs +847 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/resolve-tsconfig-CfYpGzid.mjs +113 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/rolldown-D3JZ9rMt.mjs +40 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/rolldown-build-DSxL8qiP.mjs +3325 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/transform-DgZ3paSD.d.mts +149 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/watch-Bd8v9ewv.mjs +374 -0
- package/vite-plugin/node_modules/rolldown/dist/utils-index.d.mts +376 -0
- package/vite-plugin/node_modules/rolldown/dist/utils-index.mjs +2414 -0
- package/vite-plugin/node_modules/rolldown/package.json +153 -0
- package/vite-plugin/node_modules/source-map-js/LICENSE +28 -0
- package/vite-plugin/node_modules/source-map-js/README.md +765 -0
- package/vite-plugin/node_modules/source-map-js/lib/array-set.js +121 -0
- package/vite-plugin/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/vite-plugin/node_modules/source-map-js/lib/base64.js +67 -0
- package/vite-plugin/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/vite-plugin/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/vite-plugin/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-node.js +413 -0
- package/vite-plugin/node_modules/source-map-js/lib/util.js +594 -0
- package/vite-plugin/node_modules/source-map-js/package.json +71 -0
- package/vite-plugin/node_modules/source-map-js/source-map.d.ts +104 -0
- package/vite-plugin/node_modules/source-map-js/source-map.js +8 -0
- package/vite-plugin/node_modules/tinyglobby/LICENSE +21 -0
- package/vite-plugin/node_modules/tinyglobby/README.md +25 -0
- package/vite-plugin/node_modules/tinyglobby/dist/index.cjs +334 -0
- package/vite-plugin/node_modules/tinyglobby/dist/index.d.cts +148 -0
- package/vite-plugin/node_modules/tinyglobby/dist/index.d.mts +148 -0
- package/vite-plugin/node_modules/tinyglobby/dist/index.mjs +306 -0
- package/vite-plugin/node_modules/tinyglobby/package.json +73 -0
- package/vite-plugin/node_modules/vite/LICENSE.md +2230 -0
- package/vite-plugin/node_modules/vite/README.md +20 -0
- package/vite-plugin/node_modules/vite/bin/openChrome.js +68 -0
- package/vite-plugin/node_modules/vite/bin/vite.js +79 -0
- package/vite-plugin/node_modules/vite/client.d.ts +282 -0
- package/vite-plugin/node_modules/vite/dist/client/client.mjs +1237 -0
- package/vite-plugin/node_modules/vite/dist/client/env.mjs +18 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/build.js +5381 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/chunk.js +37 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/dist.js +6784 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/lib.js +371 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/logger.js +322 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts +96 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/node.js +34874 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/postcss-import.js +467 -0
- package/vite-plugin/node_modules/vite/dist/node/cli.js +837 -0
- package/vite-plugin/node_modules/vite/dist/node/index.d.ts +3867 -0
- package/vite-plugin/node_modules/vite/dist/node/index.js +3 -0
- package/vite-plugin/node_modules/vite/dist/node/internal.d.ts +2 -0
- package/vite-plugin/node_modules/vite/dist/node/internal.js +2 -0
- package/vite-plugin/node_modules/vite/dist/node/module-runner.d.ts +315 -0
- package/vite-plugin/node_modules/vite/dist/node/module-runner.js +1262 -0
- package/vite-plugin/node_modules/vite/misc/false.js +1 -0
- package/vite-plugin/node_modules/vite/misc/true.js +1 -0
- package/vite-plugin/node_modules/vite/package.json +192 -0
- package/vite-plugin/node_modules/vite/types/customEvent.d.ts +79 -0
- package/vite-plugin/node_modules/vite/types/hmrPayload.d.ts +80 -0
- package/vite-plugin/node_modules/vite/types/hot.d.ts +39 -0
- package/vite-plugin/node_modules/vite/types/import-meta.d.ts +5 -0
- package/vite-plugin/node_modules/vite/types/importGlob.d.ts +89 -0
- package/vite-plugin/node_modules/vite/types/importMeta.d.ts +30 -0
- package/vite-plugin/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts +44 -0
- package/vite-plugin/node_modules/vite/types/internal/esbuildOptions.d.ts +28 -0
- package/vite-plugin/node_modules/vite/types/internal/lightningcssOptions.d.ts +18 -0
- package/vite-plugin/node_modules/vite/types/internal/rollupTypeCompat.d.ts +24 -0
- package/vite-plugin/node_modules/vite/types/internal/terserOptions.d.ts +11 -0
- package/vite-plugin/node_modules/vite/types/metadata.d.ts +47 -0
- package/vite-plugin/package.json +14 -0
- package/www/src/{assets → .well-known/agent-skills/mockaton}/SKILLS.md +21 -9
- package/src/server/cacheBustResolver.js +0 -19
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lockfileVersion": 3,
|
|
3
|
+
"requires": true,
|
|
4
|
+
"packages": {
|
|
5
|
+
"..": {
|
|
6
|
+
"version": "13.8.0",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"peer": true,
|
|
9
|
+
"bin": {
|
|
10
|
+
"mockaton": "src/server/cli.js"
|
|
11
|
+
},
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=22.18 <23 || >=23.6"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"node_modules/@oxc-project/types": {
|
|
17
|
+
"version": "0.127.0",
|
|
18
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.127.0.tgz",
|
|
19
|
+
"integrity": "sha512-aIYXQBo4lCbO4z0R3FHeucQHpF46l2LbMdxRvqvuRuW2OxdnSkcng5B8+K12spgLDj93rtN3+J2Vac/TIO+ciQ==",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"peer": true,
|
|
22
|
+
"funding": {
|
|
23
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"node_modules/@rolldown/binding-darwin-arm64": {
|
|
27
|
+
"version": "1.0.0-rc.17",
|
|
28
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.17.tgz",
|
|
29
|
+
"integrity": "sha512-4ksWc9n0mhlZpZ9PMZgTGjeOPRu8MB1Z3Tz0Mo02eWfWCHMW1zN82Qz/pL/rC+yQa+8ZnutMF0JjJe7PjwasYw==",
|
|
30
|
+
"cpu": [
|
|
31
|
+
"arm64"
|
|
32
|
+
],
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"optional": true,
|
|
35
|
+
"os": [
|
|
36
|
+
"darwin"
|
|
37
|
+
],
|
|
38
|
+
"peer": true,
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"node_modules/@rolldown/pluginutils": {
|
|
44
|
+
"version": "1.0.0-rc.17",
|
|
45
|
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.17.tgz",
|
|
46
|
+
"integrity": "sha512-n8iosDOt6Ig1UhJ2AYqoIhHWh/isz0xpicHTzpKBeotdVsTEcxsSA/i3EVM7gQAj0rU27OLAxCjzlj15IWY7bg==",
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"peer": true
|
|
49
|
+
},
|
|
50
|
+
"node_modules/detect-libc": {
|
|
51
|
+
"version": "2.1.2",
|
|
52
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
53
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
54
|
+
"license": "Apache-2.0",
|
|
55
|
+
"peer": true,
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=8"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"node_modules/fdir": {
|
|
61
|
+
"version": "6.5.0",
|
|
62
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
63
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
64
|
+
"license": "MIT",
|
|
65
|
+
"peer": true,
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=12.0.0"
|
|
68
|
+
},
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"picomatch": "^3 || ^4"
|
|
71
|
+
},
|
|
72
|
+
"peerDependenciesMeta": {
|
|
73
|
+
"picomatch": {
|
|
74
|
+
"optional": true
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"node_modules/fsevents": {
|
|
79
|
+
"version": "2.3.3",
|
|
80
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
81
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
82
|
+
"hasInstallScript": true,
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"optional": true,
|
|
85
|
+
"os": [
|
|
86
|
+
"darwin"
|
|
87
|
+
],
|
|
88
|
+
"peer": true,
|
|
89
|
+
"engines": {
|
|
90
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"node_modules/lightningcss": {
|
|
94
|
+
"version": "1.32.0",
|
|
95
|
+
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
|
96
|
+
"integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
|
|
97
|
+
"license": "MPL-2.0",
|
|
98
|
+
"peer": true,
|
|
99
|
+
"dependencies": {
|
|
100
|
+
"detect-libc": "^2.0.3"
|
|
101
|
+
},
|
|
102
|
+
"engines": {
|
|
103
|
+
"node": ">= 12.0.0"
|
|
104
|
+
},
|
|
105
|
+
"funding": {
|
|
106
|
+
"type": "opencollective",
|
|
107
|
+
"url": "https://opencollective.com/parcel"
|
|
108
|
+
},
|
|
109
|
+
"optionalDependencies": {
|
|
110
|
+
"lightningcss-android-arm64": "1.32.0",
|
|
111
|
+
"lightningcss-darwin-arm64": "1.32.0",
|
|
112
|
+
"lightningcss-darwin-x64": "1.32.0",
|
|
113
|
+
"lightningcss-freebsd-x64": "1.32.0",
|
|
114
|
+
"lightningcss-linux-arm-gnueabihf": "1.32.0",
|
|
115
|
+
"lightningcss-linux-arm64-gnu": "1.32.0",
|
|
116
|
+
"lightningcss-linux-arm64-musl": "1.32.0",
|
|
117
|
+
"lightningcss-linux-x64-gnu": "1.32.0",
|
|
118
|
+
"lightningcss-linux-x64-musl": "1.32.0",
|
|
119
|
+
"lightningcss-win32-arm64-msvc": "1.32.0",
|
|
120
|
+
"lightningcss-win32-x64-msvc": "1.32.0"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"node_modules/lightningcss-darwin-arm64": {
|
|
124
|
+
"version": "1.32.0",
|
|
125
|
+
"resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
|
|
126
|
+
"integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
|
|
127
|
+
"cpu": [
|
|
128
|
+
"arm64"
|
|
129
|
+
],
|
|
130
|
+
"license": "MPL-2.0",
|
|
131
|
+
"optional": true,
|
|
132
|
+
"os": [
|
|
133
|
+
"darwin"
|
|
134
|
+
],
|
|
135
|
+
"peer": true,
|
|
136
|
+
"engines": {
|
|
137
|
+
"node": ">= 12.0.0"
|
|
138
|
+
},
|
|
139
|
+
"funding": {
|
|
140
|
+
"type": "opencollective",
|
|
141
|
+
"url": "https://opencollective.com/parcel"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"node_modules/mockaton": {
|
|
145
|
+
"resolved": "..",
|
|
146
|
+
"link": true
|
|
147
|
+
},
|
|
148
|
+
"node_modules/nanoid": {
|
|
149
|
+
"version": "3.3.11",
|
|
150
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
151
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
152
|
+
"funding": [
|
|
153
|
+
{
|
|
154
|
+
"type": "github",
|
|
155
|
+
"url": "https://github.com/sponsors/ai"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"license": "MIT",
|
|
159
|
+
"peer": true,
|
|
160
|
+
"bin": {
|
|
161
|
+
"nanoid": "bin/nanoid.cjs"
|
|
162
|
+
},
|
|
163
|
+
"engines": {
|
|
164
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"node_modules/picocolors": {
|
|
168
|
+
"version": "1.1.1",
|
|
169
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
170
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
171
|
+
"license": "ISC",
|
|
172
|
+
"peer": true
|
|
173
|
+
},
|
|
174
|
+
"node_modules/picomatch": {
|
|
175
|
+
"version": "4.0.4",
|
|
176
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
|
|
177
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
178
|
+
"license": "MIT",
|
|
179
|
+
"peer": true,
|
|
180
|
+
"engines": {
|
|
181
|
+
"node": ">=12"
|
|
182
|
+
},
|
|
183
|
+
"funding": {
|
|
184
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"node_modules/postcss": {
|
|
188
|
+
"version": "8.5.10",
|
|
189
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz",
|
|
190
|
+
"integrity": "sha512-pMMHxBOZKFU6HgAZ4eyGnwXF/EvPGGqUr0MnZ5+99485wwW41kW91A4LOGxSHhgugZmSChL5AlElNdwlNgcnLQ==",
|
|
191
|
+
"funding": [
|
|
192
|
+
{
|
|
193
|
+
"type": "opencollective",
|
|
194
|
+
"url": "https://opencollective.com/postcss/"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"type": "tidelift",
|
|
198
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"type": "github",
|
|
202
|
+
"url": "https://github.com/sponsors/ai"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"license": "MIT",
|
|
206
|
+
"peer": true,
|
|
207
|
+
"dependencies": {
|
|
208
|
+
"nanoid": "^3.3.11",
|
|
209
|
+
"picocolors": "^1.1.1",
|
|
210
|
+
"source-map-js": "^1.2.1"
|
|
211
|
+
},
|
|
212
|
+
"engines": {
|
|
213
|
+
"node": "^10 || ^12 || >=14"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"node_modules/rolldown": {
|
|
217
|
+
"version": "1.0.0-rc.17",
|
|
218
|
+
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.17.tgz",
|
|
219
|
+
"integrity": "sha512-ZrT53oAKrtA4+YtBWPQbtPOxIbVDbxT0orcYERKd63VJTF13zPcgXTvD4843L8pcsI7M6MErt8QtON6lrB9tyA==",
|
|
220
|
+
"license": "MIT",
|
|
221
|
+
"peer": true,
|
|
222
|
+
"dependencies": {
|
|
223
|
+
"@oxc-project/types": "=0.127.0",
|
|
224
|
+
"@rolldown/pluginutils": "1.0.0-rc.17"
|
|
225
|
+
},
|
|
226
|
+
"bin": {
|
|
227
|
+
"rolldown": "bin/cli.mjs"
|
|
228
|
+
},
|
|
229
|
+
"engines": {
|
|
230
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
231
|
+
},
|
|
232
|
+
"optionalDependencies": {
|
|
233
|
+
"@rolldown/binding-android-arm64": "1.0.0-rc.17",
|
|
234
|
+
"@rolldown/binding-darwin-arm64": "1.0.0-rc.17",
|
|
235
|
+
"@rolldown/binding-darwin-x64": "1.0.0-rc.17",
|
|
236
|
+
"@rolldown/binding-freebsd-x64": "1.0.0-rc.17",
|
|
237
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.17",
|
|
238
|
+
"@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.17",
|
|
239
|
+
"@rolldown/binding-linux-arm64-musl": "1.0.0-rc.17",
|
|
240
|
+
"@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.17",
|
|
241
|
+
"@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.17",
|
|
242
|
+
"@rolldown/binding-linux-x64-gnu": "1.0.0-rc.17",
|
|
243
|
+
"@rolldown/binding-linux-x64-musl": "1.0.0-rc.17",
|
|
244
|
+
"@rolldown/binding-openharmony-arm64": "1.0.0-rc.17",
|
|
245
|
+
"@rolldown/binding-wasm32-wasi": "1.0.0-rc.17",
|
|
246
|
+
"@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.17",
|
|
247
|
+
"@rolldown/binding-win32-x64-msvc": "1.0.0-rc.17"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"node_modules/source-map-js": {
|
|
251
|
+
"version": "1.2.1",
|
|
252
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
253
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
254
|
+
"license": "BSD-3-Clause",
|
|
255
|
+
"peer": true,
|
|
256
|
+
"engines": {
|
|
257
|
+
"node": ">=0.10.0"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"node_modules/tinyglobby": {
|
|
261
|
+
"version": "0.2.16",
|
|
262
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
|
|
263
|
+
"integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
|
|
264
|
+
"license": "MIT",
|
|
265
|
+
"peer": true,
|
|
266
|
+
"dependencies": {
|
|
267
|
+
"fdir": "^6.5.0",
|
|
268
|
+
"picomatch": "^4.0.4"
|
|
269
|
+
},
|
|
270
|
+
"engines": {
|
|
271
|
+
"node": ">=12.0.0"
|
|
272
|
+
},
|
|
273
|
+
"funding": {
|
|
274
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
"node_modules/vite": {
|
|
278
|
+
"version": "8.0.10",
|
|
279
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-8.0.10.tgz",
|
|
280
|
+
"integrity": "sha512-rZuUu9j6J5uotLDs+cAA4O5H4K1SfPliUlQwqa6YEwSrWDZzP4rhm00oJR5snMewjxF5V/K3D4kctsUTsIU9Mw==",
|
|
281
|
+
"license": "MIT",
|
|
282
|
+
"peer": true,
|
|
283
|
+
"dependencies": {
|
|
284
|
+
"lightningcss": "^1.32.0",
|
|
285
|
+
"picomatch": "^4.0.4",
|
|
286
|
+
"postcss": "^8.5.10",
|
|
287
|
+
"rolldown": "1.0.0-rc.17",
|
|
288
|
+
"tinyglobby": "^0.2.16"
|
|
289
|
+
},
|
|
290
|
+
"bin": {
|
|
291
|
+
"vite": "bin/vite.js"
|
|
292
|
+
},
|
|
293
|
+
"engines": {
|
|
294
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
295
|
+
},
|
|
296
|
+
"funding": {
|
|
297
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
298
|
+
},
|
|
299
|
+
"optionalDependencies": {
|
|
300
|
+
"fsevents": "~2.3.3"
|
|
301
|
+
},
|
|
302
|
+
"peerDependencies": {
|
|
303
|
+
"@types/node": "^20.19.0 || >=22.12.0",
|
|
304
|
+
"@vitejs/devtools": "^0.1.0",
|
|
305
|
+
"esbuild": "^0.27.0 || ^0.28.0",
|
|
306
|
+
"jiti": ">=1.21.0",
|
|
307
|
+
"less": "^4.0.0",
|
|
308
|
+
"sass": "^1.70.0",
|
|
309
|
+
"sass-embedded": "^1.70.0",
|
|
310
|
+
"stylus": ">=0.54.8",
|
|
311
|
+
"sugarss": "^5.0.0",
|
|
312
|
+
"terser": "^5.16.0",
|
|
313
|
+
"tsx": "^4.8.1",
|
|
314
|
+
"yaml": "^2.4.2"
|
|
315
|
+
},
|
|
316
|
+
"peerDependenciesMeta": {
|
|
317
|
+
"@types/node": {
|
|
318
|
+
"optional": true
|
|
319
|
+
},
|
|
320
|
+
"@vitejs/devtools": {
|
|
321
|
+
"optional": true
|
|
322
|
+
},
|
|
323
|
+
"esbuild": {
|
|
324
|
+
"optional": true
|
|
325
|
+
},
|
|
326
|
+
"jiti": {
|
|
327
|
+
"optional": true
|
|
328
|
+
},
|
|
329
|
+
"less": {
|
|
330
|
+
"optional": true
|
|
331
|
+
},
|
|
332
|
+
"sass": {
|
|
333
|
+
"optional": true
|
|
334
|
+
},
|
|
335
|
+
"sass-embedded": {
|
|
336
|
+
"optional": true
|
|
337
|
+
},
|
|
338
|
+
"stylus": {
|
|
339
|
+
"optional": true
|
|
340
|
+
},
|
|
341
|
+
"sugarss": {
|
|
342
|
+
"optional": true
|
|
343
|
+
},
|
|
344
|
+
"terser": {
|
|
345
|
+
"optional": true
|
|
346
|
+
},
|
|
347
|
+
"tsx": {
|
|
348
|
+
"optional": true
|
|
349
|
+
},
|
|
350
|
+
"yaml": {
|
|
351
|
+
"optional": true
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-present VoidZero Inc. & Contributors
|
|
4
|
+
Copyright (c) 2023 Boshen
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@oxc-project/types",
|
|
3
|
+
"version": "0.127.0",
|
|
4
|
+
"description": "Types for Oxc AST nodes",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"AST",
|
|
7
|
+
"Parser"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://oxc.rs",
|
|
10
|
+
"bugs": "https://github.com/oxc-project/oxc/issues",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": "Boshen and oxc contributors",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/oxc-project/oxc.git",
|
|
16
|
+
"directory": "npm/oxc-types"
|
|
17
|
+
},
|
|
18
|
+
"funding": {
|
|
19
|
+
"url": "https://github.com/sponsors/Boshen"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"types.d.ts"
|
|
23
|
+
],
|
|
24
|
+
"type": "module",
|
|
25
|
+
"types": "types.d.ts"
|
|
26
|
+
}
|