vaderjs 1.1.1 → 1.1.2
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/.vscode/settings.json +3 -0
- package/package.json +1 -1
- package/readme.md +40 -5
- package/vader.js +123 -13
- package/vaderRouter.js +99 -27
- package/website/dist/init.js +9 -0
- package/website/dist/styles/main.css +9704 -0
- package/website/dist/vader/vader.js +592 -0
- package/website/dist/vader/vaderRouter.js +488 -0
- package/website/index.html +23 -0
- package/website/node_modules/.bin/cssesc +12 -0
- package/website/node_modules/.bin/cssesc.cmd +17 -0
- package/website/node_modules/.bin/cssesc.ps1 +28 -0
- package/website/node_modules/.bin/jiti +12 -0
- package/website/node_modules/.bin/jiti.cmd +17 -0
- package/website/node_modules/.bin/jiti.ps1 +28 -0
- package/website/node_modules/.bin/nanoid +12 -0
- package/website/node_modules/.bin/nanoid.cmd +17 -0
- package/website/node_modules/.bin/nanoid.ps1 +28 -0
- package/website/node_modules/.bin/resolve +12 -0
- package/website/node_modules/.bin/resolve.cmd +17 -0
- package/website/node_modules/.bin/resolve.ps1 +28 -0
- package/website/node_modules/.bin/sucrase +12 -0
- package/website/node_modules/.bin/sucrase-node +12 -0
- package/website/node_modules/.bin/sucrase-node.cmd +17 -0
- package/website/node_modules/.bin/sucrase-node.ps1 +28 -0
- package/website/node_modules/.bin/sucrase.cmd +17 -0
- package/website/node_modules/.bin/sucrase.ps1 +28 -0
- package/website/node_modules/.bin/tailwind +12 -0
- package/website/node_modules/.bin/tailwind.cmd +17 -0
- package/website/node_modules/.bin/tailwind.ps1 +28 -0
- package/website/node_modules/.bin/tailwindcss +12 -0
- package/website/node_modules/.bin/tailwindcss.cmd +17 -0
- package/website/node_modules/.bin/tailwindcss.ps1 +28 -0
- package/website/node_modules/.package-lock.json +919 -0
- package/website/node_modules/@alloc/quick-lru/index.d.ts +128 -0
- package/website/node_modules/@alloc/quick-lru/index.js +263 -0
- package/website/node_modules/@alloc/quick-lru/license +9 -0
- package/website/node_modules/@alloc/quick-lru/package.json +43 -0
- package/website/node_modules/@alloc/quick-lru/readme.md +139 -0
- package/website/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
- package/website/node_modules/@jridgewell/gen-mapping/README.md +227 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +230 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +1 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +236 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +90 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
- package/website/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +35 -0
- package/website/node_modules/@jridgewell/gen-mapping/package.json +77 -0
- package/website/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
- package/website/node_modules/@jridgewell/resolve-uri/README.md +40 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +242 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +250 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
- package/website/node_modules/@jridgewell/resolve-uri/package.json +69 -0
- package/website/node_modules/@jridgewell/set-array/LICENSE +19 -0
- package/website/node_modules/@jridgewell/set-array/README.md +37 -0
- package/website/node_modules/@jridgewell/set-array/dist/set-array.mjs +48 -0
- package/website/node_modules/@jridgewell/set-array/dist/set-array.mjs.map +1 -0
- package/website/node_modules/@jridgewell/set-array/dist/set-array.umd.js +58 -0
- package/website/node_modules/@jridgewell/set-array/dist/set-array.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/set-array/dist/types/set-array.d.ts +26 -0
- package/website/node_modules/@jridgewell/set-array/package.json +66 -0
- package/website/node_modules/@jridgewell/set-array/src/set-array.ts +55 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
- package/website/node_modules/@jridgewell/sourcemap-codec/package.json +74 -0
- package/website/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- package/website/node_modules/@jridgewell/trace-mapping/README.md +252 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +552 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +566 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +74 -0
- package/website/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +92 -0
- package/website/node_modules/@jridgewell/trace-mapping/package.json +75 -0
- package/website/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
- package/website/node_modules/@nodelib/fs.scandir/README.md +171 -0
- package/website/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
- package/website/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
- package/website/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
- package/website/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
- package/website/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
- package/website/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
- package/website/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
- package/website/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
- package/website/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
- package/website/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
- package/website/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
- package/website/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
- package/website/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
- package/website/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
- package/website/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
- package/website/node_modules/@nodelib/fs.scandir/package.json +44 -0
- package/website/node_modules/@nodelib/fs.stat/LICENSE +21 -0
- package/website/node_modules/@nodelib/fs.stat/README.md +126 -0
- package/website/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
- package/website/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
- package/website/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
- package/website/node_modules/@nodelib/fs.stat/out/index.js +26 -0
- package/website/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
- package/website/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
- package/website/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
- package/website/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
- package/website/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
- package/website/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
- package/website/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
- package/website/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
- package/website/node_modules/@nodelib/fs.stat/package.json +37 -0
- package/website/node_modules/@nodelib/fs.walk/LICENSE +21 -0
- package/website/node_modules/@nodelib/fs.walk/README.md +215 -0
- package/website/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
- package/website/node_modules/@nodelib/fs.walk/out/index.js +34 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
- package/website/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
- package/website/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
- package/website/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
- package/website/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
- package/website/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
- package/website/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
- package/website/node_modules/@nodelib/fs.walk/package.json +44 -0
- package/website/node_modules/any-promise/.jshintrc +4 -0
- package/website/node_modules/any-promise/LICENSE +19 -0
- package/website/node_modules/any-promise/README.md +161 -0
- package/website/node_modules/any-promise/implementation.d.ts +3 -0
- package/website/node_modules/any-promise/implementation.js +1 -0
- package/website/node_modules/any-promise/index.d.ts +73 -0
- package/website/node_modules/any-promise/index.js +1 -0
- package/website/node_modules/any-promise/loader.js +78 -0
- package/website/node_modules/any-promise/optional.js +6 -0
- package/website/node_modules/any-promise/package.json +45 -0
- package/website/node_modules/any-promise/register/bluebird.d.ts +1 -0
- package/website/node_modules/any-promise/register/bluebird.js +2 -0
- package/website/node_modules/any-promise/register/es6-promise.d.ts +1 -0
- package/website/node_modules/any-promise/register/es6-promise.js +2 -0
- package/website/node_modules/any-promise/register/lie.d.ts +1 -0
- package/website/node_modules/any-promise/register/lie.js +2 -0
- package/website/node_modules/any-promise/register/native-promise-only.d.ts +1 -0
- package/website/node_modules/any-promise/register/native-promise-only.js +2 -0
- package/website/node_modules/any-promise/register/pinkie.d.ts +1 -0
- package/website/node_modules/any-promise/register/pinkie.js +2 -0
- package/website/node_modules/any-promise/register/promise.d.ts +1 -0
- package/website/node_modules/any-promise/register/promise.js +2 -0
- package/website/node_modules/any-promise/register/q.d.ts +1 -0
- package/website/node_modules/any-promise/register/q.js +2 -0
- package/website/node_modules/any-promise/register/rsvp.d.ts +1 -0
- package/website/node_modules/any-promise/register/rsvp.js +2 -0
- package/website/node_modules/any-promise/register/vow.d.ts +1 -0
- package/website/node_modules/any-promise/register/vow.js +2 -0
- package/website/node_modules/any-promise/register/when.d.ts +1 -0
- package/website/node_modules/any-promise/register/when.js +2 -0
- package/website/node_modules/any-promise/register-shim.js +18 -0
- package/website/node_modules/any-promise/register.d.ts +17 -0
- package/website/node_modules/any-promise/register.js +94 -0
- package/website/node_modules/anymatch/LICENSE +15 -0
- package/website/node_modules/anymatch/README.md +87 -0
- package/website/node_modules/anymatch/index.d.ts +20 -0
- package/website/node_modules/anymatch/index.js +104 -0
- package/website/node_modules/anymatch/package.json +48 -0
- package/website/node_modules/arg/LICENSE.md +21 -0
- package/website/node_modules/arg/README.md +317 -0
- package/website/node_modules/arg/index.d.ts +44 -0
- package/website/node_modules/arg/index.js +195 -0
- package/website/node_modules/arg/package.json +28 -0
- package/website/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/website/node_modules/balanced-match/LICENSE.md +21 -0
- package/website/node_modules/balanced-match/README.md +97 -0
- package/website/node_modules/balanced-match/index.js +62 -0
- package/website/node_modules/balanced-match/package.json +48 -0
- package/website/node_modules/binary-extensions/binary-extensions.json +260 -0
- package/website/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
- package/website/node_modules/binary-extensions/index.d.ts +14 -0
- package/website/node_modules/binary-extensions/index.js +1 -0
- package/website/node_modules/binary-extensions/license +9 -0
- package/website/node_modules/binary-extensions/package.json +38 -0
- package/website/node_modules/binary-extensions/readme.md +41 -0
- package/website/node_modules/brace-expansion/LICENSE +21 -0
- package/website/node_modules/brace-expansion/README.md +129 -0
- package/website/node_modules/brace-expansion/index.js +201 -0
- package/website/node_modules/brace-expansion/package.json +47 -0
- package/website/node_modules/braces/CHANGELOG.md +184 -0
- package/website/node_modules/braces/LICENSE +21 -0
- package/website/node_modules/braces/README.md +593 -0
- package/website/node_modules/braces/index.js +170 -0
- package/website/node_modules/braces/lib/compile.js +57 -0
- package/website/node_modules/braces/lib/constants.js +57 -0
- package/website/node_modules/braces/lib/expand.js +113 -0
- package/website/node_modules/braces/lib/parse.js +333 -0
- package/website/node_modules/braces/lib/stringify.js +32 -0
- package/website/node_modules/braces/lib/utils.js +112 -0
- package/website/node_modules/braces/package.json +77 -0
- package/website/node_modules/camelcase-css/README.md +27 -0
- package/website/node_modules/camelcase-css/index-es5.js +24 -0
- package/website/node_modules/camelcase-css/index.js +30 -0
- package/website/node_modules/camelcase-css/license +21 -0
- package/website/node_modules/camelcase-css/package.json +34 -0
- package/website/node_modules/chokidar/LICENSE +21 -0
- package/website/node_modules/chokidar/README.md +308 -0
- package/website/node_modules/chokidar/index.js +973 -0
- package/website/node_modules/chokidar/lib/constants.js +65 -0
- package/website/node_modules/chokidar/lib/fsevents-handler.js +524 -0
- package/website/node_modules/chokidar/lib/nodefs-handler.js +654 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/LICENSE +15 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/README.md +137 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/index.js +42 -0
- package/website/node_modules/chokidar/node_modules/glob-parent/package.json +48 -0
- package/website/node_modules/chokidar/package.json +85 -0
- package/website/node_modules/chokidar/types/index.d.ts +188 -0
- package/website/node_modules/colord/CHANGELOG.md +188 -0
- package/website/node_modules/colord/LICENSE.md +21 -0
- package/website/node_modules/colord/README.md +1053 -0
- package/website/node_modules/colord/colord.d.ts +103 -0
- package/website/node_modules/colord/constants.d.ts +10 -0
- package/website/node_modules/colord/extend.d.ts +4 -0
- package/website/node_modules/colord/helpers.d.ts +20 -0
- package/website/node_modules/colord/index.d.ts +5 -0
- package/website/node_modules/colord/index.js +1 -0
- package/website/node_modules/colord/index.mjs +1 -0
- package/website/node_modules/colord/package.json +210 -0
- package/website/node_modules/colord/parse.d.ts +8 -0
- package/website/node_modules/colord/plugins/a11y.d.ts +38 -0
- package/website/node_modules/colord/plugins/a11y.js +1 -0
- package/website/node_modules/colord/plugins/a11y.mjs +1 -0
- package/website/node_modules/colord/plugins/cmyk.d.ts +24 -0
- package/website/node_modules/colord/plugins/cmyk.js +1 -0
- package/website/node_modules/colord/plugins/cmyk.mjs +1 -0
- package/website/node_modules/colord/plugins/harmonies.d.ts +16 -0
- package/website/node_modules/colord/plugins/harmonies.js +1 -0
- package/website/node_modules/colord/plugins/harmonies.mjs +1 -0
- package/website/node_modules/colord/plugins/hwb.d.ts +23 -0
- package/website/node_modules/colord/plugins/hwb.js +1 -0
- package/website/node_modules/colord/plugins/hwb.mjs +1 -0
- package/website/node_modules/colord/plugins/lab.d.ts +23 -0
- package/website/node_modules/colord/plugins/lab.js +1 -0
- package/website/node_modules/colord/plugins/lab.mjs +1 -0
- package/website/node_modules/colord/plugins/lch.d.ts +24 -0
- package/website/node_modules/colord/plugins/lch.js +1 -0
- package/website/node_modules/colord/plugins/lch.mjs +1 -0
- package/website/node_modules/colord/plugins/minify.d.ts +20 -0
- package/website/node_modules/colord/plugins/minify.js +1 -0
- package/website/node_modules/colord/plugins/minify.mjs +1 -0
- package/website/node_modules/colord/plugins/mix.d.ts +27 -0
- package/website/node_modules/colord/plugins/mix.js +1 -0
- package/website/node_modules/colord/plugins/mix.mjs +1 -0
- package/website/node_modules/colord/plugins/names.d.ts +19 -0
- package/website/node_modules/colord/plugins/names.js +1 -0
- package/website/node_modules/colord/plugins/names.mjs +1 -0
- package/website/node_modules/colord/plugins/xyz.d.ts +14 -0
- package/website/node_modules/colord/plugins/xyz.js +1 -0
- package/website/node_modules/colord/plugins/xyz.mjs +1 -0
- package/website/node_modules/colord/random.d.ts +2 -0
- package/website/node_modules/colord/types.d.ts +67 -0
- package/website/node_modules/commander/CHANGELOG.md +436 -0
- package/website/node_modules/commander/LICENSE +22 -0
- package/website/node_modules/commander/Readme.md +713 -0
- package/website/node_modules/commander/index.js +1649 -0
- package/website/node_modules/commander/package.json +41 -0
- package/website/node_modules/commander/typings/index.d.ts +311 -0
- package/website/node_modules/concat-map/.travis.yml +4 -0
- package/website/node_modules/concat-map/LICENSE +18 -0
- package/website/node_modules/concat-map/README.markdown +62 -0
- package/website/node_modules/concat-map/example/map.js +6 -0
- package/website/node_modules/concat-map/index.js +13 -0
- package/website/node_modules/concat-map/package.json +43 -0
- package/website/node_modules/concat-map/test/map.js +39 -0
- package/website/node_modules/css-selector-tokenizer/LICENSE +7 -0
- package/website/node_modules/css-selector-tokenizer/README.md +92 -0
- package/website/node_modules/css-selector-tokenizer/lib/index.js +4 -0
- package/website/node_modules/css-selector-tokenizer/lib/parse.js +239 -0
- package/website/node_modules/css-selector-tokenizer/lib/parseValues.js +167 -0
- package/website/node_modules/css-selector-tokenizer/lib/stringify.js +62 -0
- package/website/node_modules/css-selector-tokenizer/lib/stringifyValues.js +62 -0
- package/website/node_modules/css-selector-tokenizer/lib/uni-regexp.js +6 -0
- package/website/node_modules/css-selector-tokenizer/package.json +48 -0
- package/website/node_modules/cssesc/LICENSE-MIT.txt +20 -0
- package/website/node_modules/cssesc/README.md +201 -0
- package/website/node_modules/cssesc/bin/cssesc +116 -0
- package/website/node_modules/cssesc/cssesc.js +110 -0
- package/website/node_modules/cssesc/man/cssesc.1 +70 -0
- package/website/node_modules/cssesc/package.json +51 -0
- package/website/node_modules/daisyui/LICENSE +21 -0
- package/website/node_modules/daisyui/README.md +231 -0
- package/website/node_modules/daisyui/dist/base.js +1 -0
- package/website/node_modules/daisyui/dist/full.css +50393 -0
- package/website/node_modules/daisyui/dist/styled.css +4874 -0
- package/website/node_modules/daisyui/dist/styled.js +1 -0
- package/website/node_modules/daisyui/dist/styled.rtl.js +1 -0
- package/website/node_modules/daisyui/dist/themes.css +1151 -0
- package/website/node_modules/daisyui/dist/unstyled.css +1212 -0
- package/website/node_modules/daisyui/dist/unstyled.js +1 -0
- package/website/node_modules/daisyui/dist/unstyled.rtl.js +1 -0
- package/website/node_modules/daisyui/dist/utilities-styled.js +1 -0
- package/website/node_modules/daisyui/dist/utilities-unstyled.js +1 -0
- package/website/node_modules/daisyui/dist/utilities.js +1 -0
- package/website/node_modules/daisyui/package.json +109 -0
- package/website/node_modules/daisyui/src/index.d.ts +111 -0
- package/website/node_modules/daisyui/src/index.js +186 -0
- package/website/node_modules/daisyui/src/lib/addPrefix.js +104 -0
- package/website/node_modules/daisyui/src/lib/responsiveRegex.js +45 -0
- package/website/node_modules/daisyui/src/theming/colorNames.js +34 -0
- package/website/node_modules/daisyui/src/theming/functions.js +269 -0
- package/website/node_modules/daisyui/src/theming/index.js +39 -0
- package/website/node_modules/daisyui/src/theming/themeDefaults.js +45 -0
- package/website/node_modules/daisyui/src/theming/themes.d.ts +5 -0
- package/website/node_modules/daisyui/src/theming/themes.js +435 -0
- package/website/node_modules/didyoumean/LICENSE +14 -0
- package/website/node_modules/didyoumean/README.md +134 -0
- package/website/node_modules/didyoumean/didYouMean-1.2.1.js +274 -0
- package/website/node_modules/didyoumean/didYouMean-1.2.1.min.js +17 -0
- package/website/node_modules/didyoumean/package.json +27 -0
- package/website/node_modules/dlv/README.md +76 -0
- package/website/node_modules/dlv/dist/dlv.es.js +2 -0
- package/website/node_modules/dlv/dist/dlv.es.js.map +1 -0
- package/website/node_modules/dlv/dist/dlv.js +2 -0
- package/website/node_modules/dlv/dist/dlv.js.map +1 -0
- package/website/node_modules/dlv/dist/dlv.umd.js +2 -0
- package/website/node_modules/dlv/dist/dlv.umd.js.map +1 -0
- package/website/node_modules/dlv/index.js +7 -0
- package/website/node_modules/dlv/package.json +30 -0
- package/website/node_modules/fast-glob/LICENSE +21 -0
- package/website/node_modules/fast-glob/README.md +830 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/LICENSE +15 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/README.md +137 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/index.js +42 -0
- package/website/node_modules/fast-glob/node_modules/glob-parent/package.json +48 -0
- package/website/node_modules/fast-glob/out/index.d.ts +40 -0
- package/website/node_modules/fast-glob/out/index.js +102 -0
- package/website/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
- package/website/node_modules/fast-glob/out/managers/tasks.js +110 -0
- package/website/node_modules/fast-glob/out/providers/async.d.ts +9 -0
- package/website/node_modules/fast-glob/out/providers/async.js +23 -0
- package/website/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
- package/website/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
- package/website/node_modules/fast-glob/out/providers/filters/entry.d.ts +16 -0
- package/website/node_modules/fast-glob/out/providers/filters/entry.js +63 -0
- package/website/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
- package/website/node_modules/fast-glob/out/providers/filters/error.js +15 -0
- package/website/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
- package/website/node_modules/fast-glob/out/providers/matchers/matcher.js +45 -0
- package/website/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
- package/website/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
- package/website/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
- package/website/node_modules/fast-glob/out/providers/provider.js +48 -0
- package/website/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
- package/website/node_modules/fast-glob/out/providers/stream.js +31 -0
- package/website/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
- package/website/node_modules/fast-glob/out/providers/sync.js +23 -0
- package/website/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
- package/website/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
- package/website/node_modules/fast-glob/out/readers/async.d.ts +10 -0
- package/website/node_modules/fast-glob/out/readers/async.js +35 -0
- package/website/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
- package/website/node_modules/fast-glob/out/readers/reader.js +33 -0
- package/website/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
- package/website/node_modules/fast-glob/out/readers/stream.js +55 -0
- package/website/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
- package/website/node_modules/fast-glob/out/readers/sync.js +43 -0
- package/website/node_modules/fast-glob/out/settings.d.ts +164 -0
- package/website/node_modules/fast-glob/out/settings.js +59 -0
- package/website/node_modules/fast-glob/out/types/index.d.ts +31 -0
- package/website/node_modules/fast-glob/out/types/index.js +2 -0
- package/website/node_modules/fast-glob/out/utils/array.d.ts +2 -0
- package/website/node_modules/fast-glob/out/utils/array.js +22 -0
- package/website/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
- package/website/node_modules/fast-glob/out/utils/errno.js +7 -0
- package/website/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
- package/website/node_modules/fast-glob/out/utils/fs.js +19 -0
- package/website/node_modules/fast-glob/out/utils/index.d.ts +8 -0
- package/website/node_modules/fast-glob/out/utils/index.js +17 -0
- package/website/node_modules/fast-glob/out/utils/path.d.ts +13 -0
- package/website/node_modules/fast-glob/out/utils/path.js +68 -0
- package/website/node_modules/fast-glob/out/utils/pattern.d.ts +47 -0
- package/website/node_modules/fast-glob/out/utils/pattern.js +188 -0
- package/website/node_modules/fast-glob/out/utils/stream.d.ts +4 -0
- package/website/node_modules/fast-glob/out/utils/stream.js +17 -0
- package/website/node_modules/fast-glob/out/utils/string.d.ts +2 -0
- package/website/node_modules/fast-glob/out/utils/string.js +11 -0
- package/website/node_modules/fast-glob/package.json +81 -0
- package/website/node_modules/fastparse/LICENSE +7 -0
- package/website/node_modules/fastparse/README.md +118 -0
- package/website/node_modules/fastparse/lib/Parser.js +108 -0
- package/website/node_modules/fastparse/package.json +39 -0
- package/website/node_modules/fastq/.github/dependabot.yml +11 -0
- package/website/node_modules/fastq/.github/workflows/ci.yml +50 -0
- package/website/node_modules/fastq/LICENSE +13 -0
- package/website/node_modules/fastq/README.md +309 -0
- package/website/node_modules/fastq/bench.js +66 -0
- package/website/node_modules/fastq/example.js +14 -0
- package/website/node_modules/fastq/example.mjs +11 -0
- package/website/node_modules/fastq/index.d.ts +37 -0
- package/website/node_modules/fastq/package.json +52 -0
- package/website/node_modules/fastq/queue.js +289 -0
- package/website/node_modules/fastq/test/example.ts +81 -0
- package/website/node_modules/fastq/test/promise.js +248 -0
- package/website/node_modules/fastq/test/test.js +566 -0
- package/website/node_modules/fastq/test/tsconfig.json +11 -0
- package/website/node_modules/fill-range/LICENSE +21 -0
- package/website/node_modules/fill-range/README.md +237 -0
- package/website/node_modules/fill-range/index.js +249 -0
- package/website/node_modules/fill-range/package.json +69 -0
- package/website/node_modules/fs.realpath/LICENSE +43 -0
- package/website/node_modules/fs.realpath/README.md +33 -0
- package/website/node_modules/fs.realpath/index.js +66 -0
- package/website/node_modules/fs.realpath/old.js +303 -0
- package/website/node_modules/fs.realpath/package.json +26 -0
- package/website/node_modules/function-bind/.editorconfig +20 -0
- package/website/node_modules/function-bind/.eslintrc +15 -0
- package/website/node_modules/function-bind/.jscs.json +176 -0
- package/website/node_modules/function-bind/.travis.yml +168 -0
- package/website/node_modules/function-bind/LICENSE +20 -0
- package/website/node_modules/function-bind/README.md +48 -0
- package/website/node_modules/function-bind/implementation.js +52 -0
- package/website/node_modules/function-bind/index.js +5 -0
- package/website/node_modules/function-bind/package.json +63 -0
- package/website/node_modules/function-bind/test/.eslintrc +9 -0
- package/website/node_modules/function-bind/test/index.js +252 -0
- package/website/node_modules/glob/LICENSE +21 -0
- package/website/node_modules/glob/README.md +375 -0
- package/website/node_modules/glob/changelog.md +67 -0
- package/website/node_modules/glob/common.js +240 -0
- package/website/node_modules/glob/glob.js +790 -0
- package/website/node_modules/glob/package.json +46 -0
- package/website/node_modules/glob/sync.js +486 -0
- package/website/node_modules/glob-parent/LICENSE +15 -0
- package/website/node_modules/glob-parent/README.md +134 -0
- package/website/node_modules/glob-parent/index.js +75 -0
- package/website/node_modules/glob-parent/package.json +54 -0
- package/website/node_modules/has/LICENSE-MIT +22 -0
- package/website/node_modules/has/README.md +18 -0
- package/website/node_modules/has/package.json +48 -0
- package/website/node_modules/has/src/index.js +5 -0
- package/website/node_modules/has/test/index.js +10 -0
- package/website/node_modules/inflight/LICENSE +15 -0
- package/website/node_modules/inflight/README.md +37 -0
- package/website/node_modules/inflight/inflight.js +54 -0
- package/website/node_modules/inflight/package.json +29 -0
- package/website/node_modules/inherits/LICENSE +16 -0
- package/website/node_modules/inherits/README.md +42 -0
- package/website/node_modules/inherits/inherits.js +9 -0
- package/website/node_modules/inherits/inherits_browser.js +27 -0
- package/website/node_modules/inherits/package.json +29 -0
- package/website/node_modules/is-binary-path/index.d.ts +17 -0
- package/website/node_modules/is-binary-path/index.js +7 -0
- package/website/node_modules/is-binary-path/license +9 -0
- package/website/node_modules/is-binary-path/package.json +40 -0
- package/website/node_modules/is-binary-path/readme.md +34 -0
- package/website/node_modules/is-core-module/.eslintrc +18 -0
- package/website/node_modules/is-core-module/.nycrc +9 -0
- package/website/node_modules/is-core-module/CHANGELOG.md +173 -0
- package/website/node_modules/is-core-module/LICENSE +20 -0
- package/website/node_modules/is-core-module/README.md +40 -0
- package/website/node_modules/is-core-module/core.json +158 -0
- package/website/node_modules/is-core-module/index.js +69 -0
- package/website/node_modules/is-core-module/package.json +73 -0
- package/website/node_modules/is-core-module/test/index.js +133 -0
- package/website/node_modules/is-extglob/LICENSE +21 -0
- package/website/node_modules/is-extglob/README.md +107 -0
- package/website/node_modules/is-extglob/index.js +20 -0
- package/website/node_modules/is-extglob/package.json +69 -0
- package/website/node_modules/is-glob/LICENSE +21 -0
- package/website/node_modules/is-glob/README.md +206 -0
- package/website/node_modules/is-glob/index.js +150 -0
- package/website/node_modules/is-glob/package.json +81 -0
- package/website/node_modules/is-number/LICENSE +21 -0
- package/website/node_modules/is-number/README.md +187 -0
- package/website/node_modules/is-number/index.js +18 -0
- package/website/node_modules/is-number/package.json +82 -0
- package/website/node_modules/jiti/LICENSE +21 -0
- package/website/node_modules/jiti/README.md +161 -0
- package/website/node_modules/jiti/bin/jiti.js +16 -0
- package/website/node_modules/jiti/dist/babel.d.ts +2 -0
- package/website/node_modules/jiti/dist/babel.js +1885 -0
- package/website/node_modules/jiti/dist/jiti.d.ts +19 -0
- package/website/node_modules/jiti/dist/jiti.js +1 -0
- package/website/node_modules/jiti/dist/plugins/babel-plugin-transform-import-meta.d.ts +4 -0
- package/website/node_modules/jiti/dist/plugins/import-meta-env.d.ts +5 -0
- package/website/node_modules/jiti/dist/types.d.ts +31 -0
- package/website/node_modules/jiti/dist/utils.d.ts +8 -0
- package/website/node_modules/jiti/lib/index.js +15 -0
- package/website/node_modules/jiti/package.json +81 -0
- package/website/node_modules/jiti/register.js +3 -0
- package/website/node_modules/lilconfig/LICENSE +21 -0
- package/website/node_modules/lilconfig/dist/index.d.ts +38 -0
- package/website/node_modules/lilconfig/dist/index.js +251 -0
- package/website/node_modules/lilconfig/package.json +48 -0
- package/website/node_modules/lilconfig/readme.md +118 -0
- package/website/node_modules/lines-and-columns/LICENSE +21 -0
- package/website/node_modules/lines-and-columns/README.md +33 -0
- package/website/node_modules/lines-and-columns/build/index.d.ts +13 -0
- package/website/node_modules/lines-and-columns/build/index.js +62 -0
- package/website/node_modules/lines-and-columns/package.json +49 -0
- package/website/node_modules/merge2/LICENSE +21 -0
- package/website/node_modules/merge2/README.md +144 -0
- package/website/node_modules/merge2/index.js +144 -0
- package/website/node_modules/merge2/package.json +43 -0
- package/website/node_modules/micromatch/LICENSE +21 -0
- package/website/node_modules/micromatch/README.md +1011 -0
- package/website/node_modules/micromatch/index.js +467 -0
- package/website/node_modules/micromatch/package.json +119 -0
- package/website/node_modules/minimatch/LICENSE +15 -0
- package/website/node_modules/minimatch/README.md +230 -0
- package/website/node_modules/minimatch/minimatch.js +947 -0
- package/website/node_modules/minimatch/package.json +33 -0
- package/website/node_modules/mz/HISTORY.md +66 -0
- package/website/node_modules/mz/LICENSE +22 -0
- package/website/node_modules/mz/README.md +106 -0
- package/website/node_modules/mz/child_process.js +8 -0
- package/website/node_modules/mz/crypto.js +9 -0
- package/website/node_modules/mz/dns.js +16 -0
- package/website/node_modules/mz/fs.js +62 -0
- package/website/node_modules/mz/index.js +8 -0
- package/website/node_modules/mz/package.json +44 -0
- package/website/node_modules/mz/readline.js +64 -0
- package/website/node_modules/mz/zlib.js +13 -0
- package/website/node_modules/nanoid/LICENSE +20 -0
- package/website/node_modules/nanoid/README.md +39 -0
- package/website/node_modules/nanoid/async/index.browser.cjs +34 -0
- package/website/node_modules/nanoid/async/index.browser.js +34 -0
- package/website/node_modules/nanoid/async/index.cjs +35 -0
- package/website/node_modules/nanoid/async/index.d.ts +56 -0
- package/website/node_modules/nanoid/async/index.js +35 -0
- package/website/node_modules/nanoid/async/index.native.js +26 -0
- package/website/node_modules/nanoid/async/package.json +12 -0
- package/website/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/website/node_modules/nanoid/index.browser.cjs +34 -0
- package/website/node_modules/nanoid/index.browser.js +34 -0
- package/website/node_modules/nanoid/index.cjs +45 -0
- package/website/node_modules/nanoid/index.d.ts +91 -0
- package/website/node_modules/nanoid/index.js +45 -0
- package/website/node_modules/nanoid/nanoid.js +1 -0
- package/website/node_modules/nanoid/non-secure/index.cjs +21 -0
- package/website/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/website/node_modules/nanoid/non-secure/index.js +21 -0
- package/website/node_modules/nanoid/non-secure/package.json +6 -0
- package/website/node_modules/nanoid/package.json +66 -0
- package/website/node_modules/nanoid/url-alphabet/index.cjs +3 -0
- package/website/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/website/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/website/node_modules/normalize-path/LICENSE +21 -0
- package/website/node_modules/normalize-path/README.md +127 -0
- package/website/node_modules/normalize-path/index.js +35 -0
- package/website/node_modules/normalize-path/package.json +77 -0
- package/website/node_modules/object-assign/index.js +90 -0
- package/website/node_modules/object-assign/license +21 -0
- package/website/node_modules/object-assign/package.json +42 -0
- package/website/node_modules/object-assign/readme.md +61 -0
- package/website/node_modules/object-hash/LICENSE +22 -0
- package/website/node_modules/object-hash/dist/object_hash.js +1 -0
- package/website/node_modules/object-hash/index.js +453 -0
- package/website/node_modules/object-hash/package.json +53 -0
- package/website/node_modules/object-hash/readme.markdown +198 -0
- package/website/node_modules/once/LICENSE +15 -0
- package/website/node_modules/once/README.md +79 -0
- package/website/node_modules/once/once.js +42 -0
- package/website/node_modules/once/package.json +33 -0
- package/website/node_modules/path-is-absolute/index.js +20 -0
- package/website/node_modules/path-is-absolute/license +21 -0
- package/website/node_modules/path-is-absolute/package.json +43 -0
- package/website/node_modules/path-is-absolute/readme.md +59 -0
- package/website/node_modules/path-parse/LICENSE +21 -0
- package/website/node_modules/path-parse/README.md +42 -0
- package/website/node_modules/path-parse/index.js +75 -0
- package/website/node_modules/path-parse/package.json +33 -0
- package/website/node_modules/picocolors/LICENSE +15 -0
- package/website/node_modules/picocolors/README.md +21 -0
- package/website/node_modules/picocolors/package.json +25 -0
- package/website/node_modules/picocolors/picocolors.browser.js +4 -0
- package/website/node_modules/picocolors/picocolors.d.ts +5 -0
- package/website/node_modules/picocolors/picocolors.js +58 -0
- package/website/node_modules/picocolors/types.ts +30 -0
- package/website/node_modules/picomatch/CHANGELOG.md +136 -0
- package/website/node_modules/picomatch/LICENSE +21 -0
- package/website/node_modules/picomatch/README.md +708 -0
- package/website/node_modules/picomatch/index.js +3 -0
- package/website/node_modules/picomatch/lib/constants.js +179 -0
- package/website/node_modules/picomatch/lib/parse.js +1091 -0
- package/website/node_modules/picomatch/lib/picomatch.js +342 -0
- package/website/node_modules/picomatch/lib/scan.js +391 -0
- package/website/node_modules/picomatch/lib/utils.js +64 -0
- package/website/node_modules/picomatch/package.json +81 -0
- package/website/node_modules/pify/index.js +68 -0
- package/website/node_modules/pify/license +21 -0
- package/website/node_modules/pify/package.json +48 -0
- package/website/node_modules/pify/readme.md +119 -0
- package/website/node_modules/pirates/LICENSE +21 -0
- package/website/node_modules/pirates/README.md +69 -0
- package/website/node_modules/pirates/index.d.ts +82 -0
- package/website/node_modules/pirates/lib/index.js +139 -0
- package/website/node_modules/pirates/package.json +74 -0
- package/website/node_modules/postcss/LICENSE +20 -0
- package/website/node_modules/postcss/README.md +28 -0
- package/website/node_modules/postcss/lib/at-rule.d.ts +115 -0
- package/website/node_modules/postcss/lib/at-rule.js +25 -0
- package/website/node_modules/postcss/lib/comment.d.ts +67 -0
- package/website/node_modules/postcss/lib/comment.js +13 -0
- package/website/node_modules/postcss/lib/container.d.ts +452 -0
- package/website/node_modules/postcss/lib/container.js +439 -0
- package/website/node_modules/postcss/lib/css-syntax-error.d.ts +248 -0
- package/website/node_modules/postcss/lib/css-syntax-error.js +100 -0
- package/website/node_modules/postcss/lib/declaration.d.ts +148 -0
- package/website/node_modules/postcss/lib/declaration.js +24 -0
- package/website/node_modules/postcss/lib/document.d.ts +68 -0
- package/website/node_modules/postcss/lib/document.js +33 -0
- package/website/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- package/website/node_modules/postcss/lib/fromJSON.js +54 -0
- package/website/node_modules/postcss/lib/input.d.ts +194 -0
- package/website/node_modules/postcss/lib/input.js +248 -0
- package/website/node_modules/postcss/lib/lazy-result.d.ts +190 -0
- package/website/node_modules/postcss/lib/lazy-result.js +550 -0
- package/website/node_modules/postcss/lib/list.d.ts +57 -0
- package/website/node_modules/postcss/lib/list.js +58 -0
- package/website/node_modules/postcss/lib/map-generator.js +359 -0
- package/website/node_modules/postcss/lib/no-work-result.d.ts +46 -0
- package/website/node_modules/postcss/lib/no-work-result.js +135 -0
- package/website/node_modules/postcss/lib/node.d.ts +536 -0
- package/website/node_modules/postcss/lib/node.js +381 -0
- package/website/node_modules/postcss/lib/parse.d.ts +9 -0
- package/website/node_modules/postcss/lib/parse.js +42 -0
- package/website/node_modules/postcss/lib/parser.js +610 -0
- package/website/node_modules/postcss/lib/postcss.d.mts +72 -0
- package/website/node_modules/postcss/lib/postcss.d.ts +441 -0
- package/website/node_modules/postcss/lib/postcss.js +101 -0
- package/website/node_modules/postcss/lib/postcss.mjs +30 -0
- package/website/node_modules/postcss/lib/previous-map.d.ts +81 -0
- package/website/node_modules/postcss/lib/previous-map.js +142 -0
- package/website/node_modules/postcss/lib/processor.d.ts +115 -0
- package/website/node_modules/postcss/lib/processor.js +67 -0
- package/website/node_modules/postcss/lib/result.d.ts +206 -0
- package/website/node_modules/postcss/lib/result.js +42 -0
- package/website/node_modules/postcss/lib/root.d.ts +86 -0
- package/website/node_modules/postcss/lib/root.js +61 -0
- package/website/node_modules/postcss/lib/rule.d.ts +113 -0
- package/website/node_modules/postcss/lib/rule.js +27 -0
- package/website/node_modules/postcss/lib/stringifier.d.ts +46 -0
- package/website/node_modules/postcss/lib/stringifier.js +353 -0
- package/website/node_modules/postcss/lib/stringify.d.ts +9 -0
- package/website/node_modules/postcss/lib/stringify.js +11 -0
- package/website/node_modules/postcss/lib/symbols.js +5 -0
- package/website/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/website/node_modules/postcss/lib/tokenize.js +266 -0
- package/website/node_modules/postcss/lib/warn-once.js +13 -0
- package/website/node_modules/postcss/lib/warning.d.ts +147 -0
- package/website/node_modules/postcss/lib/warning.js +37 -0
- package/website/node_modules/postcss/package.json +88 -0
- package/website/node_modules/postcss-import/LICENSE +20 -0
- package/website/node_modules/postcss-import/README.md +244 -0
- package/website/node_modules/postcss-import/index.js +420 -0
- package/website/node_modules/postcss-import/lib/assign-layer-names.js +17 -0
- package/website/node_modules/postcss-import/lib/data-url.js +17 -0
- package/website/node_modules/postcss-import/lib/join-layer.js +9 -0
- package/website/node_modules/postcss-import/lib/join-media.js +28 -0
- package/website/node_modules/postcss-import/lib/load-content.js +12 -0
- package/website/node_modules/postcss-import/lib/parse-statements.js +172 -0
- package/website/node_modules/postcss-import/lib/process-content.js +59 -0
- package/website/node_modules/postcss-import/lib/resolve-id.js +42 -0
- package/website/node_modules/postcss-import/package.json +65 -0
- package/website/node_modules/postcss-js/LICENSE +20 -0
- package/website/node_modules/postcss-js/README.md +22 -0
- package/website/node_modules/postcss-js/async.js +15 -0
- package/website/node_modules/postcss-js/index.js +11 -0
- package/website/node_modules/postcss-js/index.mjs +8 -0
- package/website/node_modules/postcss-js/objectifier.js +85 -0
- package/website/node_modules/postcss-js/package.json +42 -0
- package/website/node_modules/postcss-js/parser.js +104 -0
- package/website/node_modules/postcss-js/process-result.js +11 -0
- package/website/node_modules/postcss-js/sync.js +12 -0
- package/website/node_modules/postcss-load-config/LICENSE +20 -0
- package/website/node_modules/postcss-load-config/README.md +491 -0
- package/website/node_modules/postcss-load-config/package.json +48 -0
- package/website/node_modules/postcss-load-config/src/index.d.ts +65 -0
- package/website/node_modules/postcss-load-config/src/index.js +179 -0
- package/website/node_modules/postcss-load-config/src/options.js +47 -0
- package/website/node_modules/postcss-load-config/src/plugins.js +85 -0
- package/website/node_modules/postcss-load-config/src/req.js +10 -0
- package/website/node_modules/postcss-nested/LICENSE +20 -0
- package/website/node_modules/postcss-nested/README.md +86 -0
- package/website/node_modules/postcss-nested/index.d.ts +41 -0
- package/website/node_modules/postcss-nested/index.js +361 -0
- package/website/node_modules/postcss-nested/package.json +28 -0
- package/website/node_modules/postcss-selector-parser/API.md +872 -0
- package/website/node_modules/postcss-selector-parser/CHANGELOG.md +525 -0
- package/website/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
- package/website/node_modules/postcss-selector-parser/README.md +49 -0
- package/website/node_modules/postcss-selector-parser/dist/index.js +17 -0
- package/website/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
- package/website/node_modules/postcss-selector-parser/dist/processor.js +170 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
- package/website/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
- package/website/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
- package/website/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
- package/website/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
- package/website/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
- package/website/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
- package/website/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
- package/website/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
- package/website/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
- package/website/node_modules/postcss-selector-parser/package.json +79 -0
- package/website/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts +555 -0
- package/website/node_modules/postcss-value-parser/LICENSE +22 -0
- package/website/node_modules/postcss-value-parser/README.md +263 -0
- package/website/node_modules/postcss-value-parser/lib/index.d.ts +177 -0
- package/website/node_modules/postcss-value-parser/lib/index.js +28 -0
- package/website/node_modules/postcss-value-parser/lib/parse.js +321 -0
- package/website/node_modules/postcss-value-parser/lib/stringify.js +48 -0
- package/website/node_modules/postcss-value-parser/lib/unit.js +120 -0
- package/website/node_modules/postcss-value-parser/lib/walk.js +22 -0
- package/website/node_modules/postcss-value-parser/package.json +58 -0
- package/website/node_modules/queue-microtask/LICENSE +20 -0
- package/website/node_modules/queue-microtask/README.md +90 -0
- package/website/node_modules/queue-microtask/index.d.ts +2 -0
- package/website/node_modules/queue-microtask/index.js +9 -0
- package/website/node_modules/queue-microtask/package.json +55 -0
- package/website/node_modules/read-cache/LICENSE +20 -0
- package/website/node_modules/read-cache/README.md +46 -0
- package/website/node_modules/read-cache/index.js +78 -0
- package/website/node_modules/read-cache/package.json +34 -0
- package/website/node_modules/readdirp/LICENSE +21 -0
- package/website/node_modules/readdirp/README.md +122 -0
- package/website/node_modules/readdirp/index.d.ts +43 -0
- package/website/node_modules/readdirp/index.js +287 -0
- package/website/node_modules/readdirp/package.json +122 -0
- package/website/node_modules/resolve/.editorconfig +37 -0
- package/website/node_modules/resolve/.eslintrc +65 -0
- package/website/node_modules/resolve/.github/FUNDING.yml +12 -0
- package/website/node_modules/resolve/LICENSE +21 -0
- package/website/node_modules/resolve/SECURITY.md +3 -0
- package/website/node_modules/resolve/async.js +3 -0
- package/website/node_modules/resolve/bin/resolve +50 -0
- package/website/node_modules/resolve/example/async.js +5 -0
- package/website/node_modules/resolve/example/sync.js +3 -0
- package/website/node_modules/resolve/index.js +6 -0
- package/website/node_modules/resolve/lib/async.js +329 -0
- package/website/node_modules/resolve/lib/caller.js +8 -0
- package/website/node_modules/resolve/lib/core.js +12 -0
- package/website/node_modules/resolve/lib/core.json +158 -0
- package/website/node_modules/resolve/lib/homedir.js +24 -0
- package/website/node_modules/resolve/lib/is-core.js +5 -0
- package/website/node_modules/resolve/lib/node-modules-paths.js +42 -0
- package/website/node_modules/resolve/lib/normalize-options.js +10 -0
- package/website/node_modules/resolve/lib/sync.js +208 -0
- package/website/node_modules/resolve/package.json +71 -0
- package/website/node_modules/resolve/readme.markdown +301 -0
- package/website/node_modules/resolve/sync.js +3 -0
- package/website/node_modules/resolve/test/core.js +88 -0
- package/website/node_modules/resolve/test/dotdot/abc/index.js +2 -0
- package/website/node_modules/resolve/test/dotdot/index.js +1 -0
- package/website/node_modules/resolve/test/dotdot.js +29 -0
- package/website/node_modules/resolve/test/faulty_basedir.js +29 -0
- package/website/node_modules/resolve/test/filter.js +34 -0
- package/website/node_modules/resolve/test/filter_sync.js +33 -0
- package/website/node_modules/resolve/test/home_paths.js +127 -0
- package/website/node_modules/resolve/test/home_paths_sync.js +114 -0
- package/website/node_modules/resolve/test/mock.js +315 -0
- package/website/node_modules/resolve/test/mock_sync.js +214 -0
- package/website/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
- package/website/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
- package/website/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
- package/website/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
- package/website/node_modules/resolve/test/module_dir.js +56 -0
- package/website/node_modules/resolve/test/node-modules-paths.js +143 -0
- package/website/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
- package/website/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
- package/website/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
- package/website/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
- package/website/node_modules/resolve/test/node_path.js +70 -0
- package/website/node_modules/resolve/test/nonstring.js +9 -0
- package/website/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- package/website/node_modules/resolve/test/pathfilter.js +75 -0
- package/website/node_modules/resolve/test/precedence/aaa/index.js +1 -0
- package/website/node_modules/resolve/test/precedence/aaa/main.js +1 -0
- package/website/node_modules/resolve/test/precedence/aaa.js +1 -0
- package/website/node_modules/resolve/test/precedence/bbb/main.js +1 -0
- package/website/node_modules/resolve/test/precedence/bbb.js +1 -0
- package/website/node_modules/resolve/test/precedence.js +23 -0
- package/website/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- package/website/node_modules/resolve/test/resolver/baz/package.json +4 -0
- package/website/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- package/website/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
- package/website/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
- package/website/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
- package/website/node_modules/resolve/test/resolver/cup.coffee +1 -0
- package/website/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
- package/website/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
- package/website/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
- package/website/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
- package/website/node_modules/resolve/test/resolver/false_main/index.js +0 -0
- package/website/node_modules/resolve/test/resolver/false_main/package.json +4 -0
- package/website/node_modules/resolve/test/resolver/foo.js +1 -0
- package/website/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
- package/website/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
- package/website/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
- package/website/node_modules/resolve/test/resolver/malformed_package_json/index.js +0 -0
- package/website/node_modules/resolve/test/resolver/malformed_package_json/package.json +1 -0
- package/website/node_modules/resolve/test/resolver/mug.coffee +0 -0
- package/website/node_modules/resolve/test/resolver/mug.js +0 -0
- package/website/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
- package/website/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
- package/website/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
- package/website/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
- package/website/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/website/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
- package/website/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +26 -0
- package/website/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +15 -0
- package/website/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +12 -0
- package/website/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- package/website/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- package/website/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
- package/website/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
- package/website/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
- package/website/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/website/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
- package/website/node_modules/resolve/test/resolver/symlinked/package/bar.js +1 -0
- package/website/node_modules/resolve/test/resolver/symlinked/package/package.json +3 -0
- package/website/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
- package/website/node_modules/resolve/test/resolver.js +595 -0
- package/website/node_modules/resolve/test/resolver_sync.js +726 -0
- package/website/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
- package/website/node_modules/resolve/test/shadowed_core.js +54 -0
- package/website/node_modules/resolve/test/subdirs.js +13 -0
- package/website/node_modules/resolve/test/symlinks.js +176 -0
- package/website/node_modules/reusify/.coveralls.yml +1 -0
- package/website/node_modules/reusify/.travis.yml +28 -0
- package/website/node_modules/reusify/LICENSE +22 -0
- package/website/node_modules/reusify/README.md +145 -0
- package/website/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
- package/website/node_modules/reusify/benchmarks/fib.js +13 -0
- package/website/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
- package/website/node_modules/reusify/package.json +45 -0
- package/website/node_modules/reusify/reusify.js +33 -0
- package/website/node_modules/reusify/test.js +66 -0
- package/website/node_modules/run-parallel/LICENSE +20 -0
- package/website/node_modules/run-parallel/README.md +85 -0
- package/website/node_modules/run-parallel/index.js +51 -0
- package/website/node_modules/run-parallel/package.json +58 -0
- package/website/node_modules/source-map-js/CHANGELOG.md +320 -0
- package/website/node_modules/source-map-js/LICENSE +28 -0
- package/website/node_modules/source-map-js/README.md +758 -0
- package/website/node_modules/source-map-js/lib/array-set.js +121 -0
- package/website/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/website/node_modules/source-map-js/lib/base64.js +67 -0
- package/website/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/website/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/website/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/website/node_modules/source-map-js/lib/source-map-consumer.js +1184 -0
- package/website/node_modules/source-map-js/lib/source-map-generator.js +425 -0
- package/website/node_modules/source-map-js/lib/source-node.js +413 -0
- package/website/node_modules/source-map-js/lib/util.js +594 -0
- package/website/node_modules/source-map-js/package.json +71 -0
- package/website/node_modules/source-map-js/source-map.d.ts +115 -0
- package/website/node_modules/source-map-js/source-map.js +8 -0
- package/website/node_modules/sucrase/LICENSE +21 -0
- package/website/node_modules/sucrase/README.md +295 -0
- package/website/node_modules/sucrase/bin/sucrase +3 -0
- package/website/node_modules/sucrase/bin/sucrase-node +18 -0
- package/website/node_modules/sucrase/dist/CJSImportProcessor.js +456 -0
- package/website/node_modules/sucrase/dist/HelperManager.js +176 -0
- package/website/node_modules/sucrase/dist/NameManager.js +27 -0
- package/website/node_modules/sucrase/dist/Options-gen-types.js +42 -0
- package/website/node_modules/sucrase/dist/Options.js +101 -0
- package/website/node_modules/sucrase/dist/TokenProcessor.js +357 -0
- package/website/node_modules/sucrase/dist/cli.js +320 -0
- package/website/node_modules/sucrase/dist/computeSourceMap.js +89 -0
- package/website/node_modules/sucrase/dist/esm/CJSImportProcessor.js +456 -0
- package/website/node_modules/sucrase/dist/esm/HelperManager.js +176 -0
- package/website/node_modules/sucrase/dist/esm/NameManager.js +27 -0
- package/website/node_modules/sucrase/dist/esm/Options-gen-types.js +42 -0
- package/website/node_modules/sucrase/dist/esm/Options.js +101 -0
- package/website/node_modules/sucrase/dist/esm/TokenProcessor.js +357 -0
- package/website/node_modules/sucrase/dist/esm/cli.js +320 -0
- package/website/node_modules/sucrase/dist/esm/computeSourceMap.js +89 -0
- package/website/node_modules/sucrase/dist/esm/identifyShadowedGlobals.js +98 -0
- package/website/node_modules/sucrase/dist/esm/index.js +133 -0
- package/website/node_modules/sucrase/dist/esm/parser/index.js +31 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/flow.js +1105 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/jsx/index.js +367 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/jsx/xhtml.js +256 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/types.js +37 -0
- package/website/node_modules/sucrase/dist/esm/parser/plugins/typescript.js +1632 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/index.js +1004 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/keywords.js +43 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/readWord.js +64 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/readWordTree.js +671 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/state.js +106 -0
- package/website/node_modules/sucrase/dist/esm/parser/tokenizer/types.js +361 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/base.js +60 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/expression.js +1022 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/index.js +18 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/lval.js +159 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/statement.js +1332 -0
- package/website/node_modules/sucrase/dist/esm/parser/traverser/util.js +104 -0
- package/website/node_modules/sucrase/dist/esm/parser/util/charcodes.js +115 -0
- package/website/node_modules/sucrase/dist/esm/parser/util/identifier.js +34 -0
- package/website/node_modules/sucrase/dist/esm/parser/util/whitespace.js +33 -0
- package/website/node_modules/sucrase/dist/esm/register.js +88 -0
- package/website/node_modules/sucrase/dist/esm/transformers/CJSImportTransformer.js +916 -0
- package/website/node_modules/sucrase/dist/esm/transformers/ESMImportTransformer.js +415 -0
- package/website/node_modules/sucrase/dist/esm/transformers/FlowTransformer.js +182 -0
- package/website/node_modules/sucrase/dist/esm/transformers/JSXTransformer.js +733 -0
- package/website/node_modules/sucrase/dist/esm/transformers/JestHoistTransformer.js +111 -0
- package/website/node_modules/sucrase/dist/esm/transformers/NumericSeparatorTransformer.js +20 -0
- package/website/node_modules/sucrase/dist/esm/transformers/OptionalCatchBindingTransformer.js +19 -0
- package/website/node_modules/sucrase/dist/esm/transformers/OptionalChainingNullishTransformer.js +155 -0
- package/website/node_modules/sucrase/dist/esm/transformers/ReactDisplayNameTransformer.js +160 -0
- package/website/node_modules/sucrase/dist/esm/transformers/ReactHotLoaderTransformer.js +69 -0
- package/website/node_modules/sucrase/dist/esm/transformers/RootTransformer.js +462 -0
- package/website/node_modules/sucrase/dist/esm/transformers/Transformer.js +16 -0
- package/website/node_modules/sucrase/dist/esm/transformers/TypeScriptTransformer.js +279 -0
- package/website/node_modules/sucrase/dist/esm/util/elideImportEquals.js +29 -0
- package/website/node_modules/sucrase/dist/esm/util/formatTokens.js +74 -0
- package/website/node_modules/sucrase/dist/esm/util/getClassInfo.js +352 -0
- package/website/node_modules/sucrase/dist/esm/util/getDeclarationInfo.js +40 -0
- package/website/node_modules/sucrase/dist/esm/util/getIdentifierNames.js +15 -0
- package/website/node_modules/sucrase/dist/esm/util/getImportExportSpecifierInfo.js +92 -0
- package/website/node_modules/sucrase/dist/esm/util/getJSXPragmaInfo.js +22 -0
- package/website/node_modules/sucrase/dist/esm/util/getNonTypeIdentifiers.js +43 -0
- package/website/node_modules/sucrase/dist/esm/util/getTSImportedNames.js +84 -0
- package/website/node_modules/sucrase/dist/esm/util/isAsyncOperation.js +38 -0
- package/website/node_modules/sucrase/dist/esm/util/isExportFrom.js +18 -0
- package/website/node_modules/sucrase/dist/esm/util/isIdentifier.js +81 -0
- package/website/node_modules/sucrase/dist/esm/util/removeMaybeImportAttributes.js +22 -0
- package/website/node_modules/sucrase/dist/esm/util/shouldElideDefaultExport.js +38 -0
- package/website/node_modules/sucrase/dist/identifyShadowedGlobals.js +98 -0
- package/website/node_modules/sucrase/dist/index.js +133 -0
- package/website/node_modules/sucrase/dist/parser/index.js +31 -0
- package/website/node_modules/sucrase/dist/parser/plugins/flow.js +1105 -0
- package/website/node_modules/sucrase/dist/parser/plugins/jsx/index.js +367 -0
- package/website/node_modules/sucrase/dist/parser/plugins/jsx/xhtml.js +256 -0
- package/website/node_modules/sucrase/dist/parser/plugins/types.js +37 -0
- package/website/node_modules/sucrase/dist/parser/plugins/typescript.js +1632 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/index.js +1004 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/keywords.js +43 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/readWord.js +64 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/readWordTree.js +671 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/state.js +106 -0
- package/website/node_modules/sucrase/dist/parser/tokenizer/types.js +361 -0
- package/website/node_modules/sucrase/dist/parser/traverser/base.js +60 -0
- package/website/node_modules/sucrase/dist/parser/traverser/expression.js +1022 -0
- package/website/node_modules/sucrase/dist/parser/traverser/index.js +18 -0
- package/website/node_modules/sucrase/dist/parser/traverser/lval.js +159 -0
- package/website/node_modules/sucrase/dist/parser/traverser/statement.js +1332 -0
- package/website/node_modules/sucrase/dist/parser/traverser/util.js +104 -0
- package/website/node_modules/sucrase/dist/parser/util/charcodes.js +115 -0
- package/website/node_modules/sucrase/dist/parser/util/identifier.js +34 -0
- package/website/node_modules/sucrase/dist/parser/util/whitespace.js +33 -0
- package/website/node_modules/sucrase/dist/register.js +88 -0
- package/website/node_modules/sucrase/dist/transformers/CJSImportTransformer.js +916 -0
- package/website/node_modules/sucrase/dist/transformers/ESMImportTransformer.js +415 -0
- package/website/node_modules/sucrase/dist/transformers/FlowTransformer.js +182 -0
- package/website/node_modules/sucrase/dist/transformers/JSXTransformer.js +733 -0
- package/website/node_modules/sucrase/dist/transformers/JestHoistTransformer.js +111 -0
- package/website/node_modules/sucrase/dist/transformers/NumericSeparatorTransformer.js +20 -0
- package/website/node_modules/sucrase/dist/transformers/OptionalCatchBindingTransformer.js +19 -0
- package/website/node_modules/sucrase/dist/transformers/OptionalChainingNullishTransformer.js +155 -0
- package/website/node_modules/sucrase/dist/transformers/ReactDisplayNameTransformer.js +160 -0
- package/website/node_modules/sucrase/dist/transformers/ReactHotLoaderTransformer.js +69 -0
- package/website/node_modules/sucrase/dist/transformers/RootTransformer.js +462 -0
- package/website/node_modules/sucrase/dist/transformers/Transformer.js +16 -0
- package/website/node_modules/sucrase/dist/transformers/TypeScriptTransformer.js +279 -0
- package/website/node_modules/sucrase/dist/types/CJSImportProcessor.d.ts +67 -0
- package/website/node_modules/sucrase/dist/types/HelperManager.d.ts +15 -0
- package/website/node_modules/sucrase/dist/types/NameManager.d.ts +7 -0
- package/website/node_modules/sucrase/dist/types/Options-gen-types.d.ts +9 -0
- package/website/node_modules/sucrase/dist/types/Options.d.ts +90 -0
- package/website/node_modules/sucrase/dist/types/TokenProcessor.d.ts +87 -0
- package/website/node_modules/sucrase/dist/types/cli.d.ts +1 -0
- package/website/node_modules/sucrase/dist/types/computeSourceMap.d.ts +17 -0
- package/website/node_modules/sucrase/dist/types/identifyShadowedGlobals.d.ts +12 -0
- package/website/node_modules/sucrase/dist/types/index.d.ts +26 -0
- package/website/node_modules/sucrase/dist/types/parser/index.d.ts +8 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/flow.d.ts +27 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/jsx/index.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/jsx/xhtml.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/types.d.ts +5 -0
- package/website/node_modules/sucrase/dist/types/parser/plugins/typescript.d.ts +49 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/index.d.ts +93 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/keywords.d.ts +43 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/readWord.d.ts +7 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/readWordTree.d.ts +1 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/state.d.ts +50 -0
- package/website/node_modules/sucrase/dist/types/parser/tokenizer/types.d.ts +126 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/base.d.ts +16 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/expression.d.ts +34 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/index.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/lval.d.ts +9 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/statement.d.ts +20 -0
- package/website/node_modules/sucrase/dist/types/parser/traverser/util.d.ts +17 -0
- package/website/node_modules/sucrase/dist/types/parser/util/charcodes.d.ts +107 -0
- package/website/node_modules/sucrase/dist/types/parser/util/identifier.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/parser/util/whitespace.d.ts +3 -0
- package/website/node_modules/sucrase/dist/types/register.d.ts +14 -0
- package/website/node_modules/sucrase/dist/types/transformers/CJSImportTransformer.d.ts +149 -0
- package/website/node_modules/sucrase/dist/types/transformers/ESMImportTransformer.d.ts +52 -0
- package/website/node_modules/sucrase/dist/types/transformers/FlowTransformer.d.ts +79 -0
- package/website/node_modules/sucrase/dist/types/transformers/JSXTransformer.d.ts +144 -0
- package/website/node_modules/sucrase/dist/types/transformers/JestHoistTransformer.d.ts +32 -0
- package/website/node_modules/sucrase/dist/types/transformers/NumericSeparatorTransformer.d.ts +7 -0
- package/website/node_modules/sucrase/dist/types/transformers/OptionalCatchBindingTransformer.d.ts +9 -0
- package/website/node_modules/sucrase/dist/types/transformers/OptionalChainingNullishTransformer.d.ts +36 -0
- package/website/node_modules/sucrase/dist/types/transformers/ReactDisplayNameTransformer.d.ts +29 -0
- package/website/node_modules/sucrase/dist/types/transformers/ReactHotLoaderTransformer.d.ts +12 -0
- package/website/node_modules/sucrase/dist/types/transformers/RootTransformer.d.ts +52 -0
- package/website/node_modules/sucrase/dist/types/transformers/Transformer.d.ts +6 -0
- package/website/node_modules/sucrase/dist/types/transformers/TypeScriptTransformer.d.ts +104 -0
- package/website/node_modules/sucrase/dist/types/util/elideImportEquals.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/util/formatTokens.d.ts +2 -0
- package/website/node_modules/sucrase/dist/types/util/getClassInfo.d.ts +34 -0
- package/website/node_modules/sucrase/dist/types/util/getDeclarationInfo.d.ts +18 -0
- package/website/node_modules/sucrase/dist/types/util/getIdentifierNames.d.ts +5 -0
- package/website/node_modules/sucrase/dist/types/util/getImportExportSpecifierInfo.d.ts +36 -0
- package/website/node_modules/sucrase/dist/types/util/getJSXPragmaInfo.d.ts +8 -0
- package/website/node_modules/sucrase/dist/types/util/getNonTypeIdentifiers.d.ts +3 -0
- package/website/node_modules/sucrase/dist/types/util/getTSImportedNames.d.ts +9 -0
- package/website/node_modules/sucrase/dist/types/util/isAsyncOperation.d.ts +11 -0
- package/website/node_modules/sucrase/dist/types/util/isExportFrom.d.ts +6 -0
- package/website/node_modules/sucrase/dist/types/util/isIdentifier.d.ts +8 -0
- package/website/node_modules/sucrase/dist/types/util/removeMaybeImportAttributes.d.ts +6 -0
- package/website/node_modules/sucrase/dist/types/util/shouldElideDefaultExport.d.ts +6 -0
- package/website/node_modules/sucrase/dist/util/elideImportEquals.js +29 -0
- package/website/node_modules/sucrase/dist/util/formatTokens.js +74 -0
- package/website/node_modules/sucrase/dist/util/getClassInfo.js +352 -0
- package/website/node_modules/sucrase/dist/util/getDeclarationInfo.js +40 -0
- package/website/node_modules/sucrase/dist/util/getIdentifierNames.js +15 -0
- package/website/node_modules/sucrase/dist/util/getImportExportSpecifierInfo.js +92 -0
- package/website/node_modules/sucrase/dist/util/getJSXPragmaInfo.js +22 -0
- package/website/node_modules/sucrase/dist/util/getNonTypeIdentifiers.js +43 -0
- package/website/node_modules/sucrase/dist/util/getTSImportedNames.js +84 -0
- package/website/node_modules/sucrase/dist/util/isAsyncOperation.js +38 -0
- package/website/node_modules/sucrase/dist/util/isExportFrom.js +18 -0
- package/website/node_modules/sucrase/dist/util/isIdentifier.js +81 -0
- package/website/node_modules/sucrase/dist/util/removeMaybeImportAttributes.js +22 -0
- package/website/node_modules/sucrase/dist/util/shouldElideDefaultExport.js +38 -0
- package/website/node_modules/sucrase/package.json +89 -0
- package/website/node_modules/sucrase/register/index.js +1 -0
- package/website/node_modules/sucrase/register/js.js +1 -0
- package/website/node_modules/sucrase/register/jsx.js +1 -0
- package/website/node_modules/sucrase/register/ts-legacy-module-interop.js +1 -0
- package/website/node_modules/sucrase/register/ts.js +1 -0
- package/website/node_modules/sucrase/register/tsx-legacy-module-interop.js +1 -0
- package/website/node_modules/sucrase/register/tsx.js +1 -0
- package/website/node_modules/sucrase/ts-node-plugin/index.js +83 -0
- package/website/node_modules/supports-preserve-symlinks-flag/.eslintrc +14 -0
- package/website/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +12 -0
- package/website/node_modules/supports-preserve-symlinks-flag/.nycrc +9 -0
- package/website/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +22 -0
- package/website/node_modules/supports-preserve-symlinks-flag/LICENSE +21 -0
- package/website/node_modules/supports-preserve-symlinks-flag/README.md +42 -0
- package/website/node_modules/supports-preserve-symlinks-flag/browser.js +3 -0
- package/website/node_modules/supports-preserve-symlinks-flag/index.js +9 -0
- package/website/node_modules/supports-preserve-symlinks-flag/package.json +70 -0
- package/website/node_modules/supports-preserve-symlinks-flag/test/index.js +29 -0
- package/website/node_modules/tailwindcss/CHANGELOG.md +2474 -0
- package/website/node_modules/tailwindcss/LICENSE +21 -0
- package/website/node_modules/tailwindcss/README.md +41 -0
- package/website/node_modules/tailwindcss/base.css +1 -0
- package/website/node_modules/tailwindcss/colors.d.ts +3 -0
- package/website/node_modules/tailwindcss/colors.js +2 -0
- package/website/node_modules/tailwindcss/components.css +1 -0
- package/website/node_modules/tailwindcss/defaultConfig.d.ts +3 -0
- package/website/node_modules/tailwindcss/defaultConfig.js +2 -0
- package/website/node_modules/tailwindcss/defaultTheme.d.ts +4 -0
- package/website/node_modules/tailwindcss/defaultTheme.js +2 -0
- package/website/node_modules/tailwindcss/lib/cli/build/deps.js +62 -0
- package/website/node_modules/tailwindcss/lib/cli/build/index.js +54 -0
- package/website/node_modules/tailwindcss/lib/cli/build/plugin.js +378 -0
- package/website/node_modules/tailwindcss/lib/cli/build/utils.js +88 -0
- package/website/node_modules/tailwindcss/lib/cli/build/watching.js +182 -0
- package/website/node_modules/tailwindcss/lib/cli/help/index.js +73 -0
- package/website/node_modules/tailwindcss/lib/cli/index.js +230 -0
- package/website/node_modules/tailwindcss/lib/cli/init/index.js +63 -0
- package/website/node_modules/tailwindcss/lib/cli-peer-dependencies.js +36 -0
- package/website/node_modules/tailwindcss/lib/cli.js +7 -0
- package/website/node_modules/tailwindcss/lib/corePluginList.js +187 -0
- package/website/node_modules/tailwindcss/lib/corePlugins.js +4177 -0
- package/website/node_modules/tailwindcss/lib/css/LICENSE +25 -0
- package/website/node_modules/tailwindcss/lib/css/preflight.css +378 -0
- package/website/node_modules/tailwindcss/lib/featureFlags.js +83 -0
- package/website/node_modules/tailwindcss/lib/index.js +2 -0
- package/website/node_modules/tailwindcss/lib/lib/cacheInvalidation.js +92 -0
- package/website/node_modules/tailwindcss/lib/lib/collapseAdjacentRules.js +61 -0
- package/website/node_modules/tailwindcss/lib/lib/collapseDuplicateDeclarations.js +85 -0
- package/website/node_modules/tailwindcss/lib/lib/content.js +181 -0
- package/website/node_modules/tailwindcss/lib/lib/defaultExtractor.js +243 -0
- package/website/node_modules/tailwindcss/lib/lib/detectNesting.js +45 -0
- package/website/node_modules/tailwindcss/lib/lib/evaluateTailwindFunctions.js +238 -0
- package/website/node_modules/tailwindcss/lib/lib/expandApplyAtRules.js +534 -0
- package/website/node_modules/tailwindcss/lib/lib/expandTailwindAtRules.js +274 -0
- package/website/node_modules/tailwindcss/lib/lib/findAtConfigPath.js +46 -0
- package/website/node_modules/tailwindcss/lib/lib/generateRules.js +890 -0
- package/website/node_modules/tailwindcss/lib/lib/getModuleDependencies.js +99 -0
- package/website/node_modules/tailwindcss/lib/lib/load-config.js +42 -0
- package/website/node_modules/tailwindcss/lib/lib/normalizeTailwindDirectives.js +89 -0
- package/website/node_modules/tailwindcss/lib/lib/offsets.js +306 -0
- package/website/node_modules/tailwindcss/lib/lib/partitionApplyAtRules.js +58 -0
- package/website/node_modules/tailwindcss/lib/lib/regex.js +74 -0
- package/website/node_modules/tailwindcss/lib/lib/remap-bitfield.js +89 -0
- package/website/node_modules/tailwindcss/lib/lib/resolveDefaultsAtRules.js +165 -0
- package/website/node_modules/tailwindcss/lib/lib/setupContextUtils.js +1273 -0
- package/website/node_modules/tailwindcss/lib/lib/setupTrackingContext.js +166 -0
- package/website/node_modules/tailwindcss/lib/lib/sharedState.js +87 -0
- package/website/node_modules/tailwindcss/lib/lib/substituteScreenAtRules.js +31 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/deps.js +89 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/index.js +53 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/plugin.js +375 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/utils.js +87 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/build/watching.js +179 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/help/index.js +72 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/index.js +214 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli/init/index.js +52 -0
- package/website/node_modules/tailwindcss/lib/oxide/cli.js +5 -0
- package/website/node_modules/tailwindcss/lib/oxide/postcss-plugin.js +2 -0
- package/website/node_modules/tailwindcss/lib/plugin.js +98 -0
- package/website/node_modules/tailwindcss/lib/postcss-plugins/nesting/README.md +42 -0
- package/website/node_modules/tailwindcss/lib/postcss-plugins/nesting/index.js +21 -0
- package/website/node_modules/tailwindcss/lib/postcss-plugins/nesting/plugin.js +89 -0
- package/website/node_modules/tailwindcss/lib/processTailwindFeatures.js +64 -0
- package/website/node_modules/tailwindcss/lib/public/colors.js +355 -0
- package/website/node_modules/tailwindcss/lib/public/create-plugin.js +17 -0
- package/website/node_modules/tailwindcss/lib/public/default-config.js +18 -0
- package/website/node_modules/tailwindcss/lib/public/default-theme.js +18 -0
- package/website/node_modules/tailwindcss/lib/public/load-config.js +12 -0
- package/website/node_modules/tailwindcss/lib/public/resolve-config.js +24 -0
- package/website/node_modules/tailwindcss/lib/util/applyImportantSelector.js +36 -0
- package/website/node_modules/tailwindcss/lib/util/bigSign.js +13 -0
- package/website/node_modules/tailwindcss/lib/util/buildMediaQuery.js +27 -0
- package/website/node_modules/tailwindcss/lib/util/cloneDeep.js +22 -0
- package/website/node_modules/tailwindcss/lib/util/cloneNodes.js +34 -0
- package/website/node_modules/tailwindcss/lib/util/color.js +116 -0
- package/website/node_modules/tailwindcss/lib/util/colorNames.js +752 -0
- package/website/node_modules/tailwindcss/lib/util/configurePlugins.js +23 -0
- package/website/node_modules/tailwindcss/lib/util/createPlugin.js +32 -0
- package/website/node_modules/tailwindcss/lib/util/createUtilityPlugin.js +53 -0
- package/website/node_modules/tailwindcss/lib/util/dataTypes.js +304 -0
- package/website/node_modules/tailwindcss/lib/util/defaults.js +27 -0
- package/website/node_modules/tailwindcss/lib/util/escapeClassName.js +24 -0
- package/website/node_modules/tailwindcss/lib/util/escapeCommas.js +13 -0
- package/website/node_modules/tailwindcss/lib/util/flattenColorPalette.js +18 -0
- package/website/node_modules/tailwindcss/lib/util/formatVariantSelector.js +263 -0
- package/website/node_modules/tailwindcss/lib/util/getAllConfigs.js +50 -0
- package/website/node_modules/tailwindcss/lib/util/hashConfig.js +21 -0
- package/website/node_modules/tailwindcss/lib/util/isKeyframeRule.js +13 -0
- package/website/node_modules/tailwindcss/lib/util/isPlainObject.js +17 -0
- package/website/node_modules/tailwindcss/lib/util/isSyntacticallyValidPropertyValue.js +74 -0
- package/website/node_modules/tailwindcss/lib/util/log.js +61 -0
- package/website/node_modules/tailwindcss/lib/util/nameClass.js +49 -0
- package/website/node_modules/tailwindcss/lib/util/negateValue.js +36 -0
- package/website/node_modules/tailwindcss/lib/util/normalizeConfig.js +282 -0
- package/website/node_modules/tailwindcss/lib/util/normalizeScreens.js +178 -0
- package/website/node_modules/tailwindcss/lib/util/parseAnimationValue.js +93 -0
- package/website/node_modules/tailwindcss/lib/util/parseBoxShadowValue.js +88 -0
- package/website/node_modules/tailwindcss/lib/util/parseDependency.js +47 -0
- package/website/node_modules/tailwindcss/lib/util/parseGlob.js +36 -0
- package/website/node_modules/tailwindcss/lib/util/parseObjectStyles.js +36 -0
- package/website/node_modules/tailwindcss/lib/util/pluginUtils.js +276 -0
- package/website/node_modules/tailwindcss/lib/util/prefixSelector.js +39 -0
- package/website/node_modules/tailwindcss/lib/util/pseudoElements.js +209 -0
- package/website/node_modules/tailwindcss/lib/util/removeAlphaVariables.js +31 -0
- package/website/node_modules/tailwindcss/lib/util/resolveConfig.js +256 -0
- package/website/node_modules/tailwindcss/lib/util/resolveConfigPath.js +70 -0
- package/website/node_modules/tailwindcss/lib/util/responsive.js +24 -0
- package/website/node_modules/tailwindcss/lib/util/splitAtTopLevelOnly.js +51 -0
- package/website/node_modules/tailwindcss/lib/util/tap.js +14 -0
- package/website/node_modules/tailwindcss/lib/util/toColorValue.js +13 -0
- package/website/node_modules/tailwindcss/lib/util/toPath.js +32 -0
- package/website/node_modules/tailwindcss/lib/util/transformThemeValue.js +73 -0
- package/website/node_modules/tailwindcss/lib/util/validateConfig.js +37 -0
- package/website/node_modules/tailwindcss/lib/util/validateFormalSyntax.js +26 -0
- package/website/node_modules/tailwindcss/lib/util/withAlphaVariable.js +79 -0
- package/website/node_modules/tailwindcss/lib/value-parser/LICENSE +22 -0
- package/website/node_modules/tailwindcss/lib/value-parser/README.md +3 -0
- package/website/node_modules/tailwindcss/lib/value-parser/index.d.js +2 -0
- package/website/node_modules/tailwindcss/lib/value-parser/index.js +22 -0
- package/website/node_modules/tailwindcss/lib/value-parser/parse.js +259 -0
- package/website/node_modules/tailwindcss/lib/value-parser/stringify.js +38 -0
- package/website/node_modules/tailwindcss/lib/value-parser/unit.js +86 -0
- package/website/node_modules/tailwindcss/lib/value-parser/walk.js +16 -0
- package/website/node_modules/tailwindcss/loadConfig.d.ts +4 -0
- package/website/node_modules/tailwindcss/loadConfig.js +2 -0
- package/website/node_modules/tailwindcss/nesting/index.js +2 -0
- package/website/node_modules/tailwindcss/package.json +121 -0
- package/website/node_modules/tailwindcss/peers/index.js +96540 -0
- package/website/node_modules/tailwindcss/plugin.d.ts +11 -0
- package/website/node_modules/tailwindcss/plugin.js +2 -0
- package/website/node_modules/tailwindcss/prettier.config.js +19 -0
- package/website/node_modules/tailwindcss/resolveConfig.d.ts +12 -0
- package/website/node_modules/tailwindcss/resolveConfig.js +2 -0
- package/website/node_modules/tailwindcss/screens.css +1 -0
- package/website/node_modules/tailwindcss/scripts/create-plugin-list.js +10 -0
- package/website/node_modules/tailwindcss/scripts/generate-types.js +105 -0
- package/website/node_modules/tailwindcss/scripts/release-channel.js +18 -0
- package/website/node_modules/tailwindcss/scripts/release-notes.js +21 -0
- package/website/node_modules/tailwindcss/scripts/swap-engines.js +40 -0
- package/website/node_modules/tailwindcss/scripts/type-utils.js +27 -0
- package/website/node_modules/tailwindcss/src/cli/build/deps.js +56 -0
- package/website/node_modules/tailwindcss/src/cli/build/index.js +49 -0
- package/website/node_modules/tailwindcss/src/cli/build/plugin.js +444 -0
- package/website/node_modules/tailwindcss/src/cli/build/utils.js +76 -0
- package/website/node_modules/tailwindcss/src/cli/build/watching.js +229 -0
- package/website/node_modules/tailwindcss/src/cli/help/index.js +70 -0
- package/website/node_modules/tailwindcss/src/cli/index.js +216 -0
- package/website/node_modules/tailwindcss/src/cli/init/index.js +79 -0
- package/website/node_modules/tailwindcss/src/cli-peer-dependencies.js +15 -0
- package/website/node_modules/tailwindcss/src/cli.js +7 -0
- package/website/node_modules/tailwindcss/src/corePluginList.js +1 -0
- package/website/node_modules/tailwindcss/src/corePlugins.js +2855 -0
- package/website/node_modules/tailwindcss/src/css/LICENSE +25 -0
- package/website/node_modules/tailwindcss/src/css/preflight.css +378 -0
- package/website/node_modules/tailwindcss/src/featureFlags.js +70 -0
- package/website/node_modules/tailwindcss/src/index.js +1 -0
- package/website/node_modules/tailwindcss/src/lib/cacheInvalidation.js +52 -0
- package/website/node_modules/tailwindcss/src/lib/collapseAdjacentRules.js +58 -0
- package/website/node_modules/tailwindcss/src/lib/collapseDuplicateDeclarations.js +93 -0
- package/website/node_modules/tailwindcss/src/lib/content.js +208 -0
- package/website/node_modules/tailwindcss/src/lib/defaultExtractor.js +217 -0
- package/website/node_modules/tailwindcss/src/lib/detectNesting.js +47 -0
- package/website/node_modules/tailwindcss/src/lib/evaluateTailwindFunctions.js +272 -0
- package/website/node_modules/tailwindcss/src/lib/expandApplyAtRules.js +613 -0
- package/website/node_modules/tailwindcss/src/lib/expandTailwindAtRules.js +285 -0
- package/website/node_modules/tailwindcss/src/lib/findAtConfigPath.js +48 -0
- package/website/node_modules/tailwindcss/src/lib/generateRules.js +934 -0
- package/website/node_modules/tailwindcss/src/lib/getModuleDependencies.js +79 -0
- package/website/node_modules/tailwindcss/src/lib/load-config.ts +31 -0
- package/website/node_modules/tailwindcss/src/lib/normalizeTailwindDirectives.js +84 -0
- package/website/node_modules/tailwindcss/src/lib/offsets.js +373 -0
- package/website/node_modules/tailwindcss/src/lib/partitionApplyAtRules.js +52 -0
- package/website/node_modules/tailwindcss/src/lib/regex.js +74 -0
- package/website/node_modules/tailwindcss/src/lib/remap-bitfield.js +82 -0
- package/website/node_modules/tailwindcss/src/lib/resolveDefaultsAtRules.js +163 -0
- package/website/node_modules/tailwindcss/src/lib/setupContextUtils.js +1340 -0
- package/website/node_modules/tailwindcss/src/lib/setupTrackingContext.js +169 -0
- package/website/node_modules/tailwindcss/src/lib/sharedState.js +61 -0
- package/website/node_modules/tailwindcss/src/lib/substituteScreenAtRules.js +19 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/deps.ts +91 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/index.ts +47 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/plugin.ts +442 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/utils.ts +74 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/build/watching.ts +225 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/help/index.ts +69 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/index.ts +204 -0
- package/website/node_modules/tailwindcss/src/oxide/cli/init/index.ts +59 -0
- package/website/node_modules/tailwindcss/src/oxide/cli.ts +1 -0
- package/website/node_modules/tailwindcss/src/oxide/postcss-plugin.ts +1 -0
- package/website/node_modules/tailwindcss/src/plugin.js +107 -0
- package/website/node_modules/tailwindcss/src/postcss-plugins/nesting/README.md +42 -0
- package/website/node_modules/tailwindcss/src/postcss-plugins/nesting/index.js +13 -0
- package/website/node_modules/tailwindcss/src/postcss-plugins/nesting/plugin.js +80 -0
- package/website/node_modules/tailwindcss/src/processTailwindFeatures.js +59 -0
- package/website/node_modules/tailwindcss/src/public/colors.js +322 -0
- package/website/node_modules/tailwindcss/src/public/create-plugin.js +2 -0
- package/website/node_modules/tailwindcss/src/public/default-config.js +4 -0
- package/website/node_modules/tailwindcss/src/public/default-theme.js +4 -0
- package/website/node_modules/tailwindcss/src/public/load-config.js +2 -0
- package/website/node_modules/tailwindcss/src/public/resolve-config.js +7 -0
- package/website/node_modules/tailwindcss/src/util/applyImportantSelector.js +27 -0
- package/website/node_modules/tailwindcss/src/util/bigSign.js +3 -0
- package/website/node_modules/tailwindcss/src/util/buildMediaQuery.js +22 -0
- package/website/node_modules/tailwindcss/src/util/cloneDeep.js +11 -0
- package/website/node_modules/tailwindcss/src/util/cloneNodes.js +28 -0
- package/website/node_modules/tailwindcss/src/util/color.js +88 -0
- package/website/node_modules/tailwindcss/src/util/colorNames.js +150 -0
- package/website/node_modules/tailwindcss/src/util/configurePlugins.js +23 -0
- package/website/node_modules/tailwindcss/src/util/createPlugin.js +27 -0
- package/website/node_modules/tailwindcss/src/util/createUtilityPlugin.js +37 -0
- package/website/node_modules/tailwindcss/src/util/dataTypes.js +292 -0
- package/website/node_modules/tailwindcss/src/util/defaults.js +17 -0
- package/website/node_modules/tailwindcss/src/util/escapeClassName.js +8 -0
- package/website/node_modules/tailwindcss/src/util/escapeCommas.js +3 -0
- package/website/node_modules/tailwindcss/src/util/flattenColorPalette.js +13 -0
- package/website/node_modules/tailwindcss/src/util/formatVariantSelector.js +316 -0
- package/website/node_modules/tailwindcss/src/util/getAllConfigs.js +38 -0
- package/website/node_modules/tailwindcss/src/util/hashConfig.js +5 -0
- package/website/node_modules/tailwindcss/src/util/isKeyframeRule.js +3 -0
- package/website/node_modules/tailwindcss/src/util/isPlainObject.js +8 -0
- package/website/node_modules/tailwindcss/src/util/isSyntacticallyValidPropertyValue.js +61 -0
- package/website/node_modules/tailwindcss/src/util/log.js +29 -0
- package/website/node_modules/tailwindcss/src/util/nameClass.js +30 -0
- package/website/node_modules/tailwindcss/src/util/negateValue.js +24 -0
- package/website/node_modules/tailwindcss/src/util/normalizeConfig.js +301 -0
- package/website/node_modules/tailwindcss/src/util/normalizeScreens.js +140 -0
- package/website/node_modules/tailwindcss/src/util/parseAnimationValue.js +68 -0
- package/website/node_modules/tailwindcss/src/util/parseBoxShadowValue.js +72 -0
- package/website/node_modules/tailwindcss/src/util/parseDependency.js +44 -0
- package/website/node_modules/tailwindcss/src/util/parseGlob.js +24 -0
- package/website/node_modules/tailwindcss/src/util/parseObjectStyles.js +19 -0
- package/website/node_modules/tailwindcss/src/util/pluginUtils.js +291 -0
- package/website/node_modules/tailwindcss/src/util/prefixSelector.js +33 -0
- package/website/node_modules/tailwindcss/src/util/pseudoElements.js +167 -0
- package/website/node_modules/tailwindcss/src/util/removeAlphaVariables.js +24 -0
- package/website/node_modules/tailwindcss/src/util/resolveConfig.js +277 -0
- package/website/node_modules/tailwindcss/src/util/resolveConfigPath.js +66 -0
- package/website/node_modules/tailwindcss/src/util/responsive.js +10 -0
- package/website/node_modules/tailwindcss/src/util/splitAtTopLevelOnly.js +52 -0
- package/website/node_modules/tailwindcss/src/util/tap.js +4 -0
- package/website/node_modules/tailwindcss/src/util/toColorValue.js +3 -0
- package/website/node_modules/tailwindcss/src/util/toPath.js +26 -0
- package/website/node_modules/tailwindcss/src/util/transformThemeValue.js +62 -0
- package/website/node_modules/tailwindcss/src/util/validateConfig.js +26 -0
- package/website/node_modules/tailwindcss/src/util/validateFormalSyntax.js +34 -0
- package/website/node_modules/tailwindcss/src/util/withAlphaVariable.js +49 -0
- package/website/node_modules/tailwindcss/src/value-parser/LICENSE +22 -0
- package/website/node_modules/tailwindcss/src/value-parser/README.md +3 -0
- package/website/node_modules/tailwindcss/src/value-parser/index.d.ts +177 -0
- package/website/node_modules/tailwindcss/src/value-parser/index.js +28 -0
- package/website/node_modules/tailwindcss/src/value-parser/parse.js +303 -0
- package/website/node_modules/tailwindcss/src/value-parser/stringify.js +41 -0
- package/website/node_modules/tailwindcss/src/value-parser/unit.js +118 -0
- package/website/node_modules/tailwindcss/src/value-parser/walk.js +18 -0
- package/website/node_modules/tailwindcss/stubs/.npmignore +1 -0
- package/website/node_modules/tailwindcss/stubs/.prettierrc.json +6 -0
- package/website/node_modules/tailwindcss/stubs/config.full.js +991 -0
- package/website/node_modules/tailwindcss/stubs/config.simple.js +7 -0
- package/website/node_modules/tailwindcss/stubs/postcss.config.cjs +6 -0
- package/website/node_modules/tailwindcss/stubs/postcss.config.js +6 -0
- package/website/node_modules/tailwindcss/stubs/tailwind.config.cjs +2 -0
- package/website/node_modules/tailwindcss/stubs/tailwind.config.js +2 -0
- package/website/node_modules/tailwindcss/stubs/tailwind.config.ts +3 -0
- package/website/node_modules/tailwindcss/tailwind.css +5 -0
- package/website/node_modules/tailwindcss/types/config.d.ts +368 -0
- package/website/node_modules/tailwindcss/types/generated/.gitkeep +0 -0
- package/website/node_modules/tailwindcss/types/generated/colors.d.ts +298 -0
- package/website/node_modules/tailwindcss/types/generated/corePluginList.d.ts +1 -0
- package/website/node_modules/tailwindcss/types/generated/default-theme.d.ts +372 -0
- package/website/node_modules/tailwindcss/types/index.d.ts +7 -0
- package/website/node_modules/tailwindcss/utilities.css +1 -0
- package/website/node_modules/tailwindcss/variants.css +1 -0
- package/website/node_modules/thenify/History.md +11 -0
- package/website/node_modules/thenify/LICENSE +22 -0
- package/website/node_modules/thenify/README.md +120 -0
- package/website/node_modules/thenify/index.js +77 -0
- package/website/node_modules/thenify/package.json +31 -0
- package/website/node_modules/thenify-all/History.md +11 -0
- package/website/node_modules/thenify-all/LICENSE +22 -0
- package/website/node_modules/thenify-all/README.md +66 -0
- package/website/node_modules/thenify-all/index.js +73 -0
- package/website/node_modules/thenify-all/package.json +34 -0
- package/website/node_modules/to-regex-range/LICENSE +21 -0
- package/website/node_modules/to-regex-range/README.md +305 -0
- package/website/node_modules/to-regex-range/index.js +288 -0
- package/website/node_modules/to-regex-range/package.json +88 -0
- package/website/node_modules/ts-interface-checker/LICENSE +201 -0
- package/website/node_modules/ts-interface-checker/README.md +185 -0
- package/website/node_modules/ts-interface-checker/dist/index.d.ts +124 -0
- package/website/node_modules/ts-interface-checker/dist/index.js +224 -0
- package/website/node_modules/ts-interface-checker/dist/types.d.ts +181 -0
- package/website/node_modules/ts-interface-checker/dist/types.js +566 -0
- package/website/node_modules/ts-interface-checker/dist/util.d.ts +55 -0
- package/website/node_modules/ts-interface-checker/dist/util.js +130 -0
- package/website/node_modules/ts-interface-checker/package.json +60 -0
- package/website/node_modules/util-deprecate/History.md +16 -0
- package/website/node_modules/util-deprecate/LICENSE +24 -0
- package/website/node_modules/util-deprecate/README.md +53 -0
- package/website/node_modules/util-deprecate/browser.js +67 -0
- package/website/node_modules/util-deprecate/node.js +6 -0
- package/website/node_modules/util-deprecate/package.json +27 -0
- package/website/node_modules/wrappy/LICENSE +15 -0
- package/website/node_modules/wrappy/README.md +36 -0
- package/website/node_modules/wrappy/package.json +29 -0
- package/website/node_modules/wrappy/wrappy.js +33 -0
- package/website/node_modules/yaml/LICENSE +13 -0
- package/website/node_modules/yaml/README.md +147 -0
- package/website/node_modules/yaml/browser/dist/compose/compose-collection.js +76 -0
- package/website/node_modules/yaml/browser/dist/compose/compose-doc.js +41 -0
- package/website/node_modules/yaml/browser/dist/compose/compose-node.js +92 -0
- package/website/node_modules/yaml/browser/dist/compose/compose-scalar.js +80 -0
- package/website/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-block-map.js +111 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +194 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +46 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +199 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/website/node_modules/yaml/browser/dist/compose/resolve-props.js +134 -0
- package/website/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/website/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +27 -0
- package/website/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/website/node_modules/yaml/browser/dist/compose/util-map-includes.js +17 -0
- package/website/node_modules/yaml/browser/dist/doc/Document.js +334 -0
- package/website/node_modules/yaml/browser/dist/doc/anchors.js +72 -0
- package/website/node_modules/yaml/browser/dist/doc/applyReviver.js +54 -0
- package/website/node_modules/yaml/browser/dist/doc/createNode.js +89 -0
- package/website/node_modules/yaml/browser/dist/doc/directives.js +169 -0
- package/website/node_modules/yaml/browser/dist/errors.js +57 -0
- package/website/node_modules/yaml/browser/dist/index.js +17 -0
- package/website/node_modules/yaml/browser/dist/log.js +16 -0
- package/website/node_modules/yaml/browser/dist/node_modules/tslib/tslib.es6.js +21 -0
- package/website/node_modules/yaml/browser/dist/nodes/Alias.js +101 -0
- package/website/node_modules/yaml/browser/dist/nodes/Collection.js +148 -0
- package/website/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/website/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/website/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/website/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/website/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/website/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +104 -0
- package/website/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/website/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/website/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/website/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/website/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/website/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/website/node_modules/yaml/browser/dist/parse/lexer.js +701 -0
- package/website/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/website/node_modules/yaml/browser/dist/parse/parser.js +950 -0
- package/website/node_modules/yaml/browser/dist/public-api.js +99 -0
- package/website/node_modules/yaml/browser/dist/schema/Schema.js +38 -0
- package/website/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/website/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/website/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/website/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/website/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/website/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/website/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/website/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/website/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/website/node_modules/yaml/browser/dist/schema/tags.js +83 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +66 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +37 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/website/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/website/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +135 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringify.js +124 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +151 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/website/node_modules/yaml/browser/dist/stringify/stringifyString.js +328 -0
- package/website/node_modules/yaml/browser/dist/util.js +11 -0
- package/website/node_modules/yaml/browser/dist/visit.js +233 -0
- package/website/node_modules/yaml/browser/index.js +5 -0
- package/website/node_modules/yaml/browser/package.json +3 -0
- package/website/node_modules/yaml/dist/compose/compose-collection.d.ts +5 -0
- package/website/node_modules/yaml/dist/compose/compose-collection.js +78 -0
- package/website/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/website/node_modules/yaml/dist/compose/compose-doc.js +43 -0
- package/website/node_modules/yaml/dist/compose/compose-node.d.ts +27 -0
- package/website/node_modules/yaml/dist/compose/compose-node.js +95 -0
- package/website/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/website/node_modules/yaml/dist/compose/compose-scalar.js +82 -0
- package/website/node_modules/yaml/dist/compose/composer.d.ts +62 -0
- package/website/node_modules/yaml/dist/compose/composer.js +221 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-map.d.ts +7 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-map.js +113 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +10 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-scalar.js +196 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/website/node_modules/yaml/dist/compose/resolve-block-seq.js +48 -0
- package/website/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/website/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/website/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/website/node_modules/yaml/dist/compose/resolve-flow-collection.js +201 -0
- package/website/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/website/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/website/node_modules/yaml/dist/compose/resolve-props.d.ts +22 -0
- package/website/node_modules/yaml/dist/compose/resolve-props.js +136 -0
- package/website/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/website/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/website/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/website/node_modules/yaml/dist/compose/util-empty-scalar-position.js +29 -0
- package/website/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/website/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/website/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/website/node_modules/yaml/dist/compose/util-map-includes.js +19 -0
- package/website/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/website/node_modules/yaml/dist/doc/Document.js +336 -0
- package/website/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/website/node_modules/yaml/dist/doc/anchors.js +77 -0
- package/website/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/website/node_modules/yaml/dist/doc/applyReviver.js +56 -0
- package/website/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/website/node_modules/yaml/dist/doc/createNode.js +91 -0
- package/website/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/website/node_modules/yaml/dist/doc/directives.js +171 -0
- package/website/node_modules/yaml/dist/errors.d.ts +21 -0
- package/website/node_modules/yaml/dist/errors.js +62 -0
- package/website/node_modules/yaml/dist/index.d.ts +22 -0
- package/website/node_modules/yaml/dist/index.js +50 -0
- package/website/node_modules/yaml/dist/log.d.ts +3 -0
- package/website/node_modules/yaml/dist/log.js +19 -0
- package/website/node_modules/yaml/dist/nodes/Alias.d.ts +28 -0
- package/website/node_modules/yaml/dist/nodes/Alias.js +103 -0
- package/website/node_modules/yaml/dist/nodes/Collection.d.ts +74 -0
- package/website/node_modules/yaml/dist/nodes/Collection.js +152 -0
- package/website/node_modules/yaml/dist/nodes/Node.d.ts +46 -0
- package/website/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/website/node_modules/yaml/dist/nodes/Pair.d.ts +21 -0
- package/website/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/website/node_modules/yaml/dist/nodes/Scalar.d.ts +42 -0
- package/website/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/website/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/website/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/website/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/website/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/website/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/website/node_modules/yaml/dist/nodes/addPairToJSMap.js +106 -0
- package/website/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/website/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/website/node_modules/yaml/dist/nodes/toJS.d.ts +27 -0
- package/website/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/website/node_modules/yaml/dist/options.d.ts +338 -0
- package/website/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/website/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/website/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/website/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/website/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/website/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/website/node_modules/yaml/dist/parse/cst.d.ts +106 -0
- package/website/node_modules/yaml/dist/parse/cst.js +112 -0
- package/website/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/website/node_modules/yaml/dist/parse/lexer.js +703 -0
- package/website/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/website/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/website/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/website/node_modules/yaml/dist/parse/parser.js +954 -0
- package/website/node_modules/yaml/dist/public-api.d.ts +43 -0
- package/website/node_modules/yaml/dist/public-api.js +104 -0
- package/website/node_modules/yaml/dist/schema/Schema.d.ts +18 -0
- package/website/node_modules/yaml/dist/schema/Schema.js +40 -0
- package/website/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/website/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/website/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/website/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/website/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/website/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/website/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/website/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/website/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/website/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/website/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/website/node_modules/yaml/dist/schema/tags.d.ts +40 -0
- package/website/node_modules/yaml/dist/schema/tags.js +86 -0
- package/website/node_modules/yaml/dist/schema/types.d.ts +90 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/binary.js +68 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +28 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/schema.js +39 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/website/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/website/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/website/node_modules/yaml/dist/stringify/foldFlowLines.js +140 -0
- package/website/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/website/node_modules/yaml/dist/stringify/stringify.js +127 -0
- package/website/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/website/node_modules/yaml/dist/stringify/stringifyCollection.js +153 -0
- package/website/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/website/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/website/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/website/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/website/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/website/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/website/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/website/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/website/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/website/node_modules/yaml/dist/stringify/stringifyString.js +330 -0
- package/website/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/website/node_modules/yaml/dist/test-events.js +134 -0
- package/website/node_modules/yaml/dist/util.d.ts +12 -0
- package/website/node_modules/yaml/dist/util.js +28 -0
- package/website/node_modules/yaml/dist/visit.d.ts +102 -0
- package/website/node_modules/yaml/dist/visit.js +236 -0
- package/website/node_modules/yaml/package.json +95 -0
- package/website/node_modules/yaml/util.js +2 -0
- package/website/package-lock.json +940 -0
- package/website/package.json +19 -0
- package/website/src/dev/app.css +3 -0
- package/website/src/pages/Home.js +16 -0
- package/website/src/views/home.html +3 -0
- package/website/tailwind.config.js +12 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trace-mapping.umd.js","sources":["../src/resolve.ts","../src/strip-filename.ts","../src/sourcemap-segment.ts","../src/sort.ts","../src/binary-search.ts","../src/by-source.ts","../src/any-map.ts","../src/trace-mapping.ts"],"sourcesContent":["import resolveUri from '@jridgewell/resolve-uri';\n\nexport default function resolve(input: string, base: string | undefined): string {\n // The base is always treated as a directory, if it's not empty.\n // https://github.com/mozilla/source-map/blob/8cb3ee57/lib/util.js#L327\n // https://github.com/chromium/chromium/blob/da4adbb3/third_party/blink/renderer/devtools/front_end/sdk/SourceMap.js#L400-L401\n if (base && !base.endsWith('/')) base += '/';\n\n return resolveUri(input, base);\n}\n","/**\n * Removes everything after the last \"/\", but leaves the slash.\n */\nexport default function stripFilename(path: string | undefined | null): string {\n if (!path) return '';\n const index = path.lastIndexOf('/');\n return path.slice(0, index + 1);\n}\n","type GeneratedColumn = number;\ntype SourcesIndex = number;\ntype SourceLine = number;\ntype SourceColumn = number;\ntype NamesIndex = number;\n\ntype GeneratedLine = number;\n\nexport type SourceMapSegment =\n | [GeneratedColumn]\n | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn]\n | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn, NamesIndex];\n\nexport type ReverseSegment = [SourceColumn, GeneratedLine, GeneratedColumn];\n\nexport const COLUMN = 0;\nexport const SOURCES_INDEX = 1;\nexport const SOURCE_LINE = 2;\nexport const SOURCE_COLUMN = 3;\nexport const NAMES_INDEX = 4;\n\nexport const REV_GENERATED_LINE = 1;\nexport const REV_GENERATED_COLUMN = 2;\n","import { COLUMN } from './sourcemap-segment';\n\nimport type { SourceMapSegment } from './sourcemap-segment';\n\nexport default function maybeSort(\n mappings: SourceMapSegment[][],\n owned: boolean,\n): SourceMapSegment[][] {\n const unsortedIndex = nextUnsortedSegmentLine(mappings, 0);\n if (unsortedIndex === mappings.length) return mappings;\n\n // If we own the array (meaning we parsed it from JSON), then we're free to directly mutate it. If\n // not, we do not want to modify the consumer's input array.\n if (!owned) mappings = mappings.slice();\n\n for (let i = unsortedIndex; i < mappings.length; i = nextUnsortedSegmentLine(mappings, i + 1)) {\n mappings[i] = sortSegments(mappings[i], owned);\n }\n return mappings;\n}\n\nfunction nextUnsortedSegmentLine(mappings: SourceMapSegment[][], start: number): number {\n for (let i = start; i < mappings.length; i++) {\n if (!isSorted(mappings[i])) return i;\n }\n return mappings.length;\n}\n\nfunction isSorted(line: SourceMapSegment[]): boolean {\n for (let j = 1; j < line.length; j++) {\n if (line[j][COLUMN] < line[j - 1][COLUMN]) {\n return false;\n }\n }\n return true;\n}\n\nfunction sortSegments(line: SourceMapSegment[], owned: boolean): SourceMapSegment[] {\n if (!owned) line = line.slice();\n return line.sort(sortComparator);\n}\n\nfunction sortComparator(a: SourceMapSegment, b: SourceMapSegment): number {\n return a[COLUMN] - b[COLUMN];\n}\n","import type { SourceMapSegment, ReverseSegment } from './sourcemap-segment';\nimport { COLUMN } from './sourcemap-segment';\n\nexport type MemoState = {\n lastKey: number;\n lastNeedle: number;\n lastIndex: number;\n};\n\nexport let found = false;\n\n/**\n * A binary search implementation that returns the index if a match is found.\n * If no match is found, then the left-index (the index associated with the item that comes just\n * before the desired index) is returned. To maintain proper sort order, a splice would happen at\n * the next index:\n *\n * ```js\n * const array = [1, 3];\n * const needle = 2;\n * const index = binarySearch(array, needle, (item, needle) => item - needle);\n *\n * assert.equal(index, 0);\n * array.splice(index + 1, 0, needle);\n * assert.deepEqual(array, [1, 2, 3]);\n * ```\n */\nexport function binarySearch(\n haystack: SourceMapSegment[] | ReverseSegment[],\n needle: number,\n low: number,\n high: number,\n): number {\n while (low <= high) {\n const mid = low + ((high - low) >> 1);\n const cmp = haystack[mid][COLUMN] - needle;\n\n if (cmp === 0) {\n found = true;\n return mid;\n }\n\n if (cmp < 0) {\n low = mid + 1;\n } else {\n high = mid - 1;\n }\n }\n\n found = false;\n return low - 1;\n}\n\nexport function upperBound(\n haystack: SourceMapSegment[] | ReverseSegment[],\n needle: number,\n index: number,\n): number {\n for (let i = index + 1; i < haystack.length; index = i++) {\n if (haystack[i][COLUMN] !== needle) break;\n }\n return index;\n}\n\nexport function lowerBound(\n haystack: SourceMapSegment[] | ReverseSegment[],\n needle: number,\n index: number,\n): number {\n for (let i = index - 1; i >= 0; index = i--) {\n if (haystack[i][COLUMN] !== needle) break;\n }\n return index;\n}\n\nexport function memoizedState(): MemoState {\n return {\n lastKey: -1,\n lastNeedle: -1,\n lastIndex: -1,\n };\n}\n\n/**\n * This overly complicated beast is just to record the last tested line/column and the resulting\n * index, allowing us to skip a few tests if mappings are monotonically increasing.\n */\nexport function memoizedBinarySearch(\n haystack: SourceMapSegment[] | ReverseSegment[],\n needle: number,\n state: MemoState,\n key: number,\n): number {\n const { lastKey, lastNeedle, lastIndex } = state;\n\n let low = 0;\n let high = haystack.length - 1;\n if (key === lastKey) {\n if (needle === lastNeedle) {\n found = lastIndex !== -1 && haystack[lastIndex][COLUMN] === needle;\n return lastIndex;\n }\n\n if (needle >= lastNeedle) {\n // lastIndex may be -1 if the previous needle was not found.\n low = lastIndex === -1 ? 0 : lastIndex;\n } else {\n high = lastIndex;\n }\n }\n state.lastKey = key;\n state.lastNeedle = needle;\n\n return (state.lastIndex = binarySearch(haystack, needle, low, high));\n}\n","import { COLUMN, SOURCES_INDEX, SOURCE_LINE, SOURCE_COLUMN } from './sourcemap-segment';\nimport { memoizedBinarySearch, upperBound } from './binary-search';\n\nimport type { ReverseSegment, SourceMapSegment } from './sourcemap-segment';\nimport type { MemoState } from './binary-search';\n\nexport type Source = {\n __proto__: null;\n [line: number]: Exclude<ReverseSegment, [number]>[];\n};\n\n// Rebuilds the original source files, with mappings that are ordered by source line/column instead\n// of generated line/column.\nexport default function buildBySources(\n decoded: readonly SourceMapSegment[][],\n memos: MemoState[],\n): Source[] {\n const sources: Source[] = memos.map(buildNullArray);\n\n for (let i = 0; i < decoded.length; i++) {\n const line = decoded[i];\n for (let j = 0; j < line.length; j++) {\n const seg = line[j];\n if (seg.length === 1) continue;\n\n const sourceIndex = seg[SOURCES_INDEX];\n const sourceLine = seg[SOURCE_LINE];\n const sourceColumn = seg[SOURCE_COLUMN];\n const originalSource = sources[sourceIndex];\n const originalLine = (originalSource[sourceLine] ||= []);\n const memo = memos[sourceIndex];\n\n // The binary search either found a match, or it found the left-index just before where the\n // segment should go. Either way, we want to insert after that. And there may be multiple\n // generated segments associated with an original location, so there may need to move several\n // indexes before we find where we need to insert.\n const index = upperBound(\n originalLine,\n sourceColumn,\n memoizedBinarySearch(originalLine, sourceColumn, memo, sourceLine),\n );\n\n insert(originalLine, (memo.lastIndex = index + 1), [sourceColumn, i, seg[COLUMN]]);\n }\n }\n\n return sources;\n}\n\nfunction insert<T>(array: T[], index: number, value: T) {\n for (let i = array.length; i > index; i--) {\n array[i] = array[i - 1];\n }\n array[index] = value;\n}\n\n// Null arrays allow us to use ordered index keys without actually allocating contiguous memory like\n// a real array. We use a null-prototype object to avoid prototype pollution and deoptimizations.\n// Numeric properties on objects are magically sorted in ascending order by the engine regardless of\n// the insertion order. So, by setting any numeric keys, even out of order, we'll get ascending\n// order when iterating with for-in.\nfunction buildNullArray<T extends { __proto__: null }>(): T {\n return { __proto__: null } as T;\n}\n","import { TraceMap, presortedDecodedMap, decodedMappings } from './trace-mapping';\nimport {\n COLUMN,\n SOURCES_INDEX,\n SOURCE_LINE,\n SOURCE_COLUMN,\n NAMES_INDEX,\n} from './sourcemap-segment';\n\nimport type {\n Section,\n SectionedSourceMap,\n DecodedSourceMap,\n SectionedSourceMapInput,\n Ro,\n} from './types';\nimport type { SourceMapSegment } from './sourcemap-segment';\n\ntype AnyMap = {\n new (map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;\n (map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;\n};\n\nexport const AnyMap: AnyMap = function (map, mapUrl) {\n const parsed =\n typeof map === 'string' ? (JSON.parse(map) as Exclude<SectionedSourceMapInput, string>) : map;\n\n if (!('sections' in parsed)) return new TraceMap(parsed, mapUrl);\n\n const mappings: SourceMapSegment[][] = [];\n const sources: string[] = [];\n const sourcesContent: (string | null)[] = [];\n const names: string[] = [];\n\n recurse(parsed, mapUrl, mappings, sources, sourcesContent, names, 0, 0, Infinity, Infinity);\n\n const joined: DecodedSourceMap = {\n version: 3,\n file: parsed.file,\n names,\n sources,\n sourcesContent,\n mappings,\n };\n\n return presortedDecodedMap(joined);\n} as AnyMap;\n\nfunction recurse(\n input: Ro<SectionedSourceMap>,\n mapUrl: string | null | undefined,\n mappings: SourceMapSegment[][],\n sources: string[],\n sourcesContent: (string | null)[],\n names: string[],\n lineOffset: number,\n columnOffset: number,\n stopLine: number,\n stopColumn: number,\n) {\n const { sections } = input;\n for (let i = 0; i < sections.length; i++) {\n const { map, offset } = sections[i];\n\n let sl = stopLine;\n let sc = stopColumn;\n if (i + 1 < sections.length) {\n const nextOffset = sections[i + 1].offset;\n sl = Math.min(stopLine, lineOffset + nextOffset.line);\n\n if (sl === stopLine) {\n sc = Math.min(stopColumn, columnOffset + nextOffset.column);\n } else if (sl < stopLine) {\n sc = columnOffset + nextOffset.column;\n }\n }\n\n addSection(\n map,\n mapUrl,\n mappings,\n sources,\n sourcesContent,\n names,\n lineOffset + offset.line,\n columnOffset + offset.column,\n sl,\n sc,\n );\n }\n}\n\nfunction addSection(\n input: Ro<Section['map']>,\n mapUrl: string | null | undefined,\n mappings: SourceMapSegment[][],\n sources: string[],\n sourcesContent: (string | null)[],\n names: string[],\n lineOffset: number,\n columnOffset: number,\n stopLine: number,\n stopColumn: number,\n) {\n if ('sections' in input) return recurse(...(arguments as unknown as Parameters<typeof recurse>));\n\n const map = new TraceMap(input, mapUrl);\n const sourcesOffset = sources.length;\n const namesOffset = names.length;\n const decoded = decodedMappings(map);\n const { resolvedSources, sourcesContent: contents } = map;\n\n append(sources, resolvedSources);\n append(names, map.names);\n if (contents) append(sourcesContent, contents);\n else for (let i = 0; i < resolvedSources.length; i++) sourcesContent.push(null);\n\n for (let i = 0; i < decoded.length; i++) {\n const lineI = lineOffset + i;\n\n // We can only add so many lines before we step into the range that the next section's map\n // controls. When we get to the last line, then we'll start checking the segments to see if\n // they've crossed into the column range. But it may not have any columns that overstep, so we\n // still need to check that we don't overstep lines, too.\n if (lineI > stopLine) return;\n\n // The out line may already exist in mappings (if we're continuing the line started by a\n // previous section). Or, we may have jumped ahead several lines to start this section.\n const out = getLine(mappings, lineI);\n // On the 0th loop, the section's column offset shifts us forward. On all other lines (since the\n // map can be multiple lines), it doesn't.\n const cOffset = i === 0 ? columnOffset : 0;\n\n const line = decoded[i];\n for (let j = 0; j < line.length; j++) {\n const seg = line[j];\n const column = cOffset + seg[COLUMN];\n\n // If this segment steps into the column range that the next section's map controls, we need\n // to stop early.\n if (lineI === stopLine && column >= stopColumn) return;\n\n if (seg.length === 1) {\n out.push([column]);\n continue;\n }\n\n const sourcesIndex = sourcesOffset + seg[SOURCES_INDEX];\n const sourceLine = seg[SOURCE_LINE];\n const sourceColumn = seg[SOURCE_COLUMN];\n out.push(\n seg.length === 4\n ? [column, sourcesIndex, sourceLine, sourceColumn]\n : [column, sourcesIndex, sourceLine, sourceColumn, namesOffset + seg[NAMES_INDEX]],\n );\n }\n }\n}\n\nfunction append<T>(arr: T[], other: T[]) {\n for (let i = 0; i < other.length; i++) arr.push(other[i]);\n}\n\nfunction getLine<T>(arr: T[][], index: number): T[] {\n for (let i = arr.length; i <= index; i++) arr[i] = [];\n return arr[index];\n}\n","import { encode, decode } from '@jridgewell/sourcemap-codec';\n\nimport resolve from './resolve';\nimport stripFilename from './strip-filename';\nimport maybeSort from './sort';\nimport buildBySources from './by-source';\nimport {\n memoizedState,\n memoizedBinarySearch,\n upperBound,\n lowerBound,\n found as bsFound,\n} from './binary-search';\nimport {\n COLUMN,\n SOURCES_INDEX,\n SOURCE_LINE,\n SOURCE_COLUMN,\n NAMES_INDEX,\n REV_GENERATED_LINE,\n REV_GENERATED_COLUMN,\n} from './sourcemap-segment';\n\nimport type { SourceMapSegment, ReverseSegment } from './sourcemap-segment';\nimport type {\n SourceMapV3,\n DecodedSourceMap,\n EncodedSourceMap,\n InvalidOriginalMapping,\n OriginalMapping,\n InvalidGeneratedMapping,\n GeneratedMapping,\n SourceMapInput,\n Needle,\n SourceNeedle,\n SourceMap,\n EachMapping,\n Bias,\n} from './types';\nimport type { Source } from './by-source';\nimport type { MemoState } from './binary-search';\n\nexport type { SourceMapSegment } from './sourcemap-segment';\nexport type {\n SourceMapInput,\n SectionedSourceMapInput,\n DecodedSourceMap,\n EncodedSourceMap,\n SectionedSourceMap,\n InvalidOriginalMapping,\n OriginalMapping as Mapping,\n OriginalMapping,\n InvalidGeneratedMapping,\n GeneratedMapping,\n EachMapping,\n} from './types';\n\nconst LINE_GTR_ZERO = '`line` must be greater than 0 (lines start at line 1)';\nconst COL_GTR_EQ_ZERO = '`column` must be greater than or equal to 0 (columns start at column 0)';\n\nexport const LEAST_UPPER_BOUND = -1;\nexport const GREATEST_LOWER_BOUND = 1;\n\n/**\n * Returns the encoded (VLQ string) form of the SourceMap's mappings field.\n */\nexport let encodedMappings: (map: TraceMap) => EncodedSourceMap['mappings'];\n\n/**\n * Returns the decoded (array of lines of segments) form of the SourceMap's mappings field.\n */\nexport let decodedMappings: (map: TraceMap) => Readonly<DecodedSourceMap['mappings']>;\n\n/**\n * A low-level API to find the segment associated with a generated line/column (think, from a\n * stack trace). Line and column here are 0-based, unlike `originalPositionFor`.\n */\nexport let traceSegment: (\n map: TraceMap,\n line: number,\n column: number,\n) => Readonly<SourceMapSegment> | null;\n\n/**\n * A higher-level API to find the source/line/column associated with a generated line/column\n * (think, from a stack trace). Line is 1-based, but column is 0-based, due to legacy behavior in\n * `source-map` library.\n */\nexport let originalPositionFor: (\n map: TraceMap,\n needle: Needle,\n) => OriginalMapping | InvalidOriginalMapping;\n\n/**\n * Finds the generated line/column position of the provided source/line/column source position.\n */\nexport let generatedPositionFor: (\n map: TraceMap,\n needle: SourceNeedle,\n) => GeneratedMapping | InvalidGeneratedMapping;\n\n/**\n * Finds all generated line/column positions of the provided source/line/column source position.\n */\nexport let allGeneratedPositionsFor: (map: TraceMap, needle: SourceNeedle) => GeneratedMapping[];\n\n/**\n * Iterates each mapping in generated position order.\n */\nexport let eachMapping: (map: TraceMap, cb: (mapping: EachMapping) => void) => void;\n\n/**\n * Retrieves the source content for a particular source, if its found. Returns null if not.\n */\nexport let sourceContentFor: (map: TraceMap, source: string) => string | null;\n\n/**\n * A helper that skips sorting of the input map's mappings array, which can be expensive for larger\n * maps.\n */\nexport let presortedDecodedMap: (map: DecodedSourceMap, mapUrl?: string) => TraceMap;\n\n/**\n * Returns a sourcemap object (with decoded mappings) suitable for passing to a library that expects\n * a sourcemap, or to JSON.stringify.\n */\nexport let decodedMap: (\n map: TraceMap,\n) => Omit<DecodedSourceMap, 'mappings'> & { mappings: readonly SourceMapSegment[][] };\n\n/**\n * Returns a sourcemap object (with encoded mappings) suitable for passing to a library that expects\n * a sourcemap, or to JSON.stringify.\n */\nexport let encodedMap: (map: TraceMap) => EncodedSourceMap;\n\nexport { AnyMap } from './any-map';\n\nexport class TraceMap implements SourceMap {\n declare version: SourceMapV3['version'];\n declare file: SourceMapV3['file'];\n declare names: SourceMapV3['names'];\n declare sourceRoot: SourceMapV3['sourceRoot'];\n declare sources: SourceMapV3['sources'];\n declare sourcesContent: SourceMapV3['sourcesContent'];\n\n declare resolvedSources: string[];\n private declare _encoded: string | undefined;\n\n private declare _decoded: SourceMapSegment[][] | undefined;\n private declare _decodedMemo: MemoState;\n\n private declare _bySources: Source[] | undefined;\n private declare _bySourceMemos: MemoState[] | undefined;\n\n constructor(map: SourceMapInput, mapUrl?: string | null) {\n const isString = typeof map === 'string';\n\n if (!isString && (map as unknown as { _decodedMemo: any })._decodedMemo) return map as TraceMap;\n\n const parsed = (isString ? JSON.parse(map) : map) as DecodedSourceMap | EncodedSourceMap;\n\n const { version, file, names, sourceRoot, sources, sourcesContent } = parsed;\n this.version = version;\n this.file = file;\n this.names = names;\n this.sourceRoot = sourceRoot;\n this.sources = sources;\n this.sourcesContent = sourcesContent;\n\n const from = resolve(sourceRoot || '', stripFilename(mapUrl));\n this.resolvedSources = sources.map((s) => resolve(s || '', from));\n\n const { mappings } = parsed;\n if (typeof mappings === 'string') {\n this._encoded = mappings;\n this._decoded = undefined;\n } else {\n this._encoded = undefined;\n this._decoded = maybeSort(mappings, isString);\n }\n\n this._decodedMemo = memoizedState();\n this._bySources = undefined;\n this._bySourceMemos = undefined;\n }\n\n static {\n encodedMappings = (map) => {\n return (map._encoded ??= encode(map._decoded!));\n };\n\n decodedMappings = (map) => {\n return (map._decoded ||= decode(map._encoded!));\n };\n\n traceSegment = (map, line, column) => {\n const decoded = decodedMappings(map);\n\n // It's common for parent source maps to have pointers to lines that have no\n // mapping (like a \"//# sourceMappingURL=\") at the end of the child file.\n if (line >= decoded.length) return null;\n\n const segments = decoded[line];\n const index = traceSegmentInternal(\n segments,\n map._decodedMemo,\n line,\n column,\n GREATEST_LOWER_BOUND,\n );\n\n return index === -1 ? null : segments[index];\n };\n\n originalPositionFor = (map, { line, column, bias }) => {\n line--;\n if (line < 0) throw new Error(LINE_GTR_ZERO);\n if (column < 0) throw new Error(COL_GTR_EQ_ZERO);\n\n const decoded = decodedMappings(map);\n\n // It's common for parent source maps to have pointers to lines that have no\n // mapping (like a \"//# sourceMappingURL=\") at the end of the child file.\n if (line >= decoded.length) return OMapping(null, null, null, null);\n\n const segments = decoded[line];\n const index = traceSegmentInternal(\n segments,\n map._decodedMemo,\n line,\n column,\n bias || GREATEST_LOWER_BOUND,\n );\n\n if (index === -1) return OMapping(null, null, null, null);\n\n const segment = segments[index];\n if (segment.length === 1) return OMapping(null, null, null, null);\n\n const { names, resolvedSources } = map;\n return OMapping(\n resolvedSources[segment[SOURCES_INDEX]],\n segment[SOURCE_LINE] + 1,\n segment[SOURCE_COLUMN],\n segment.length === 5 ? names[segment[NAMES_INDEX]] : null,\n );\n };\n\n allGeneratedPositionsFor = (map, { source, line, column, bias }) => {\n // SourceMapConsumer uses LEAST_UPPER_BOUND for some reason, so we follow suit.\n return generatedPosition(map, source, line, column, bias || LEAST_UPPER_BOUND, true);\n };\n\n generatedPositionFor = (map, { source, line, column, bias }) => {\n return generatedPosition(map, source, line, column, bias || GREATEST_LOWER_BOUND, false);\n };\n\n eachMapping = (map, cb) => {\n const decoded = decodedMappings(map);\n const { names, resolvedSources } = map;\n\n for (let i = 0; i < decoded.length; i++) {\n const line = decoded[i];\n for (let j = 0; j < line.length; j++) {\n const seg = line[j];\n\n const generatedLine = i + 1;\n const generatedColumn = seg[0];\n let source = null;\n let originalLine = null;\n let originalColumn = null;\n let name = null;\n if (seg.length !== 1) {\n source = resolvedSources[seg[1]];\n originalLine = seg[2] + 1;\n originalColumn = seg[3];\n }\n if (seg.length === 5) name = names[seg[4]];\n\n cb({\n generatedLine,\n generatedColumn,\n source,\n originalLine,\n originalColumn,\n name,\n } as EachMapping);\n }\n }\n };\n\n sourceContentFor = (map, source) => {\n const { sources, resolvedSources, sourcesContent } = map;\n if (sourcesContent == null) return null;\n\n let index = sources.indexOf(source);\n if (index === -1) index = resolvedSources.indexOf(source);\n\n return index === -1 ? null : sourcesContent[index];\n };\n\n presortedDecodedMap = (map, mapUrl) => {\n const tracer = new TraceMap(clone(map, []), mapUrl);\n tracer._decoded = map.mappings;\n return tracer;\n };\n\n decodedMap = (map) => {\n return clone(map, decodedMappings(map));\n };\n\n encodedMap = (map) => {\n return clone(map, encodedMappings(map));\n };\n\n function generatedPosition(\n map: TraceMap,\n source: string,\n line: number,\n column: number,\n bias: Bias,\n all: false,\n ): GeneratedMapping | InvalidGeneratedMapping;\n function generatedPosition(\n map: TraceMap,\n source: string,\n line: number,\n column: number,\n bias: Bias,\n all: true,\n ): GeneratedMapping[];\n function generatedPosition(\n map: TraceMap,\n source: string,\n line: number,\n column: number,\n bias: Bias,\n all: boolean,\n ): GeneratedMapping | InvalidGeneratedMapping | GeneratedMapping[] {\n line--;\n if (line < 0) throw new Error(LINE_GTR_ZERO);\n if (column < 0) throw new Error(COL_GTR_EQ_ZERO);\n\n const { sources, resolvedSources } = map;\n let sourceIndex = sources.indexOf(source);\n if (sourceIndex === -1) sourceIndex = resolvedSources.indexOf(source);\n if (sourceIndex === -1) return all ? [] : GMapping(null, null);\n\n const generated = (map._bySources ||= buildBySources(\n decodedMappings(map),\n (map._bySourceMemos = sources.map(memoizedState)),\n ));\n\n const segments = generated[sourceIndex][line];\n if (segments == null) return all ? [] : GMapping(null, null);\n\n const memo = map._bySourceMemos![sourceIndex];\n\n if (all) return sliceGeneratedPositions(segments, memo, line, column, bias);\n\n const index = traceSegmentInternal(segments, memo, line, column, bias);\n if (index === -1) return GMapping(null, null);\n\n const segment = segments[index];\n return GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN]);\n }\n }\n}\n\nfunction clone<T extends string | readonly SourceMapSegment[][]>(\n map: TraceMap | DecodedSourceMap | EncodedSourceMap,\n mappings: T,\n): T extends string ? EncodedSourceMap : DecodedSourceMap {\n return {\n version: map.version,\n file: map.file,\n names: map.names,\n sourceRoot: map.sourceRoot,\n sources: map.sources,\n sourcesContent: map.sourcesContent,\n mappings,\n } as any;\n}\n\nfunction OMapping(source: null, line: null, column: null, name: null): InvalidOriginalMapping;\nfunction OMapping(\n source: string,\n line: number,\n column: number,\n name: string | null,\n): OriginalMapping;\nfunction OMapping(\n source: string | null,\n line: number | null,\n column: number | null,\n name: string | null,\n): OriginalMapping | InvalidOriginalMapping {\n return { source, line, column, name } as any;\n}\n\nfunction GMapping(line: null, column: null): InvalidGeneratedMapping;\nfunction GMapping(line: number, column: number): GeneratedMapping;\nfunction GMapping(\n line: number | null,\n column: number | null,\n): GeneratedMapping | InvalidGeneratedMapping {\n return { line, column } as any;\n}\n\nfunction traceSegmentInternal(\n segments: SourceMapSegment[],\n memo: MemoState,\n line: number,\n column: number,\n bias: Bias,\n): number;\nfunction traceSegmentInternal(\n segments: ReverseSegment[],\n memo: MemoState,\n line: number,\n column: number,\n bias: Bias,\n): number;\nfunction traceSegmentInternal(\n segments: SourceMapSegment[] | ReverseSegment[],\n memo: MemoState,\n line: number,\n column: number,\n bias: Bias,\n): number {\n let index = memoizedBinarySearch(segments, column, memo, line);\n if (bsFound) {\n index = (bias === LEAST_UPPER_BOUND ? upperBound : lowerBound)(segments, column, index);\n } else if (bias === LEAST_UPPER_BOUND) index++;\n\n if (index === -1 || index === segments.length) return -1;\n return index;\n}\n\nfunction sliceGeneratedPositions(\n segments: ReverseSegment[],\n memo: MemoState,\n line: number,\n column: number,\n bias: Bias,\n): GeneratedMapping[] {\n let min = traceSegmentInternal(segments, memo, line, column, GREATEST_LOWER_BOUND);\n\n // We ignored the bias when tracing the segment so that we're guarnateed to find the first (in\n // insertion order) segment that matched. Even if we did respect the bias when tracing, we would\n // still need to call `lowerBound()` to find the first segment, which is slower than just looking\n // for the GREATEST_LOWER_BOUND to begin with. The only difference that matters for us is when the\n // binary search didn't match, in which case GREATEST_LOWER_BOUND just needs to increment to\n // match LEAST_UPPER_BOUND.\n if (!bsFound && bias === LEAST_UPPER_BOUND) min++;\n\n if (min === -1 || min === segments.length) return [];\n\n // We may have found the segment that started at an earlier column. If this is the case, then we\n // need to slice all generated segments that match _that_ column, because all such segments span\n // to our desired column.\n const matchedColumn = bsFound ? column : segments[min][COLUMN];\n\n // The binary search is not guaranteed to find the lower bound when a match wasn't found.\n if (!bsFound) min = lowerBound(segments, matchedColumn, min);\n const max = upperBound(segments, matchedColumn, min);\n\n const result = [];\n for (; min <= max; min++) {\n const segment = segments[min];\n result.push(GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN]));\n }\n return result;\n}\n"],"names":["resolveUri","presortedDecodedMap","decodedMappings","encodedMappings","traceSegment","originalPositionFor","generatedPositionFor","allGeneratedPositionsFor","eachMapping","sourceContentFor","decodedMap","encodedMap","encode","decode","bsFound"],"mappings":"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"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TraceMap } from './trace-mapping';
|
|
2
|
+
import type { SectionedSourceMapInput } from './types';
|
|
3
|
+
declare type AnyMap = {
|
|
4
|
+
new (map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;
|
|
5
|
+
(map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;
|
|
6
|
+
};
|
|
7
|
+
export declare const AnyMap: AnyMap;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { SourceMapSegment, ReverseSegment } from './sourcemap-segment';
|
|
2
|
+
export declare type MemoState = {
|
|
3
|
+
lastKey: number;
|
|
4
|
+
lastNeedle: number;
|
|
5
|
+
lastIndex: number;
|
|
6
|
+
};
|
|
7
|
+
export declare let found: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* A binary search implementation that returns the index if a match is found.
|
|
10
|
+
* If no match is found, then the left-index (the index associated with the item that comes just
|
|
11
|
+
* before the desired index) is returned. To maintain proper sort order, a splice would happen at
|
|
12
|
+
* the next index:
|
|
13
|
+
*
|
|
14
|
+
* ```js
|
|
15
|
+
* const array = [1, 3];
|
|
16
|
+
* const needle = 2;
|
|
17
|
+
* const index = binarySearch(array, needle, (item, needle) => item - needle);
|
|
18
|
+
*
|
|
19
|
+
* assert.equal(index, 0);
|
|
20
|
+
* array.splice(index + 1, 0, needle);
|
|
21
|
+
* assert.deepEqual(array, [1, 2, 3]);
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
export declare function binarySearch(haystack: SourceMapSegment[] | ReverseSegment[], needle: number, low: number, high: number): number;
|
|
25
|
+
export declare function upperBound(haystack: SourceMapSegment[] | ReverseSegment[], needle: number, index: number): number;
|
|
26
|
+
export declare function lowerBound(haystack: SourceMapSegment[] | ReverseSegment[], needle: number, index: number): number;
|
|
27
|
+
export declare function memoizedState(): MemoState;
|
|
28
|
+
/**
|
|
29
|
+
* This overly complicated beast is just to record the last tested line/column and the resulting
|
|
30
|
+
* index, allowing us to skip a few tests if mappings are monotonically increasing.
|
|
31
|
+
*/
|
|
32
|
+
export declare function memoizedBinarySearch(haystack: SourceMapSegment[] | ReverseSegment[], needle: number, state: MemoState, key: number): number;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ReverseSegment, SourceMapSegment } from './sourcemap-segment';
|
|
2
|
+
import type { MemoState } from './binary-search';
|
|
3
|
+
export declare type Source = {
|
|
4
|
+
__proto__: null;
|
|
5
|
+
[line: number]: Exclude<ReverseSegment, [number]>[];
|
|
6
|
+
};
|
|
7
|
+
export default function buildBySources(decoded: readonly SourceMapSegment[][], memos: MemoState[]): Source[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function resolve(input: string, base: string | undefined): string;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare type GeneratedColumn = number;
|
|
2
|
+
declare type SourcesIndex = number;
|
|
3
|
+
declare type SourceLine = number;
|
|
4
|
+
declare type SourceColumn = number;
|
|
5
|
+
declare type NamesIndex = number;
|
|
6
|
+
declare type GeneratedLine = number;
|
|
7
|
+
export declare type SourceMapSegment = [GeneratedColumn] | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn] | [GeneratedColumn, SourcesIndex, SourceLine, SourceColumn, NamesIndex];
|
|
8
|
+
export declare type ReverseSegment = [SourceColumn, GeneratedLine, GeneratedColumn];
|
|
9
|
+
export declare const COLUMN = 0;
|
|
10
|
+
export declare const SOURCES_INDEX = 1;
|
|
11
|
+
export declare const SOURCE_LINE = 2;
|
|
12
|
+
export declare const SOURCE_COLUMN = 3;
|
|
13
|
+
export declare const NAMES_INDEX = 4;
|
|
14
|
+
export declare const REV_GENERATED_LINE = 1;
|
|
15
|
+
export declare const REV_GENERATED_COLUMN = 2;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import type { SourceMapSegment } from './sourcemap-segment';
|
|
2
|
+
import type { SourceMapV3, DecodedSourceMap, EncodedSourceMap, InvalidOriginalMapping, OriginalMapping, InvalidGeneratedMapping, GeneratedMapping, SourceMapInput, Needle, SourceNeedle, SourceMap, EachMapping } from './types';
|
|
3
|
+
export type { SourceMapSegment } from './sourcemap-segment';
|
|
4
|
+
export type { SourceMapInput, SectionedSourceMapInput, DecodedSourceMap, EncodedSourceMap, SectionedSourceMap, InvalidOriginalMapping, OriginalMapping as Mapping, OriginalMapping, InvalidGeneratedMapping, GeneratedMapping, EachMapping, } from './types';
|
|
5
|
+
export declare const LEAST_UPPER_BOUND = -1;
|
|
6
|
+
export declare const GREATEST_LOWER_BOUND = 1;
|
|
7
|
+
/**
|
|
8
|
+
* Returns the encoded (VLQ string) form of the SourceMap's mappings field.
|
|
9
|
+
*/
|
|
10
|
+
export declare let encodedMappings: (map: TraceMap) => EncodedSourceMap['mappings'];
|
|
11
|
+
/**
|
|
12
|
+
* Returns the decoded (array of lines of segments) form of the SourceMap's mappings field.
|
|
13
|
+
*/
|
|
14
|
+
export declare let decodedMappings: (map: TraceMap) => Readonly<DecodedSourceMap['mappings']>;
|
|
15
|
+
/**
|
|
16
|
+
* A low-level API to find the segment associated with a generated line/column (think, from a
|
|
17
|
+
* stack trace). Line and column here are 0-based, unlike `originalPositionFor`.
|
|
18
|
+
*/
|
|
19
|
+
export declare let traceSegment: (map: TraceMap, line: number, column: number) => Readonly<SourceMapSegment> | null;
|
|
20
|
+
/**
|
|
21
|
+
* A higher-level API to find the source/line/column associated with a generated line/column
|
|
22
|
+
* (think, from a stack trace). Line is 1-based, but column is 0-based, due to legacy behavior in
|
|
23
|
+
* `source-map` library.
|
|
24
|
+
*/
|
|
25
|
+
export declare let originalPositionFor: (map: TraceMap, needle: Needle) => OriginalMapping | InvalidOriginalMapping;
|
|
26
|
+
/**
|
|
27
|
+
* Finds the generated line/column position of the provided source/line/column source position.
|
|
28
|
+
*/
|
|
29
|
+
export declare let generatedPositionFor: (map: TraceMap, needle: SourceNeedle) => GeneratedMapping | InvalidGeneratedMapping;
|
|
30
|
+
/**
|
|
31
|
+
* Finds all generated line/column positions of the provided source/line/column source position.
|
|
32
|
+
*/
|
|
33
|
+
export declare let allGeneratedPositionsFor: (map: TraceMap, needle: SourceNeedle) => GeneratedMapping[];
|
|
34
|
+
/**
|
|
35
|
+
* Iterates each mapping in generated position order.
|
|
36
|
+
*/
|
|
37
|
+
export declare let eachMapping: (map: TraceMap, cb: (mapping: EachMapping) => void) => void;
|
|
38
|
+
/**
|
|
39
|
+
* Retrieves the source content for a particular source, if its found. Returns null if not.
|
|
40
|
+
*/
|
|
41
|
+
export declare let sourceContentFor: (map: TraceMap, source: string) => string | null;
|
|
42
|
+
/**
|
|
43
|
+
* A helper that skips sorting of the input map's mappings array, which can be expensive for larger
|
|
44
|
+
* maps.
|
|
45
|
+
*/
|
|
46
|
+
export declare let presortedDecodedMap: (map: DecodedSourceMap, mapUrl?: string) => TraceMap;
|
|
47
|
+
/**
|
|
48
|
+
* Returns a sourcemap object (with decoded mappings) suitable for passing to a library that expects
|
|
49
|
+
* a sourcemap, or to JSON.stringify.
|
|
50
|
+
*/
|
|
51
|
+
export declare let decodedMap: (map: TraceMap) => Omit<DecodedSourceMap, 'mappings'> & {
|
|
52
|
+
mappings: readonly SourceMapSegment[][];
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Returns a sourcemap object (with encoded mappings) suitable for passing to a library that expects
|
|
56
|
+
* a sourcemap, or to JSON.stringify.
|
|
57
|
+
*/
|
|
58
|
+
export declare let encodedMap: (map: TraceMap) => EncodedSourceMap;
|
|
59
|
+
export { AnyMap } from './any-map';
|
|
60
|
+
export declare class TraceMap implements SourceMap {
|
|
61
|
+
version: SourceMapV3['version'];
|
|
62
|
+
file: SourceMapV3['file'];
|
|
63
|
+
names: SourceMapV3['names'];
|
|
64
|
+
sourceRoot: SourceMapV3['sourceRoot'];
|
|
65
|
+
sources: SourceMapV3['sources'];
|
|
66
|
+
sourcesContent: SourceMapV3['sourcesContent'];
|
|
67
|
+
resolvedSources: string[];
|
|
68
|
+
private _encoded;
|
|
69
|
+
private _decoded;
|
|
70
|
+
private _decodedMemo;
|
|
71
|
+
private _bySources;
|
|
72
|
+
private _bySourceMemos;
|
|
73
|
+
constructor(map: SourceMapInput, mapUrl?: string | null);
|
|
74
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import type { SourceMapSegment } from './sourcemap-segment';
|
|
2
|
+
import type { GREATEST_LOWER_BOUND, LEAST_UPPER_BOUND, TraceMap } from './trace-mapping';
|
|
3
|
+
export interface SourceMapV3 {
|
|
4
|
+
file?: string | null;
|
|
5
|
+
names: string[];
|
|
6
|
+
sourceRoot?: string;
|
|
7
|
+
sources: (string | null)[];
|
|
8
|
+
sourcesContent?: (string | null)[];
|
|
9
|
+
version: 3;
|
|
10
|
+
}
|
|
11
|
+
export interface EncodedSourceMap extends SourceMapV3 {
|
|
12
|
+
mappings: string;
|
|
13
|
+
}
|
|
14
|
+
export interface DecodedSourceMap extends SourceMapV3 {
|
|
15
|
+
mappings: SourceMapSegment[][];
|
|
16
|
+
}
|
|
17
|
+
export interface Section {
|
|
18
|
+
offset: {
|
|
19
|
+
line: number;
|
|
20
|
+
column: number;
|
|
21
|
+
};
|
|
22
|
+
map: EncodedSourceMap | DecodedSourceMap | SectionedSourceMap;
|
|
23
|
+
}
|
|
24
|
+
export interface SectionedSourceMap {
|
|
25
|
+
file?: string | null;
|
|
26
|
+
sections: Section[];
|
|
27
|
+
version: 3;
|
|
28
|
+
}
|
|
29
|
+
export declare type OriginalMapping = {
|
|
30
|
+
source: string | null;
|
|
31
|
+
line: number;
|
|
32
|
+
column: number;
|
|
33
|
+
name: string | null;
|
|
34
|
+
};
|
|
35
|
+
export declare type InvalidOriginalMapping = {
|
|
36
|
+
source: null;
|
|
37
|
+
line: null;
|
|
38
|
+
column: null;
|
|
39
|
+
name: null;
|
|
40
|
+
};
|
|
41
|
+
export declare type GeneratedMapping = {
|
|
42
|
+
line: number;
|
|
43
|
+
column: number;
|
|
44
|
+
};
|
|
45
|
+
export declare type InvalidGeneratedMapping = {
|
|
46
|
+
line: null;
|
|
47
|
+
column: null;
|
|
48
|
+
};
|
|
49
|
+
export declare type Bias = typeof GREATEST_LOWER_BOUND | typeof LEAST_UPPER_BOUND;
|
|
50
|
+
export declare type SourceMapInput = string | Ro<EncodedSourceMap> | Ro<DecodedSourceMap> | TraceMap;
|
|
51
|
+
export declare type SectionedSourceMapInput = SourceMapInput | Ro<SectionedSourceMap>;
|
|
52
|
+
export declare type Needle = {
|
|
53
|
+
line: number;
|
|
54
|
+
column: number;
|
|
55
|
+
bias?: Bias;
|
|
56
|
+
};
|
|
57
|
+
export declare type SourceNeedle = {
|
|
58
|
+
source: string;
|
|
59
|
+
line: number;
|
|
60
|
+
column: number;
|
|
61
|
+
bias?: Bias;
|
|
62
|
+
};
|
|
63
|
+
export declare type EachMapping = {
|
|
64
|
+
generatedLine: number;
|
|
65
|
+
generatedColumn: number;
|
|
66
|
+
source: null;
|
|
67
|
+
originalLine: null;
|
|
68
|
+
originalColumn: null;
|
|
69
|
+
name: null;
|
|
70
|
+
} | {
|
|
71
|
+
generatedLine: number;
|
|
72
|
+
generatedColumn: number;
|
|
73
|
+
source: string | null;
|
|
74
|
+
originalLine: number;
|
|
75
|
+
originalColumn: number;
|
|
76
|
+
name: string | null;
|
|
77
|
+
};
|
|
78
|
+
export declare abstract class SourceMap {
|
|
79
|
+
version: SourceMapV3['version'];
|
|
80
|
+
file: SourceMapV3['file'];
|
|
81
|
+
names: SourceMapV3['names'];
|
|
82
|
+
sourceRoot: SourceMapV3['sourceRoot'];
|
|
83
|
+
sources: SourceMapV3['sources'];
|
|
84
|
+
sourcesContent: SourceMapV3['sourcesContent'];
|
|
85
|
+
resolvedSources: SourceMapV3['sources'];
|
|
86
|
+
}
|
|
87
|
+
export declare type Ro<T> = T extends Array<infer V> ? V[] | Readonly<V[]> | RoArray<V> | Readonly<RoArray<V>> : T extends object ? T | Readonly<T> | RoObject<T> | Readonly<RoObject<T>> : T;
|
|
88
|
+
declare type RoArray<T> = Ro<T>[];
|
|
89
|
+
declare type RoObject<T> = {
|
|
90
|
+
[K in keyof T]: T[K] | Ro<T[K]>;
|
|
91
|
+
};
|
|
92
|
+
export {};
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jridgewell/trace-mapping",
|
|
3
|
+
"version": "0.3.19",
|
|
4
|
+
"description": "Trace the original position through a source map",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"source",
|
|
7
|
+
"map"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/trace-mapping.umd.js",
|
|
10
|
+
"module": "dist/trace-mapping.mjs",
|
|
11
|
+
"types": "dist/types/trace-mapping.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": [
|
|
17
|
+
{
|
|
18
|
+
"types": "./dist/types/trace-mapping.d.ts",
|
|
19
|
+
"browser": "./dist/trace-mapping.umd.js",
|
|
20
|
+
"require": "./dist/trace-mapping.umd.js",
|
|
21
|
+
"import": "./dist/trace-mapping.mjs"
|
|
22
|
+
},
|
|
23
|
+
"./dist/trace-mapping.umd.js"
|
|
24
|
+
],
|
|
25
|
+
"./package.json": "./package.json"
|
|
26
|
+
},
|
|
27
|
+
"author": "Justin Ridgewell <justin@ridgewell.name>",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/jridgewell/trace-mapping.git"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"scripts": {
|
|
34
|
+
"benchmark": "run-s build:rollup benchmark:*",
|
|
35
|
+
"benchmark:install": "cd benchmark && npm install",
|
|
36
|
+
"benchmark:only": "node --expose-gc benchmark/index.mjs",
|
|
37
|
+
"build": "run-s -n build:*",
|
|
38
|
+
"build:rollup": "rollup -c rollup.config.js",
|
|
39
|
+
"build:ts": "tsc --project tsconfig.build.json",
|
|
40
|
+
"lint": "run-s -n lint:*",
|
|
41
|
+
"lint:prettier": "npm run test:lint:prettier -- --write",
|
|
42
|
+
"lint:ts": "npm run test:lint:ts -- --fix",
|
|
43
|
+
"prebuild": "rm -rf dist",
|
|
44
|
+
"prepublishOnly": "npm run preversion",
|
|
45
|
+
"preversion": "run-s test build",
|
|
46
|
+
"test": "run-s -n test:lint test:only",
|
|
47
|
+
"test:debug": "ava debug",
|
|
48
|
+
"test:lint": "run-s -n test:lint:*",
|
|
49
|
+
"test:lint:prettier": "prettier --check '{src,test}/**/*.ts' '**/*.md'",
|
|
50
|
+
"test:lint:ts": "eslint '{src,test}/**/*.ts'",
|
|
51
|
+
"test:only": "c8 ava",
|
|
52
|
+
"test:watch": "ava --watch"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@rollup/plugin-typescript": "8.5.0",
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "5.39.0",
|
|
57
|
+
"@typescript-eslint/parser": "5.39.0",
|
|
58
|
+
"ava": "4.3.3",
|
|
59
|
+
"benchmark": "2.1.4",
|
|
60
|
+
"c8": "7.12.0",
|
|
61
|
+
"esbuild": "0.15.10",
|
|
62
|
+
"eslint": "8.25.0",
|
|
63
|
+
"eslint-config-prettier": "8.5.0",
|
|
64
|
+
"eslint-plugin-no-only-tests": "3.0.0",
|
|
65
|
+
"npm-run-all": "4.1.5",
|
|
66
|
+
"prettier": "2.7.1",
|
|
67
|
+
"rollup": "2.79.1",
|
|
68
|
+
"tsx": "3.10.1",
|
|
69
|
+
"typescript": "4.8.4"
|
|
70
|
+
},
|
|
71
|
+
"dependencies": {
|
|
72
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
73
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) Denis Malinochkin
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# @nodelib/fs.scandir
|
|
2
|
+
|
|
3
|
+
> List files and directories inside the specified directory.
|
|
4
|
+
|
|
5
|
+
## :bulb: Highlights
|
|
6
|
+
|
|
7
|
+
The package is aimed at obtaining information about entries in the directory.
|
|
8
|
+
|
|
9
|
+
* :moneybag: Returns useful information: `name`, `path`, `dirent` and `stats` (optional).
|
|
10
|
+
* :gear: On Node.js 10.10+ uses the mechanism without additional calls to determine the entry type. See [`old` and `modern` mode](#old-and-modern-mode).
|
|
11
|
+
* :link: Can safely work with broken symbolic links.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```console
|
|
16
|
+
npm install @nodelib/fs.scandir
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```ts
|
|
22
|
+
import * as fsScandir from '@nodelib/fs.scandir';
|
|
23
|
+
|
|
24
|
+
fsScandir.scandir('path', (error, stats) => { /* … */ });
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## API
|
|
28
|
+
|
|
29
|
+
### .scandir(path, [optionsOrSettings], callback)
|
|
30
|
+
|
|
31
|
+
Returns an array of plain objects ([`Entry`](#entry)) with information about entry for provided path with standard callback-style.
|
|
32
|
+
|
|
33
|
+
```ts
|
|
34
|
+
fsScandir.scandir('path', (error, entries) => { /* … */ });
|
|
35
|
+
fsScandir.scandir('path', {}, (error, entries) => { /* … */ });
|
|
36
|
+
fsScandir.scandir('path', new fsScandir.Settings(), (error, entries) => { /* … */ });
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### .scandirSync(path, [optionsOrSettings])
|
|
40
|
+
|
|
41
|
+
Returns an array of plain objects ([`Entry`](#entry)) with information about entry for provided path.
|
|
42
|
+
|
|
43
|
+
```ts
|
|
44
|
+
const entries = fsScandir.scandirSync('path');
|
|
45
|
+
const entries = fsScandir.scandirSync('path', {});
|
|
46
|
+
const entries = fsScandir.scandirSync(('path', new fsScandir.Settings());
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
#### path
|
|
50
|
+
|
|
51
|
+
* Required: `true`
|
|
52
|
+
* Type: `string | Buffer | URL`
|
|
53
|
+
|
|
54
|
+
A path to a file. If a URL is provided, it must use the `file:` protocol.
|
|
55
|
+
|
|
56
|
+
#### optionsOrSettings
|
|
57
|
+
|
|
58
|
+
* Required: `false`
|
|
59
|
+
* Type: `Options | Settings`
|
|
60
|
+
* Default: An instance of `Settings` class
|
|
61
|
+
|
|
62
|
+
An [`Options`](#options) object or an instance of [`Settings`](#settingsoptions) class.
|
|
63
|
+
|
|
64
|
+
> :book: When you pass a plain object, an instance of the `Settings` class will be created automatically. If you plan to call the method frequently, use a pre-created instance of the `Settings` class.
|
|
65
|
+
|
|
66
|
+
### Settings([options])
|
|
67
|
+
|
|
68
|
+
A class of full settings of the package.
|
|
69
|
+
|
|
70
|
+
```ts
|
|
71
|
+
const settings = new fsScandir.Settings({ followSymbolicLinks: false });
|
|
72
|
+
|
|
73
|
+
const entries = fsScandir.scandirSync('path', settings);
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Entry
|
|
77
|
+
|
|
78
|
+
* `name` — The name of the entry (`unknown.txt`).
|
|
79
|
+
* `path` — The path of the entry relative to call directory (`root/unknown.txt`).
|
|
80
|
+
* `dirent` — An instance of [`fs.Dirent`](./src/types/index.ts) class. On Node.js below 10.10 will be emulated by [`DirentFromStats`](./src/utils/fs.ts) class.
|
|
81
|
+
* `stats` (optional) — An instance of `fs.Stats` class.
|
|
82
|
+
|
|
83
|
+
For example, the `scandir` call for `tools` directory with one directory inside:
|
|
84
|
+
|
|
85
|
+
```ts
|
|
86
|
+
{
|
|
87
|
+
dirent: Dirent { name: 'typedoc', /* … */ },
|
|
88
|
+
name: 'typedoc',
|
|
89
|
+
path: 'tools/typedoc'
|
|
90
|
+
}
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## Options
|
|
94
|
+
|
|
95
|
+
### stats
|
|
96
|
+
|
|
97
|
+
* Type: `boolean`
|
|
98
|
+
* Default: `false`
|
|
99
|
+
|
|
100
|
+
Adds an instance of `fs.Stats` class to the [`Entry`](#entry).
|
|
101
|
+
|
|
102
|
+
> :book: Always use `fs.readdir` without the `withFileTypes` option. ??TODO??
|
|
103
|
+
|
|
104
|
+
### followSymbolicLinks
|
|
105
|
+
|
|
106
|
+
* Type: `boolean`
|
|
107
|
+
* Default: `false`
|
|
108
|
+
|
|
109
|
+
Follow symbolic links or not. Call `fs.stat` on symbolic link if `true`.
|
|
110
|
+
|
|
111
|
+
### `throwErrorOnBrokenSymbolicLink`
|
|
112
|
+
|
|
113
|
+
* Type: `boolean`
|
|
114
|
+
* Default: `true`
|
|
115
|
+
|
|
116
|
+
Throw an error when symbolic link is broken if `true` or safely use `lstat` call if `false`.
|
|
117
|
+
|
|
118
|
+
### `pathSegmentSeparator`
|
|
119
|
+
|
|
120
|
+
* Type: `string`
|
|
121
|
+
* Default: `path.sep`
|
|
122
|
+
|
|
123
|
+
By default, this package uses the correct path separator for your OS (`\` on Windows, `/` on Unix-like systems). But you can set this option to any separator character(s) that you want to use instead.
|
|
124
|
+
|
|
125
|
+
### `fs`
|
|
126
|
+
|
|
127
|
+
* Type: [`FileSystemAdapter`](./src/adapters/fs.ts)
|
|
128
|
+
* Default: A default FS methods
|
|
129
|
+
|
|
130
|
+
By default, the built-in Node.js module (`fs`) is used to work with the file system. You can replace any method with your own.
|
|
131
|
+
|
|
132
|
+
```ts
|
|
133
|
+
interface FileSystemAdapter {
|
|
134
|
+
lstat?: typeof fs.lstat;
|
|
135
|
+
stat?: typeof fs.stat;
|
|
136
|
+
lstatSync?: typeof fs.lstatSync;
|
|
137
|
+
statSync?: typeof fs.statSync;
|
|
138
|
+
readdir?: typeof fs.readdir;
|
|
139
|
+
readdirSync?: typeof fs.readdirSync;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
const settings = new fsScandir.Settings({
|
|
143
|
+
fs: { lstat: fakeLstat }
|
|
144
|
+
});
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
## `old` and `modern` mode
|
|
148
|
+
|
|
149
|
+
This package has two modes that are used depending on the environment and parameters of use.
|
|
150
|
+
|
|
151
|
+
### old
|
|
152
|
+
|
|
153
|
+
* Node.js below `10.10` or when the `stats` option is enabled
|
|
154
|
+
|
|
155
|
+
When working in the old mode, the directory is read first (`fs.readdir`), then the type of entries is determined (`fs.lstat` and/or `fs.stat` for symbolic links).
|
|
156
|
+
|
|
157
|
+
### modern
|
|
158
|
+
|
|
159
|
+
* Node.js 10.10+ and the `stats` option is disabled
|
|
160
|
+
|
|
161
|
+
In the modern mode, reading the directory (`fs.readdir` with the `withFileTypes` option) is combined with obtaining information about its entries. An additional call for symbolic links (`fs.stat`) is still present.
|
|
162
|
+
|
|
163
|
+
This mode makes fewer calls to the file system. It's faster.
|
|
164
|
+
|
|
165
|
+
## Changelog
|
|
166
|
+
|
|
167
|
+
See the [Releases section of our GitHub project](https://github.com/nodelib/nodelib/releases) for changelog for each release version.
|
|
168
|
+
|
|
169
|
+
## License
|
|
170
|
+
|
|
171
|
+
This software is released under the terms of the MIT license.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type * as fsStat from '@nodelib/fs.stat';
|
|
2
|
+
import type { Dirent, ErrnoException } from '../types';
|
|
3
|
+
export interface ReaddirAsynchronousMethod {
|
|
4
|
+
(filepath: string, options: {
|
|
5
|
+
withFileTypes: true;
|
|
6
|
+
}, callback: (error: ErrnoException | null, files: Dirent[]) => void): void;
|
|
7
|
+
(filepath: string, callback: (error: ErrnoException | null, files: string[]) => void): void;
|
|
8
|
+
}
|
|
9
|
+
export interface ReaddirSynchronousMethod {
|
|
10
|
+
(filepath: string, options: {
|
|
11
|
+
withFileTypes: true;
|
|
12
|
+
}): Dirent[];
|
|
13
|
+
(filepath: string): string[];
|
|
14
|
+
}
|
|
15
|
+
export declare type FileSystemAdapter = fsStat.FileSystemAdapter & {
|
|
16
|
+
readdir: ReaddirAsynchronousMethod;
|
|
17
|
+
readdirSync: ReaddirSynchronousMethod;
|
|
18
|
+
};
|
|
19
|
+
export declare const FILE_SYSTEM_ADAPTER: FileSystemAdapter;
|
|
20
|
+
export declare function createFileSystemAdapter(fsMethods?: Partial<FileSystemAdapter>): FileSystemAdapter;
|