@templmf/temp-solf-lmf 0.0.128 → 0.0.129
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/esm.sh/AGENTS.md +42 -0
- package/esm.sh/CHANGELOG-CLI.md +53 -0
- package/esm.sh/CHANGELOG-SERVER.md +1138 -0
- package/esm.sh/CONTRIBUTING.md +62 -0
- package/esm.sh/Dockerfile +34 -0
- package/esm.sh/HOSTING.md +164 -0
- package/esm.sh/LICENSE +21 -0
- package/esm.sh/Makefile +22 -0
- package/esm.sh/README.md +420 -0
- package/esm.sh/cli/README.md +47 -0
- package/esm.sh/cli/cli.go +46 -0
- package/esm.sh/cli/command_add.go +531 -0
- package/esm.sh/cli/command_tidy.go +152 -0
- package/esm.sh/cli/npm/README.md +44 -0
- package/esm.sh/cli/npm/bin/esm.sh +73 -0
- package/esm.sh/cli/npm/install.mjs +82 -0
- package/esm.sh/cli/npm/package.json +6 -0
- package/esm.sh/cli/utils.go +81 -0
- package/esm.sh/cli/version.go +4 -0
- package/esm.sh/config.example.jsonc +129 -0
- package/esm.sh/config.json +33 -0
- package/esm.sh/go.mod +23 -0
- package/esm.sh/go.sum +41 -0
- package/esm.sh/internal/app_dir/app_dir.go +21 -0
- package/esm.sh/internal/deno/deno.go +177 -0
- package/esm.sh/internal/fetch/fetch.go +60 -0
- package/esm.sh/internal/importmap/importmap.go +627 -0
- package/esm.sh/internal/importmap/importmap_test.go +150 -0
- package/esm.sh/internal/importmap/meta.go +294 -0
- package/esm.sh/internal/importmap/scope.go +28 -0
- package/esm.sh/internal/jsonc/jsonc.go +81 -0
- package/esm.sh/internal/mime/mime.go +80 -0
- package/esm.sh/internal/npm/npm.go +343 -0
- package/esm.sh/internal/npm/npm_test.go +131 -0
- package/esm.sh/internal/npm/package_json.go +427 -0
- package/esm.sh/internal/npm_replacements/build.go +94 -0
- package/esm.sh/internal/npm_replacements/src/README.md +5 -0
- package/esm.sh/internal/npm_replacements/src/abort-controller/browser.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/abort-controller/index.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/abort-controller/polyfill.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array-buffer-byte-length.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array-every.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array-includes.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array-map.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.from.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.of.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.at.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.concat.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.copywithin.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.entries.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.every.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.fill.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.filter.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.find.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.findindex.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.findlast.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.findlastindex.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.flat.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.flatmap.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.foreach.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.includes.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.indexof.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.join.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.keys.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.lastindexof.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.map.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.push.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.reduce.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.reduceright.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.slice.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.some.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.splice.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.toreversed.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.tosorted.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.tospliced.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.unshift.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.values.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/array.prototype.with.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/arraybuffer.prototype.slice.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/call-bind.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/clone-regexp.mjs +26 -0
- package/esm.sh/internal/npm_replacements/src/concat-map.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/cross-fetch/index.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/cross-fetch/polyfill.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/data-view-buffer.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/data-view-byte-length.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/data-view-byte-offset.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/deep-extend.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/defaults.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/define-accessor-property.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/define-data-property.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/define-properties.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/define-property.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-aggregate-error.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/es-define-property.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-errors/eval.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-errors/index.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-errors/range.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-errors/ref.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-errors/syntax.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-errors/type.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-errors/uri.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-get-iterator.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-set-tostringtag.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/es-shim-unscopables.mjs +5 -0
- package/esm.sh/internal/npm_replacements/src/es6-object-assign.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/esm-env.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/esm-env_browser.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/esm-env_node.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/esm-env_node_dev.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/extend-shallow.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/filter-array.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/for-each.mjs +9 -0
- package/esm.sh/internal/npm_replacements/src/fsevents.mjs +14 -0
- package/esm.sh/internal/npm_replacements/src/function-bind.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/function.prototype.name.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/functions-have-names.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/get-symbol-description.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/global/console.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/global/document.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/global/index.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/global/process.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/global/window.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/globalthis.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/gopd.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/has-own-prop.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/has-own.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/has-property-descriptors.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/has-proto.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/has-symbols.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/has-tostringtag.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/has.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/hasown.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/indent-string.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/index-of.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/inherits.mjs +14 -0
- package/esm.sh/internal/npm_replacements/src/is-array-buffer.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-boolean-object.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-date-object.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-even.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-nan.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-negative-zero.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-npm.mjs +3 -0
- package/esm.sh/internal/npm_replacements/src/is-number-object.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-number.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/is-odd.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-plain-object.mjs +4 -0
- package/esm.sh/internal/npm_replacements/src/is-primitive.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-regexp.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-shared-array-buffer.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-string.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/is-whitespace.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/iterate-iterator.mjs +11 -0
- package/esm.sh/internal/npm_replacements/src/iterate-value.mjs +10 -0
- package/esm.sh/internal/npm_replacements/src/left-pad.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/node-fetch.mjs +18 -0
- package/esm.sh/internal/npm_replacements/src/node-fetch_deno.mjs +30 -0
- package/esm.sh/internal/npm_replacements/src/node.extend.mjs +5 -0
- package/esm.sh/internal/npm_replacements/src/object-assign.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object-is.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object-keys.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object.assign.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object.entries.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object.fromentries.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object.getownpropertydescriptors.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object.getprototypeof.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object.hasown.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object.keys.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/object.values.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/pad-left.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/pad-right.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/promise.allsettled.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/promise.any.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/promise.prototype.finally.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/reflect.getprototypeof.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/reflect.ownkeys.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/regexp.prototype.flags.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/slash.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.at.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.codepointat.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.endswith.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.includes.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.iswellformed.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.lastindexof.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.matchall.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.padend.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.padstart.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.repeat.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.replaceall.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.split.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.startswith.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.substr.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.towellformed.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.trim.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.trimend.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.trimleft.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.trimright.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.prototype.trimstart.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/string.raw.mjs +1 -0
- package/esm.sh/internal/npm_replacements/src/symbol.prototype.description.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/typed-array-buffer.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/typed-array-byte-length.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/typed-array-byte-offset.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/typed-array-length.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/typedarray.prototype.slice.mjs +2 -0
- package/esm.sh/internal/npm_replacements/src/xtend.mjs +1 -0
- package/esm.sh/internal/storage/storage.go +46 -0
- package/esm.sh/internal/storage/storage_fs.go +190 -0
- package/esm.sh/internal/storage/storage_fs_test.go +163 -0
- package/esm.sh/internal/storage/storage_s3.go +463 -0
- package/esm.sh/internal/storage/storage_s3_test.go +142 -0
- package/esm.sh/internal/storage/storage_s3_utils.go +55 -0
- package/esm.sh/main +0 -0
- package/esm.sh/main.go +9 -0
- package/esm.sh/scripts/deploy-ci.sh +100 -0
- package/esm.sh/scripts/deploy-vm.sh +85 -0
- package/esm.sh/scripts/deploy.sh +141 -0
- package/esm.sh/server/build.go +1661 -0
- package/esm.sh/server/build_analyzer.go +210 -0
- package/esm.sh/server/build_args.go +294 -0
- package/esm.sh/server/build_args_test.go +52 -0
- package/esm.sh/server/build_meta.go +168 -0
- package/esm.sh/server/build_meta_test.go +35 -0
- package/esm.sh/server/build_queue.go +187 -0
- package/esm.sh/server/build_resolver.go +1447 -0
- package/esm.sh/server/build_rewriter.go +67 -0
- package/esm.sh/server/build_target.go +46 -0
- package/esm.sh/server/cache.go +136 -0
- package/esm.sh/server/cache_test.go +65 -0
- package/esm.sh/server/cjs_module_lexer.go +299 -0
- package/esm.sh/server/config.go +335 -0
- package/esm.sh/server/config_test.go +278 -0
- package/esm.sh/server/consts.go +146 -0
- package/esm.sh/server/db.go +13 -0
- package/esm.sh/server/db_bolt.go +50 -0
- package/esm.sh/server/debug.go +53 -0
- package/esm.sh/server/disk.go +67 -0
- package/esm.sh/server/dts_lexer.go +272 -0
- package/esm.sh/server/dts_lexer_test.go +96 -0
- package/esm.sh/server/dts_transform.go +281 -0
- package/esm.sh/server/embed/favicon.ico +0 -0
- package/esm.sh/server/embed/images/banner.svg +8 -0
- package/esm.sh/server/embed/images/cloudflare.svg +1 -0
- package/esm.sh/server/embed/images/fig-x-typescript-types.png +0 -0
- package/esm.sh/server/embed/index.html +392 -0
- package/esm.sh/server/embed/install.sh +109 -0
- package/esm.sh/server/embed/node-runtime.tgz +0 -0
- package/esm.sh/server/embed/tsx.ts +110 -0
- package/esm.sh/server/esmd/main.go +9 -0
- package/esm.sh/server/git.go +92 -0
- package/esm.sh/server/git_test.go +39 -0
- package/esm.sh/server/legacy_router.go +266 -0
- package/esm.sh/server/loader.go +97 -0
- package/esm.sh/server/loader_implements.go +121 -0
- package/esm.sh/server/npmrc.go +767 -0
- package/esm.sh/server/npmrc_test.go +101 -0
- package/esm.sh/server/path.go +400 -0
- package/esm.sh/server/path_test.go +46 -0
- package/esm.sh/server/release.go +25 -0
- package/esm.sh/server/router.go +1623 -0
- package/esm.sh/server/router_test.go +35 -0
- package/esm.sh/server/server.go +202 -0
- package/esm.sh/server/transform.go +231 -0
- package/esm.sh/server/unenv.go +221 -0
- package/esm.sh/server/utils.go +191 -0
- package/esm.sh/test/.template/deno.json +5 -0
- package/esm.sh/test/.template/test.ts +11 -0
- package/esm.sh/test/bad-url/test.ts +16 -0
- package/esm.sh/test/bootstrap.ts +153 -0
- package/esm.sh/test/build-args/alias.test.ts +11 -0
- package/esm.sh/test/build-args/bundle.test.ts +28 -0
- package/esm.sh/test/build-args/deps.test.ts +42 -0
- package/esm.sh/test/build-args/dev.test.ts +17 -0
- package/esm.sh/test/build-args/exports.test.ts +25 -0
- package/esm.sh/test/build-args/external.test.ts +113 -0
- package/esm.sh/test/build-args/package-css.test.ts +13 -0
- package/esm.sh/test/build-args/target.test.ts +67 -0
- package/esm.sh/test/build-args/web-worker.test.ts +44 -0
- package/esm.sh/test/builtin-scripts/test.ts +25 -0
- package/esm.sh/test/common/ajv.test.ts +13 -0
- package/esm.sh/test/common/axios.test.ts +8 -0
- package/esm.sh/test/common/esbuild.test.ts +8 -0
- package/esm.sh/test/common/graphgl.test.ts +24 -0
- package/esm.sh/test/common/html-to-react.tsx +14 -0
- package/esm.sh/test/common/io-ts.test.ts +28 -0
- package/esm.sh/test/common/jotail.test.ts +6 -0
- package/esm.sh/test/common/marked.test.ts +22 -0
- package/esm.sh/test/common/micromark.test.ts +31 -0
- package/esm.sh/test/common/misc.test.ts +15 -0
- package/esm.sh/test/common/prismjs.test.ts +14 -0
- package/esm.sh/test/common/rc-util.test.ts +10 -0
- package/esm.sh/test/common/sanitize-html.test.ts +15 -0
- package/esm.sh/test/common/terser.test.ts +10 -0
- package/esm.sh/test/common/unocss.test.ts +36 -0
- package/esm.sh/test/common/webtorrent.test.ts +7 -0
- package/esm.sh/test/cors/cors.test.ts +37 -0
- package/esm.sh/test/date-version/test.ts +227 -0
- package/esm.sh/test/deno/express.test.ts +30 -0
- package/esm.sh/test/deno/postcss.test.ts +41 -0
- package/esm.sh/test/dts/dts-header.test.ts +11 -0
- package/esm.sh/test/dts/types-only.test.ts +14 -0
- package/esm.sh/test/dts/types-versions.test.ts +14 -0
- package/esm.sh/test/empty-mjs-module/test.ts +25 -0
- package/esm.sh/test/fixed-url/test.ts +197 -0
- package/esm.sh/test/gh/fluentui-emoji.test.ts +10 -0
- package/esm.sh/test/gh/issue-1099.test.ts +8 -0
- package/esm.sh/test/gh/jsr.test.ts +8 -0
- package/esm.sh/test/gh/phospor-icons.test.tsx +12 -0
- package/esm.sh/test/gh/streamlit.test.ts +7 -0
- package/esm.sh/test/gh/tslib.test.ts +7 -0
- package/esm.sh/test/import-json/test.ts +51 -0
- package/esm.sh/test/issue-1046/test.ts +16 -0
- package/esm.sh/test/issue-1145/test.ts +19 -0
- package/esm.sh/test/issue-1161/test.ts +11 -0
- package/esm.sh/test/issue-1166/test.ts +12 -0
- package/esm.sh/test/issue-1178/test.ts +32 -0
- package/esm.sh/test/issue-1191/test.ts +28 -0
- package/esm.sh/test/issue-1199/test.ts +10 -0
- package/esm.sh/test/issue-1217/test.ts +29 -0
- package/esm.sh/test/issue-1233/test.ts +14 -0
- package/esm.sh/test/issue-1285/test.ts +12 -0
- package/esm.sh/test/issue-1367/test.ts +43 -0
- package/esm.sh/test/issue-165/test.ts +11 -0
- package/esm.sh/test/issue-362/test.ts +9 -0
- package/esm.sh/test/issue-363/test.ts +8 -0
- package/esm.sh/test/issue-381/test.ts +9 -0
- package/esm.sh/test/issue-389/test.ts +8 -0
- package/esm.sh/test/issue-392/test.ts +7 -0
- package/esm.sh/test/issue-400/test.ts +7 -0
- package/esm.sh/test/issue-410/test.ts +9 -0
- package/esm.sh/test/issue-411/test.ts +17 -0
- package/esm.sh/test/issue-417/test.ts +8 -0
- package/esm.sh/test/issue-420/deno.json +8 -0
- package/esm.sh/test/issue-420/test.ts +17 -0
- package/esm.sh/test/issue-422/test.ts +8 -0
- package/esm.sh/test/issue-454/test.ts +7 -0
- package/esm.sh/test/issue-464/test.ts +12 -0
- package/esm.sh/test/issue-483/test.ts +7 -0
- package/esm.sh/test/issue-497/test.ts +14 -0
- package/esm.sh/test/issue-502/test.ts +7 -0
- package/esm.sh/test/issue-503/test.ts +7 -0
- package/esm.sh/test/issue-512/test.ts +11 -0
- package/esm.sh/test/issue-520/test.ts +7 -0
- package/esm.sh/test/issue-521/test.ts +7 -0
- package/esm.sh/test/issue-527/test.ts +7 -0
- package/esm.sh/test/issue-553/test.ts +7 -0
- package/esm.sh/test/issue-557/test.ts +7 -0
- package/esm.sh/test/issue-562/test.ts +7 -0
- package/esm.sh/test/issue-566/test.ts +7 -0
- package/esm.sh/test/issue-572/test.ts +7 -0
- package/esm.sh/test/issue-575/test.ts +21 -0
- package/esm.sh/test/issue-576/test.ts +8 -0
- package/esm.sh/test/issue-577/test.ts +14 -0
- package/esm.sh/test/issue-578/test.ts +11 -0
- package/esm.sh/test/issue-580/test.ts +11 -0
- package/esm.sh/test/issue-581/test.ts +10 -0
- package/esm.sh/test/issue-583/test.ts +9 -0
- package/esm.sh/test/issue-588/test.ts +7 -0
- package/esm.sh/test/issue-589/test.ts +16 -0
- package/esm.sh/test/issue-591/test.ts +7 -0
- package/esm.sh/test/issue-592/test.ts +7 -0
- package/esm.sh/test/issue-593/test.ts +9 -0
- package/esm.sh/test/issue-594/test.ts +7 -0
- package/esm.sh/test/issue-596/test.ts +6 -0
- package/esm.sh/test/issue-599/test.ts +9 -0
- package/esm.sh/test/issue-601/test.ts +7 -0
- package/esm.sh/test/issue-602/test.ts +24 -0
- package/esm.sh/test/issue-606/test.ts +25 -0
- package/esm.sh/test/issue-611/test.ts +7 -0
- package/esm.sh/test/issue-620/test.ts +8 -0
- package/esm.sh/test/issue-627/test.ts +13 -0
- package/esm.sh/test/issue-628/test.ts +7 -0
- package/esm.sh/test/issue-629/test.ts +10 -0
- package/esm.sh/test/issue-633/test.ts +7 -0
- package/esm.sh/test/issue-638/test.ts +14 -0
- package/esm.sh/test/issue-639/test.ts +14 -0
- package/esm.sh/test/issue-640/test.ts +17 -0
- package/esm.sh/test/issue-642/test.ts +14 -0
- package/esm.sh/test/issue-649/test.ts +20 -0
- package/esm.sh/test/issue-659/test.ts +7 -0
- package/esm.sh/test/issue-671/test.ts +23 -0
- package/esm.sh/test/issue-691/test.ts +7 -0
- package/esm.sh/test/issue-705/test.ts +8 -0
- package/esm.sh/test/issue-711/test.ts +16 -0
- package/esm.sh/test/issue-724/test.ts +11 -0
- package/esm.sh/test/issue-728/test.ts +12 -0
- package/esm.sh/test/issue-732/test.ts +12 -0
- package/esm.sh/test/issue-741/test.ts +27 -0
- package/esm.sh/test/issue-743/test.ts +8 -0
- package/esm.sh/test/issue-750/test.ts +19 -0
- package/esm.sh/test/issue-754/test.ts +24 -0
- package/esm.sh/test/issue-761/test.ts +7 -0
- package/esm.sh/test/issue-763/test.ts +13 -0
- package/esm.sh/test/issue-765/test.ts +18 -0
- package/esm.sh/test/issue-787/test.ts +8 -0
- package/esm.sh/test/issue-791/test.ts +7 -0
- package/esm.sh/test/issue-808/test.ts +7 -0
- package/esm.sh/test/issue-817/deno.json +13 -0
- package/esm.sh/test/issue-817/test.ts +7 -0
- package/esm.sh/test/issue-840/test.ts +11 -0
- package/esm.sh/test/issue-847/deno.json +5 -0
- package/esm.sh/test/issue-847/test.ts +8 -0
- package/esm.sh/test/issue-888/test.ts +15 -0
- package/esm.sh/test/issue-907/test.ts +7 -0
- package/esm.sh/test/jsr/hono.test.ts +9 -0
- package/esm.sh/test/jsr/other.ts +6 -0
- package/esm.sh/test/jsr/std.test.ts +20 -0
- package/esm.sh/test/legacy-routes/test.ts +178 -0
- package/esm.sh/test/mdx/mdx.test.ts +28 -0
- package/esm.sh/test/meta/meta.test.ts +47 -0
- package/esm.sh/test/node-polyfill/browser-excluded.test.ts +21 -0
- package/esm.sh/test/node-polyfill/polyfill.test.ts +10 -0
- package/esm.sh/test/npm-replacements/test.ts +11 -0
- package/esm.sh/test/pkg.pr.new/test.ts +23 -0
- package/esm.sh/test/preact/deno.json +10 -0
- package/esm.sh/test/preact/swr.test.tsx +26 -0
- package/esm.sh/test/preact/test.tsx +32 -0
- package/esm.sh/test/raw/raw.test.ts +19 -0
- package/esm.sh/test/react-17/deno.json +8 -0
- package/esm.sh/test/react-17/test.tsx +17 -0
- package/esm.sh/test/react-18/deno.json +8 -0
- package/esm.sh/test/react-18/dev.test.tsx +17 -0
- package/esm.sh/test/react-18/ssr.test.tsx +17 -0
- package/esm.sh/test/react-18/stream-ssr.test.tsx +18 -0
- package/esm.sh/test/scoped-fork/test.ts +36 -0
- package/esm.sh/test/solid-js-1.5/deno.json +9 -0
- package/esm.sh/test/solid-js-1.5/test.ts +49 -0
- package/esm.sh/test/solid-js-1.6/deno.json +9 -0
- package/esm.sh/test/solid-js-1.6/test.ts +56 -0
- package/esm.sh/test/solid-js-refresh/browser.test.ts +27 -0
- package/esm.sh/test/splitting/splitting.test.ts +7 -0
- package/esm.sh/test/svelte-4/svelte-compiler.test.ts +49 -0
- package/esm.sh/test/svelte-4/svelte-runtime.test.ts +16 -0
- package/esm.sh/test/svelte-5/svelte-compiler.test.ts +48 -0
- package/esm.sh/test/svelte-5/svelte-runtime.test.ts +7 -0
- package/esm.sh/test/transform/transform.test.ts +59 -0
- package/esm.sh/test/typescript/test.ts +21 -0
- package/esm.sh/test/valtown/gh.test.ts +9 -0
- package/esm.sh/test/valtown/test.ts +9 -0
- package/esm.sh/test/vue/sfc-compiler.test.ts +21 -0
- package/esm.sh/test/vue/ssr.test.ts +15 -0
- package/esm.sh/test/vue/transfrom-sfc-on-fly.test.ts +14 -0
- package/esm.sh/web/README.md +94 -0
- package/esm.sh/web/debug.go +11 -0
- package/esm.sh/web/embed.go +6 -0
- package/esm.sh/web/handler.go +1044 -0
- package/esm.sh/web/internal/hmr.js +169 -0
- package/esm.sh/web/internal/loader.js +168 -0
- package/esm.sh/web/internal/prefresh.js +53 -0
- package/esm.sh/web/internal/refresh.js +26 -0
- package/esm.sh/web/internal/vdr.js +19 -0
- package/esm.sh/web/release.go +8 -0
- package/esm.sh/web/utils.go +71 -0
- package/esm.sh/web/worker.go +166 -0
- package/esm.sh/~/.esmd/bin/cjs-module-lexer-1.0.8 +0 -0
- package/esm.sh/~/.esmd/log/server-20260609.log +18 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/README.md +15 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/canary.d.ts +129 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/compiler-runtime.d.ts +4 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/experimental.d.ts +184 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/global.d.ts +166 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/index.d.ts +4369 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/jsx-dev-runtime.d.ts +33 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/jsx-runtime.d.ts +24 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/package.json +210 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/canary.d.ts +129 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/experimental.d.ts +184 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/global.d.ts +166 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/index.d.ts +4356 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/jsx-dev-runtime.d.ts +33 -0
- package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/jsx-runtime.d.ts +24 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/README.md +13 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.js +1972 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1822 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts +1450 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-browser.js +12857 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-browser.prod.js +7 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js +2011 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.global.js +12910 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.global.prod.js +7 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/index.js +7 -0
- package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/package.json +60 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/CHANGES.md +3340 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/README.md +468 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/SECURITY.md +19 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/SUPPORTED_LANGUAGES.md +264 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/VERSION_10_UPGRADE.md +58 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/VERSION_11_UPGRADE.md +203 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/common.d.ts +3 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/common.js +4 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/core.d.ts +3 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/core.js +4 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/index.js +4 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/1c.js +537 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/1c.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/abnf.js +82 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/abnf.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/accesslog.js +92 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/accesslog.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/actionscript.js +153 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/actionscript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ada.js +265 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ada.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/angelscript.js +178 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/angelscript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/apache.js +101 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/apache.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/applescript.js +149 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/applescript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arcade.js +361 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arcade.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arduino.js +970 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arduino.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/armasm.js +124 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/armasm.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/asciidoc.js +261 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/asciidoc.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/aspectj.js +230 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/aspectj.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autohotkey.js +75 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autohotkey.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autoit.js +178 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autoit.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/avrasm.js +78 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/avrasm.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/awk.js +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/awk.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/axapta.js +188 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/axapta.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bash.js +391 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bash.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/basic.js +229 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/basic.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bnf.js +38 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bnf.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/brainfuck.js +54 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/brainfuck.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/c.js +318 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/c.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cal.js +159 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cal.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/capnproto.js +99 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/capnproto.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ceylon.js +139 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ceylon.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clean.js +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clean.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure-repl.js +27 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure-repl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure.js +184 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cmake.js +63 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cmake.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coffeescript.js +366 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coffeescript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coq.js +445 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coq.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cos.js +140 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cos.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cpp.js +568 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cpp.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crmsh.js +100 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crmsh.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crystal.js +311 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crystal.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csharp.js +400 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csharp.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csp.js +57 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csp.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/css.js +738 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/css.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/d.js +271 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/d.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dart.js +262 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dart.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/delphi.js +230 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/delphi.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/diff.js +62 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/diff.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/django.js +75 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/django.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dns.js +78 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dns.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dockerfile.js +44 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dockerfile.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dos.js +166 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dos.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dsconfig.js +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dsconfig.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dts.js +157 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dts.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dust.js +47 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dust.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ebnf.js +53 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ebnf.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elixir.js +279 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elixir.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elm.js +143 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elm.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erb.js +29 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erb.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang-repl.js +54 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang-repl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang.js +191 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/excel.js +544 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/excel.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fix.js +39 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fix.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/flix.js +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/flix.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fortran.js +573 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fortran.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fsharp.js +627 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fsharp.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gams.js +181 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gams.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gauss.js +306 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gauss.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gcode.js +80 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gcode.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gherkin.js +49 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gherkin.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/glsl.js +128 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/glsl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gml.js +2816 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gml.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/go.js +141 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/go.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/golo.js +80 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/golo.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gradle.js +189 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gradle.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/graphql.js +78 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/graphql.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/groovy.js +189 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/groovy.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haml.js +113 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haml.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/handlebars.js +258 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/handlebars.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haskell.js +217 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haskell.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haxe.js +166 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haxe.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hsp.js +59 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hsp.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/http.js +97 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/http.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hy.js +137 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hy.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/inform7.js +69 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/inform7.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ini.js +121 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ini.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/irpf90.js +107 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/irpf90.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/isbl.js +3205 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/isbl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/java.js +289 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/java.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/javascript.js +766 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/javascript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/jboss-cli.js +63 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/jboss-cli.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/json.js +53 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/json.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia-repl.js +50 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia-repl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia.js +441 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/kotlin.js +286 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/kotlin.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lasso.js +170 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lasso.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/latex.js +278 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/latex.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ldif.js +31 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ldif.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/leaf.js +97 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/leaf.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/less.js +839 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/less.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lisp.js +139 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lisp.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livecodeserver.js +173 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livecodeserver.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livescript.js +378 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livescript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/llvm.js +132 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/llvm.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lsl.js +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lsl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lua.js +80 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lua.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/makefile.js +86 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/makefile.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/markdown.js +241 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/markdown.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mathematica.js +7359 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mathematica.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/matlab.js +107 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/matlab.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/maxima.js +414 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/maxima.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mel.js +235 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mel.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mercury.js +107 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mercury.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mipsasm.js +104 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mipsasm.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mizar.js +27 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mizar.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mojolicious.js +36 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mojolicious.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/monkey.js +183 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/monkey.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/moonscript.js +141 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/moonscript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/n1ql.js +364 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/n1ql.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nestedtext.js +83 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nestedtext.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nginx.js +153 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nginx.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nim.js +185 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nim.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nix.js +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nix.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/node-repl.js +33 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/node-repl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nsis.js +556 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nsis.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/objectivec.js +253 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/objectivec.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ocaml.js +83 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ocaml.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/openscad.js +77 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/openscad.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/oxygene.js +86 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/oxygene.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/parser3.js +55 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/parser3.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/perl.js +471 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/perl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pf.js +60 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pf.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pgsql.js +524 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pgsql.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php-template.js +54 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php-template.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php.js +613 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/plaintext.js +19 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/plaintext.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pony.js +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pony.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/powershell.js +316 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/powershell.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/processing.js +434 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/processing.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/profile.js +43 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/profile.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/prolog.js +96 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/prolog.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/properties.js +68 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/properties.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/protobuf.js +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/protobuf.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/puppet.js +146 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/puppet.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/purebasic.js +99 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/purebasic.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python-repl.js +32 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python-repl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python.js +434 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/q.js +37 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/q.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/qml.js +189 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/qml.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/r.js +257 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/r.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/reasonml.js +142 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/reasonml.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rib.js +37 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rib.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/roboconf.js +82 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/roboconf.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/routeros.js +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/routeros.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rsl.js +149 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rsl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruby.js +448 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruby.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruleslanguage.js +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruleslanguage.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rust.js +305 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rust.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sas.js +556 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sas.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scala.js +214 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scala.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scheme.js +196 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scheme.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scilab.js +73 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scilab.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scss.js +728 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scss.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/shell.js +33 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/shell.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smali.js +125 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smali.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smalltalk.js +68 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smalltalk.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sml.js +75 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sml.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sqf.js +2662 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sqf.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sql.js +682 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sql.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stan.js +521 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stan.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stata.js +53 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stata.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/step21.js +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/step21.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stylus.js +788 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stylus.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/subunit.js +43 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/subunit.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/swift.js +920 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/swift.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/taggerscript.js +58 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/taggerscript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tap.js +47 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tap.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tcl.js +190 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tcl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/thrift.js +77 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/thrift.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tp.js +171 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tp.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/twig.js +260 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/twig.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/typescript.js +880 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/typescript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vala.js +60 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vala.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbnet.js +157 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbnet.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript-html.js +24 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript-html.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript.js +220 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/verilog.js +549 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/verilog.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vhdl.js +215 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vhdl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vim.js +129 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vim.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wasm.js +139 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wasm.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wren.js +302 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wren.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/x86asm.js +153 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/x86asm.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xl.js +205 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xl.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xml.js +241 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xml.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xquery.js +360 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xquery.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/yaml.js +194 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/yaml.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/zephir.js +128 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/zephir.js.js +11 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/package.json +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/utils/regex.js +155 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/common.d.ts +3 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/common.js +42 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/core.d.ts +3 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/core.js +2597 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/index.js +198 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/1c.js +537 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/1c.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/abnf.js +82 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/abnf.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/accesslog.js +92 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/accesslog.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/actionscript.js +153 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/actionscript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ada.js +265 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ada.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/angelscript.js +178 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/angelscript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/apache.js +101 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/apache.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/applescript.js +149 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/applescript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arcade.js +361 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arcade.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arduino.js +970 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arduino.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/armasm.js +124 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/armasm.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/asciidoc.js +261 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/asciidoc.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/aspectj.js +230 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/aspectj.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autohotkey.js +75 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autohotkey.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autoit.js +178 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autoit.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/avrasm.js +78 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/avrasm.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/awk.js +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/awk.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/axapta.js +188 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/axapta.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bash.js +391 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bash.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/basic.js +229 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/basic.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bnf.js +38 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bnf.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/brainfuck.js +54 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/brainfuck.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/c.js +318 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/c.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cal.js +159 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cal.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/capnproto.js +99 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/capnproto.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ceylon.js +139 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ceylon.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clean.js +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clean.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure-repl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure.js +184 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cmake.js +63 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cmake.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coffeescript.js +366 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coffeescript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coq.js +445 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coq.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cos.js +140 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cos.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cpp.js +568 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cpp.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crmsh.js +100 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crmsh.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crystal.js +311 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crystal.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csharp.js +400 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csharp.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csp.js +57 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csp.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/css.js +738 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/css.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/d.js +271 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/d.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dart.js +262 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dart.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/delphi.js +230 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/delphi.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/diff.js +62 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/diff.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/django.js +75 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/django.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dns.js +78 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dns.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dockerfile.js +44 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dockerfile.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dos.js +166 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dos.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dsconfig.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dts.js +157 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dts.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dust.js +47 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dust.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ebnf.js +53 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ebnf.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elixir.js +279 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elixir.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elm.js +143 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elm.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erb.js +29 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erb.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang-repl.js +54 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang-repl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang.js +191 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/excel.js +544 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/excel.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fix.js +39 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fix.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/flix.js +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/flix.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fortran.js +573 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fortran.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fsharp.js +627 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fsharp.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gams.js +181 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gams.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gauss.js +306 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gauss.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gcode.js +80 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gcode.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gherkin.js +49 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gherkin.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/glsl.js +128 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/glsl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gml.js +2816 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gml.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/go.js +141 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/go.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/golo.js +80 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/golo.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gradle.js +189 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gradle.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/graphql.js +78 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/graphql.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/groovy.js +189 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/groovy.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haml.js +113 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haml.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/handlebars.js +258 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/handlebars.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haskell.js +217 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haskell.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haxe.js +166 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haxe.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hsp.js +59 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hsp.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/http.js +97 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/http.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hy.js +137 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hy.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/inform7.js +69 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/inform7.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ini.js +121 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ini.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/irpf90.js +107 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/irpf90.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/isbl.js +3205 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/isbl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/java.js +289 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/java.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/javascript.js +766 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/javascript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/jboss-cli.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/json.js +53 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/json.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia-repl.js +50 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia-repl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia.js +441 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/kotlin.js +286 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/kotlin.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lasso.js +170 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lasso.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/latex.js +278 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/latex.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ldif.js +31 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ldif.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/leaf.js +97 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/leaf.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/less.js +839 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/less.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lisp.js +139 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lisp.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livecodeserver.js +173 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livecodeserver.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livescript.js +378 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livescript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/llvm.js +132 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/llvm.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lsl.js +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lsl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lua.js +80 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lua.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/makefile.js +86 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/makefile.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/markdown.js +241 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/markdown.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mathematica.js +7359 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mathematica.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/matlab.js +107 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/matlab.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/maxima.js +414 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/maxima.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mel.js +235 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mel.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mercury.js +107 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mercury.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mipsasm.js +104 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mipsasm.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mizar.js +27 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mizar.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mojolicious.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/monkey.js +183 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/monkey.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/moonscript.js +141 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/moonscript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/n1ql.js +364 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/n1ql.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nestedtext.js +83 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nestedtext.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nginx.js +153 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nginx.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nim.js +185 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nim.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nix.js +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nix.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/node-repl.js +33 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/node-repl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nsis.js +556 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nsis.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/objectivec.js +253 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/objectivec.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ocaml.js +83 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ocaml.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/openscad.js +77 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/openscad.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/oxygene.js +86 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/oxygene.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/parser3.js +55 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/parser3.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/perl.js +471 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/perl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pf.js +60 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pf.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pgsql.js +524 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pgsql.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php-template.js +54 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php-template.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php.js +613 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/plaintext.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pony.js +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pony.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/powershell.js +316 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/powershell.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/processing.js +434 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/processing.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/profile.js +43 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/profile.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/prolog.js +96 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/prolog.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/properties.js +68 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/properties.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/protobuf.js +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/protobuf.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/puppet.js +146 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/puppet.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/purebasic.js +99 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/purebasic.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python-repl.js +32 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python-repl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python.js +434 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/q.js +37 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/q.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/qml.js +189 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/qml.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/r.js +257 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/r.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/reasonml.js +142 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/reasonml.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rib.js +37 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rib.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/roboconf.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/routeros.js +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/routeros.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rsl.js +149 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rsl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruby.js +448 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruby.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruleslanguage.js +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruleslanguage.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rust.js +305 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rust.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sas.js +556 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sas.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scala.js +214 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scala.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scheme.js +196 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scheme.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scilab.js +73 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scilab.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scss.js +728 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scss.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/shell.js +33 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/shell.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smali.js +125 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smali.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smalltalk.js +68 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smalltalk.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sml.js +75 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sml.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sqf.js +2662 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sqf.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sql.js +682 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sql.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stan.js +521 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stan.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stata.js +53 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stata.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/step21.js +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/step21.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stylus.js +788 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stylus.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/subunit.js +43 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/subunit.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/swift.js +920 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/swift.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/taggerscript.js +58 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/taggerscript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tap.js +47 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tap.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tcl.js +190 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tcl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/thrift.js +77 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/thrift.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tp.js +171 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tp.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/twig.js +260 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/twig.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/typescript.js +880 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/typescript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vala.js +60 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vala.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbnet.js +157 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbnet.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript-html.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript.js +220 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/verilog.js +549 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/verilog.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vhdl.js +215 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vhdl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vim.js +129 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vim.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wasm.js +139 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wasm.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wren.js +302 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wren.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/x86asm.js +153 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/x86asm.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xl.js +205 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xl.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xml.js +241 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xml.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xquery.js +360 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xquery.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/yaml.js +194 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/yaml.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/zephir.js +128 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/zephir.js.js +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/package.json +119 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/a11y-dark.scss +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/a11y-light.scss +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/agate.scss +127 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/an-old-hope.scss +75 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/androidstudio.scss +60 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/arduino-light.scss +78 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/arta.scss +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/ascetic.scss +45 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +105 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/atom-one-dark.scss +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/atom-one-light.scss +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/3024.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/apathy.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/apprentice.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ashes.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-cave-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-cave.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-dune-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-dune.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-estuary-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-estuary.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-forest-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-forest.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-heath-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-heath.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-lakeside-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-lakeside.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-plateau-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-plateau.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-savanna-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-savanna.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-seaside-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-seaside.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-sulphurpool-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-sulphurpool.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atlas.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/bespin.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-bathory.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-burzum.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-dark-funeral.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-gorgoroth.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-immortal.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-khold.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-marduk.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-mayhem.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-nile.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-venom.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brewer.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/bright.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brogrammer.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brush-trees-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brush-trees.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/chalk.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/circus.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/classic-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/classic-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/codeschool.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/colors.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/cupcake.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/cupertino.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/danqing.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/darcula.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/dark-violet.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/darkmoss.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/darktooth.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/decaf.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/default-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/default-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/dirtysea.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/dracula.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/edge-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/edge-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/eighties.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/embers.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-gray-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-gray-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/espresso.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/eva-dim.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/eva.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/flat.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/framer.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/fruit-soda.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gigavolt.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/github.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/google-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/google-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/grayscale-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/grayscale-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/green-screen.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-hard.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-medium.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-pale.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-soft.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-light-hard.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-light-medium.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-light-soft.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/hardcore.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/harmonic16-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/harmonic16-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/heetch-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/heetch-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/helios.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/hopscotch.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/horizon-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/horizon-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/humanoid-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/humanoid-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ia-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ia-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/icy-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ir-black.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/isotope.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/kimber.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/london-tube.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/macintosh.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/marrakesh.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/materia.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-darker.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-lighter.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-palenight.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-vivid.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/mellow-purple.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/mexico-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/mocha.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/monokai.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/nebula.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/nord.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/nova.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ocean.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/oceanicnext.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/one-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/onedark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/outrun-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/papercolor-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/papercolor-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/paraiso.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/pasque.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/phd.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/pico.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/pop.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/porple.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/qualia.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/railscasts.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/rebecca.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ros-pine-dawn.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ros-pine-moon.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ros-pine.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/sagelight.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/sandcastle.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/seti-ui.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/shapeshifter.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/silk-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/silk-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/snazzy.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solar-flare-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solar-flare.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solarized-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solarized-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/spacemacs.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/summercamp.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/summerfruit-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/summerfruit-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/synth-midnight-terminal-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/synth-midnight-terminal-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tango.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tender.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tomorrow-night.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tomorrow.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/twilight.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/unikitty-dark.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/unikitty-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/vulcan.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-10-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-10.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-95-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-95.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-high-contrast-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-high-contrast.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-nt-light.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-nt.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/woodland.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/xcode-dusk.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/zenburn.scss +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/brown-paper.scss +63 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/codepen-embed.scss +57 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/color-brewer.scss +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/dark.scss +62 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/default.scss +117 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/devibeans.scss +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/docco.scss +83 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/far.scss +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/felipec.scss +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/foundation.scss +80 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/github-dark-dimmed.scss +117 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/github-dark.scss +118 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/github.scss +118 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/gml.scss +72 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/googlecode.scss +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/gradient-dark.scss +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/gradient-light.scss +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/grayscale.scss +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/hybrid.scss +88 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/idea.scss +86 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/intellij-light.scss +107 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/ir-black.scss +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/isbl-editor-dark.scss +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/isbl-editor-light.scss +93 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/kimbie-dark.scss +69 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/kimbie-light.scss +69 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/lightfair.scss +81 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/lioshi.scss +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/magula.scss +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/mono-blue.scss +56 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/monokai-sublime.scss +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/monokai.scss +68 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/night-owl.scss +174 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/nnfx-dark.scss +104 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/nnfx-light.scss +104 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/nord.scss +275 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/obsidian.scss +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/panda-syntax-dark.scss +92 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/panda-syntax-light.scss +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/paraiso-dark.scss +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/paraiso-light.scss +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/pojoaque.scss +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/purebasic.scss +103 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/qtcreator-dark.scss +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/qtcreator-light.scss +74 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/rainbow.scss +77 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/routeros.scss +86 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/school-book.scss +62 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/shades-of-purple.scss +84 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/srcery.scss +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/stackoverflow-dark.scss +117 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/stackoverflow-light.scss +117 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/sunburst.scss +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tokyo-night-dark.scss +114 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tokyo-night-light.scss +114 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tomorrow-night-blue.scss +69 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tomorrow-night-bright.scss +68 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/vs.scss +63 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/vs2015.scss +100 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/xcode.scss +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/xt256.scss +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-dark.css +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-light.css +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/agate.css +127 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/agate.min.css +20 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/an-old-hope.css +75 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/an-old-hope.min.css +9 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/androidstudio.css +60 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/androidstudio.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arduino-light.css +78 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arduino-light.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arta.css +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arta.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ascetic.css +45 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ascetic.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +105 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark-reasonable.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark.css +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-light.css +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-light.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/3024.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/3024.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apathy.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apathy.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apprentice.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apprentice.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ashes.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ashes.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atlas.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atlas.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bespin.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bespin.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-bathory.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-bathory.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-burzum.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-burzum.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-immortal.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-immortal.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-khold.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-khold.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-marduk.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-marduk.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-mayhem.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-mayhem.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-nile.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-nile.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-venom.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-venom.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brewer.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brewer.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bright.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bright.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brogrammer.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brogrammer.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/chalk.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/chalk.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/circus.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/circus.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/codeschool.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/codeschool.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/colors.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/colors.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupcake.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupcake.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupertino.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupertino.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/danqing.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/danqing.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darcula.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darcula.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dark-violet.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dark-violet.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darkmoss.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darkmoss.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darktooth.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darktooth.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/decaf.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/decaf.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dirtysea.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dirtysea.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dracula.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dracula.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eighties.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eighties.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/embers.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/embers.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/espresso.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/espresso.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva-dim.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva-dim.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/flat.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/flat.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/framer.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/framer.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/fruit-soda.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/fruit-soda.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gigavolt.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gigavolt.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/github.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/github.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/green-screen.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/green-screen.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-hard.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-hard.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-medium.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-medium.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-soft.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-soft.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hardcore.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hardcore.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/helios.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/helios.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hopscotch.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hopscotch.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/icy-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/icy-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ir-black.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ir-black.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/isotope.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/isotope.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/kimber.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/kimber.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/london-tube.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/london-tube.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/macintosh.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/macintosh.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/marrakesh.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/marrakesh.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/materia.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/materia.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-darker.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-darker.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-lighter.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-lighter.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-palenight.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-palenight.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-vivid.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-vivid.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mellow-purple.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mellow-purple.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mexico-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mexico-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mocha.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mocha.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/monokai.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/monokai.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nebula.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nebula.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nord.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nord.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nova.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nova.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ocean.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ocean.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/oceanicnext.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/oceanicnext.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/one-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/one-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/onedark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/onedark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/outrun-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/outrun-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/paraiso.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/paraiso.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pasque.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pasque.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/phd.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/phd.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pico.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pico.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pop.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pop.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/porple.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/porple.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/qualia.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/qualia.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/railscasts.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/railscasts.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/rebecca.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/rebecca.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-dawn.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-dawn.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-moon.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-moon.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sagelight.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sagelight.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sandcastle.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sandcastle.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/seti-ui.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/seti-ui.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/shapeshifter.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/shapeshifter.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/snazzy.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/snazzy.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/spacemacs.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/spacemacs.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summercamp.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summercamp.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tango.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tango.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tender.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tender.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow-night.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow-night.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/twilight.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/twilight.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-dark.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-dark.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/vulcan.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/vulcan.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt-light.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt-light.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/woodland.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/woodland.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/xcode-dusk.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/xcode-dusk.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/zenburn.css +163 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/zenburn.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/brown-paper.css +63 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/brown-paper.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/brown-papersq.png +0 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/codepen-embed.css +57 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/codepen-embed.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/color-brewer.css +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/color-brewer.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/dark.css +62 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/dark.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/default.css +117 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/default.min.css +9 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/devibeans.css +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/devibeans.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/docco.css +83 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/docco.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/far.css +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/far.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/felipec.css +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/felipec.min.css +7 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/foundation.css +80 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/foundation.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark-dimmed.css +117 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark-dimmed.min.css +9 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark.css +118 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark.min.css +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github.css +118 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github.min.css +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gml.css +72 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gml.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/googlecode.css +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/googlecode.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-dark.css +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-dark.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-light.css +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-light.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/grayscale.css +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/grayscale.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/hybrid.css +88 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/hybrid.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/idea.css +86 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/idea.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/intellij-light.css +107 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/intellij-light.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ir-black.css +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ir-black.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-dark.css +94 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-dark.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-light.css +93 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-light.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-dark.css +69 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-dark.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-light.css +69 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-light.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lightfair.css +81 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lightfair.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lioshi.css +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lioshi.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/magula.css +66 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/magula.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/mono-blue.css +56 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/mono-blue.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai-sublime.css +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai-sublime.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai.css +68 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/night-owl.css +174 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/night-owl.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-dark.css +104 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-dark.min.css +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-light.css +104 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-light.min.css +10 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nord.css +275 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nord.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/obsidian.css +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/obsidian.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-dark.css +92 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-dark.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-light.css +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-light.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-dark.css +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-dark.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-light.css +67 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-light.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/pojoaque.css +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/pojoaque.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/purebasic.css +103 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/purebasic.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-dark.css +76 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-dark.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-light.css +74 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-light.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/rainbow.css +77 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/rainbow.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/routeros.css +86 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/routeros.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/school-book.css +62 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/school-book.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/shades-of-purple.css +84 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/shades-of-purple.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/srcery.css +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/srcery.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-dark.css +117 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-dark.min.css +13 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-light.css +117 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-light.min.css +13 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/sunburst.css +89 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/sunburst.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-dark.css +114 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-dark.min.css +8 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-light.css +114 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-light.min.css +8 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-blue.css +69 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-blue.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-bright.css +68 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-bright.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs.css +63 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs2015.css +100 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs2015.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xcode.css +90 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xcode.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xt256.css +79 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xt256.min.css +1 -0
- package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/types/index.d.ts +272 -0
- package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/README.md +256 -0
- package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/index.js +62 -0
- package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w-fast.wasm +0 -0
- package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w-small.wasm +0 -0
- package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w.d.ts +209 -0
- package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w.js +248 -0
- package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/unwasm.js +8 -0
- package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/workerd.js +12 -0
- package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/package.json +32 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/.cjs-module-lexer/N9KEuYxp93L_UmfSNWRJbsFK_rM.json +1 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/README.md +37 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.development.js +1284 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.production.js +542 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.react-server.development.js +848 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.react-server.production.js +423 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/compiler-runtime.js +14 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/index.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-dev-runtime.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-runtime.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-runtime.react-server.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/package.json +51 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/react.react-server.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/reveal_index.js +1 -0
- package/esm.sh/~/.esmd/npm/react@19.2.4/splitting.txt +1 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/README.md +37 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.development.js +1284 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.production.js +542 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.react-server.development.js +848 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.react-server.production.js +423 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/compiler-runtime.js +14 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/index.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-dev-runtime.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-runtime.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-runtime.react-server.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/package.json +51 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/react.react-server.js +7 -0
- package/esm.sh/~/.esmd/npm/react@19.2.7/splitting.txt +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/README.md +58 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.browser.js +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.browser.mjs +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.d.mts +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.d.ts +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.js +3 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.mjs +3 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/package.json +4 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/register-ts.js +3 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.cjs.js +80 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.cjs.prod.js +66 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.d.mts +7 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.d.ts +7 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.esm-browser.js +18771 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.esm-browser.prod.js +13 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.esm-bundler.js +71 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.global.js +18651 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.global.prod.js +13 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.esm-browser.js +12880 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.esm-browser.prod.js +7 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.esm-bundler.js +26 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.global.js +12934 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.global.prod.js +7 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/index.js +7 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/index.mjs +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/index.d.ts +25 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/index.js +15 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/index.mjs +12 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/package.json +5 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx.d.ts +22 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/package.json +112 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.d.mts +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.d.ts +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.js +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.mjs +1 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/package.json +4 -0
- package/esm.sh/~/.esmd/npm/vue@3.5.35/splitting.txt +1 -0
- package/esm.sh/~/.esmd/storage/meta/0ccf259ebde077a12d90e293b1b57c71c6a7e5681b3d370701d8b837374c471d +3 -0
- package/esm.sh/~/.esmd/storage/meta/2ff07cad0d49c3918c0d7e540f7c3a4de6365f0fa900d2571abdd3d0c6f752ad +5 -0
- package/esm.sh/~/.esmd/storage/meta/4ed866cb0ae082373db4adbc9a767ed1f72aaab7ce2617c1a26306b2243fb906 +3 -0
- package/esm.sh/~/.esmd/storage/meta/632c0342785a7316482a17aab04f0c39418d947fce8e7bb029e14c2e71fcfcf4 +5 -0
- package/esm.sh/~/.esmd/storage/meta/76592bfc53893b8e9a350b84dcbc221b3f579ee5dedfdde8246f32339dc2e1aa +3 -0
- package/esm.sh/~/.esmd/storage/meta/94595f12b0002bcf04f539ef3d8f0b6b4354211e0d8c600a7d89febd3674fef7 +4 -0
- package/esm.sh/~/.esmd/storage/meta/c0b76f9c9eb165371fa7d6c0f45305fa8b9f0f5ce643c18f5c3141b8922204ad +3 -0
- package/esm.sh/~/.esmd/storage/meta/d03278ae19ef7972f5b610bd42fc0203f6179d7eace0f621c787127d8edf810e +4 -0
- package/esm.sh/~/.esmd/storage/modules/@vue/runtime-dom@3.5.35/es2022/runtime-dom.mjs +12 -0
- package/esm.sh/~/.esmd/storage/modules/@vue/runtime-dom@3.5.35/es2022/runtime-dom.mjs.map +1 -0
- package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/core.mjs +4 -0
- package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/core.mjs.map +1 -0
- package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/javascript.mjs +3 -0
- package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/javascript.mjs.map +1 -0
- package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/json.mjs +3 -0
- package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/json.mjs.map +1 -0
- package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/xml.mjs +3 -0
- package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/xml.mjs.map +1 -0
- package/esm.sh/~/.esmd/storage/modules/md4w@0.2.7/es2022/md4w.mjs +4 -0
- package/esm.sh/~/.esmd/storage/modules/md4w@0.2.7/es2022/md4w.mjs.map +1 -0
- package/esm.sh/~/.esmd/storage/modules/react@19.2.4/es2022/react.mjs +16 -0
- package/esm.sh/~/.esmd/storage/modules/react@19.2.4/es2022/react.mjs.map +1 -0
- package/esm.sh/~/.esmd/storage/modules/vue@3.5.35/es2022/vue.mjs +12 -0
- package/esm.sh/~/.esmd/storage/modules/vue@3.5.35/es2022/vue.mjs.map +1 -0
- package/package.json +1 -1
- package/AGENTS.md +0 -5
- package/chrome-devtools-mcp.skill +0 -0
|
@@ -0,0 +1,1447 @@
|
|
|
1
|
+
package server
|
|
2
|
+
|
|
3
|
+
import (
|
|
4
|
+
"crypto/sha1"
|
|
5
|
+
"encoding/hex"
|
|
6
|
+
"errors"
|
|
7
|
+
"fmt"
|
|
8
|
+
"os"
|
|
9
|
+
"path"
|
|
10
|
+
"slices"
|
|
11
|
+
"sort"
|
|
12
|
+
"strings"
|
|
13
|
+
|
|
14
|
+
"github.com/esm-dev/esm.sh/internal/npm"
|
|
15
|
+
esbuild "github.com/ije/esbuild-internal/api"
|
|
16
|
+
esbuild_config "github.com/ije/esbuild-internal/config"
|
|
17
|
+
"github.com/ije/esbuild-internal/js_ast"
|
|
18
|
+
"github.com/ije/esbuild-internal/js_parser"
|
|
19
|
+
"github.com/ije/esbuild-internal/logger"
|
|
20
|
+
"github.com/ije/gox/utils"
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
var moduleExts = []string{".js", ".ts", ".mjs", ".mts", ".jsx", ".tsx", ".cjs", ".cts"}
|
|
24
|
+
|
|
25
|
+
// BuildEntry represents the build entrypoints of a module
|
|
26
|
+
type BuildEntry struct {
|
|
27
|
+
main string
|
|
28
|
+
module bool
|
|
29
|
+
types string
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
func (entry *BuildEntry) isEmpty() bool {
|
|
33
|
+
return entry.main == "" && entry.types == ""
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
func (entry *BuildEntry) isTypesOnly() bool {
|
|
37
|
+
return entry.main == "" && entry.types != ""
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
func (entry *BuildEntry) update(main string, module bool) {
|
|
41
|
+
entry.main = main
|
|
42
|
+
entry.module = module || strings.HasSuffix(main, ".mjs")
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
func (ctx *BuildContext) resolveEntry(esm EsmPath) (entry BuildEntry) {
|
|
46
|
+
pkgJson := ctx.pkgJson
|
|
47
|
+
|
|
48
|
+
if subPath := esm.SubPath; subPath != "" {
|
|
49
|
+
if endsWith(subPath, ".d.ts", ".d.mts", ".d.cts") {
|
|
50
|
+
entry.types = normalizeEntryPath(subPath)
|
|
51
|
+
return
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
switch ext := path.Ext(subPath); ext {
|
|
55
|
+
case ".mts", ".ts", ".tsx", ".cts", ".json", ".jsx", ".svelte", ".vue", ".css":
|
|
56
|
+
if ctx.existsPkgFile(subPath) {
|
|
57
|
+
switch ext {
|
|
58
|
+
case ".mts", ".ts", ".tsx", ".cts":
|
|
59
|
+
// todo: create dts from the ts file
|
|
60
|
+
entry.update(subPath, true)
|
|
61
|
+
// lookup jsr built dts
|
|
62
|
+
if strings.HasPrefix(esm.PkgName, "@jsr/") {
|
|
63
|
+
for _, v := range pkgJson.Exports.Values() {
|
|
64
|
+
if obj, ok := v.(npm.JSONObject); ok {
|
|
65
|
+
if v, ok := obj.Get("default"); ok {
|
|
66
|
+
if s, ok := v.(string); ok && s == "./"+stripModuleExt(subPath)+".js" {
|
|
67
|
+
if v, ok := obj.Get("types"); ok {
|
|
68
|
+
if s, ok := v.(string); ok {
|
|
69
|
+
entry.types = normalizeEntryPath(s)
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
break
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
return
|
|
79
|
+
case ".json", ".jsx", ".svelte", ".vue":
|
|
80
|
+
entry.update(subPath, true)
|
|
81
|
+
return
|
|
82
|
+
case ".css":
|
|
83
|
+
// check if CSS file is defined in exports
|
|
84
|
+
if pkgJson.Exports.Len() > 0 {
|
|
85
|
+
if v, ok := pkgJson.Exports.Get("./" + subPath); ok {
|
|
86
|
+
if s, ok := v.(string); ok {
|
|
87
|
+
entry.update(s, true)
|
|
88
|
+
return
|
|
89
|
+
}
|
|
90
|
+
if obj, ok := v.(npm.JSONObject); ok {
|
|
91
|
+
// handle conditional exports like {"types": "...", "default": "..."}
|
|
92
|
+
if defaultPath, ok := obj.Get("default"); ok {
|
|
93
|
+
if s, ok := defaultPath.(string); ok {
|
|
94
|
+
entry.update(s, true)
|
|
95
|
+
return
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
// if not found in exports, use the subPath as-is
|
|
102
|
+
entry.update(subPath, true)
|
|
103
|
+
return
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// reslove sub-module using `exports` conditions if exists
|
|
109
|
+
// see https://nodejs.org/api/packages.html#package-entry-points
|
|
110
|
+
if pkgJson.Exports.Len() > 0 {
|
|
111
|
+
var exportEntry BuildEntry
|
|
112
|
+
conditions, ok := pkgJson.Exports.Get("./" + subPath)
|
|
113
|
+
if ok {
|
|
114
|
+
if s, ok := conditions.(string); ok {
|
|
115
|
+
/**
|
|
116
|
+
exports: {
|
|
117
|
+
"./lib/foo": "./lib/foo.js"
|
|
118
|
+
}
|
|
119
|
+
*/
|
|
120
|
+
exportEntry.update(s, pkgJson.Type == "module")
|
|
121
|
+
} else if obj, ok := conditions.(npm.JSONObject); ok {
|
|
122
|
+
/**
|
|
123
|
+
exports: {
|
|
124
|
+
"./lib/foo": {
|
|
125
|
+
"require": "./lib/foo.js",
|
|
126
|
+
"import": "./esm/foo.js",
|
|
127
|
+
"types": "./types/foo.d.ts"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
*/
|
|
131
|
+
exportEntry = ctx.resolveConditionExportEntry(obj, pkgJson.Type)
|
|
132
|
+
}
|
|
133
|
+
} else {
|
|
134
|
+
for _, name := range pkgJson.Exports.Keys() {
|
|
135
|
+
conditions, _ := pkgJson.Exports.Get(name)
|
|
136
|
+
if stripEntryModuleExt(name) == "./"+subPath {
|
|
137
|
+
if s, ok := conditions.(string); ok {
|
|
138
|
+
/**
|
|
139
|
+
exports: {
|
|
140
|
+
"./lib/foo.js": "./lib/foo.js"
|
|
141
|
+
}
|
|
142
|
+
*/
|
|
143
|
+
exportEntry.update(s, pkgJson.Type == "module")
|
|
144
|
+
} else if obj, ok := conditions.(npm.JSONObject); ok {
|
|
145
|
+
/**
|
|
146
|
+
exports: {
|
|
147
|
+
"./lib/foo.js": {
|
|
148
|
+
"require": "./lib/foo.js",
|
|
149
|
+
"import": "./esm/foo.js",
|
|
150
|
+
"types": "./types/foo.d.ts"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
*/
|
|
154
|
+
exportEntry = ctx.resolveConditionExportEntry(obj, pkgJson.Type)
|
|
155
|
+
}
|
|
156
|
+
break
|
|
157
|
+
} else if diff, ok := matchAsteriskExport(name, subPath); ok {
|
|
158
|
+
if s, ok := conditions.(string); ok {
|
|
159
|
+
/**
|
|
160
|
+
exports: {
|
|
161
|
+
"./lib/*": "./dist/lib/*.js",
|
|
162
|
+
}
|
|
163
|
+
*/
|
|
164
|
+
path := strings.ReplaceAll(s, "*", diff)
|
|
165
|
+
if endsWith(path, ".mjs", ".js", ".cjs") {
|
|
166
|
+
if ctx.existsPkgFile(path) {
|
|
167
|
+
exportEntry.update(path, pkgJson.Type == "module")
|
|
168
|
+
break
|
|
169
|
+
}
|
|
170
|
+
} else if p := path + ".mjs"; ctx.existsPkgFile(p) {
|
|
171
|
+
exportEntry.update(p, true)
|
|
172
|
+
break
|
|
173
|
+
} else if p := path + ".js"; ctx.existsPkgFile(p) {
|
|
174
|
+
exportEntry.update(p, pkgJson.Type == "module")
|
|
175
|
+
break
|
|
176
|
+
} else if p := path + ".cjs"; ctx.existsPkgFile(p) {
|
|
177
|
+
exportEntry.update(p, false)
|
|
178
|
+
break
|
|
179
|
+
} else if p := path + "/index.mjs"; ctx.existsPkgFile(p) {
|
|
180
|
+
exportEntry.update(p, true)
|
|
181
|
+
break
|
|
182
|
+
} else if p := path + "/index.js"; ctx.existsPkgFile(p) {
|
|
183
|
+
exportEntry.update(p, pkgJson.Type == "module")
|
|
184
|
+
break
|
|
185
|
+
} else if p := path + "/index.cjs"; ctx.existsPkgFile(p) {
|
|
186
|
+
exportEntry.update(p, false)
|
|
187
|
+
break
|
|
188
|
+
}
|
|
189
|
+
} else if obj, ok := conditions.(npm.JSONObject); ok {
|
|
190
|
+
/**
|
|
191
|
+
exports: {
|
|
192
|
+
"./lib/*": {
|
|
193
|
+
"require": ".dist/lib/dist/*.js",
|
|
194
|
+
"import": ".dist/lib/esm/*.js",
|
|
195
|
+
"types": ".dist/lib/types/*.d.ts"
|
|
196
|
+
},
|
|
197
|
+
}
|
|
198
|
+
*/
|
|
199
|
+
exportEntry = ctx.resolveConditionExportEntry(resloveAsteriskPathMapping(obj, diff), pkgJson.Type)
|
|
200
|
+
ctx.finalizeBuildEntry(&exportEntry)
|
|
201
|
+
if !exportEntry.isEmpty() {
|
|
202
|
+
break
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
if mainJs, ok := ctx.resloveSubModule(exportEntry.main); ok {
|
|
209
|
+
entry.update(mainJs, exportEntry.module)
|
|
210
|
+
}
|
|
211
|
+
if exportEntry.types != "" && ctx.existsPkgFile(exportEntry.types) {
|
|
212
|
+
entry.types = exportEntry.types
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
// check if the sub-module is a directory and has a package.json
|
|
217
|
+
var rawInfo npm.PackageJSONRaw
|
|
218
|
+
if utils.ParseJSONFile(path.Join(ctx.wd, "node_modules", ctx.esmPath.PkgName, subPath, "package.json"), &rawInfo) == nil {
|
|
219
|
+
p := rawInfo.ToNpmPackage()
|
|
220
|
+
if entry.main == "" {
|
|
221
|
+
if p.Module != "" && ctx.existsPkgFile(subPath, p.Module) {
|
|
222
|
+
entry.update("./"+path.Join(subPath, p.Module), true)
|
|
223
|
+
} else if p.Main != "" && ctx.existsPkgFile(subPath, p.Main) {
|
|
224
|
+
entry.update("./"+path.Join(subPath, p.Main), p.Type == "module")
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
if entry.types == "" {
|
|
228
|
+
if p.Types != "" && ctx.existsPkgFile(subPath, p.Types) {
|
|
229
|
+
entry.types = "./" + path.Join(subPath, p.Types)
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// lookup entry from the sub-module directory if it's not defined in `package.json`
|
|
235
|
+
if entry.main == "" {
|
|
236
|
+
for _, ext := range []string{"mjs", "js", "cjs", "mts", "ts", "tsx", "cts"} {
|
|
237
|
+
isModule := ext == "mjs" || ext == "mts" || ext == "ts" || (ext == "js" && pkgJson.Type == "module")
|
|
238
|
+
if filename := "./" + subPath + "." + ext; ctx.existsPkgFile(filename) {
|
|
239
|
+
entry.update(filename, isModule)
|
|
240
|
+
break
|
|
241
|
+
} else if filename := "./" + subPath + "/index." + ext; ctx.existsPkgFile(filename) {
|
|
242
|
+
entry.update(filename, isModule)
|
|
243
|
+
break
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
if entry.main == "" && len(ctx.pkgJson.Imports) > 0 {
|
|
249
|
+
if v, ok := ctx.pkgJson.Imports[ctx.pkgJson.PkgName+"/*"]; ok {
|
|
250
|
+
if s, ok := v.(string); ok && strings.HasSuffix(s, "/*") {
|
|
251
|
+
for _, ext := range []string{"mjs", "js", "cjs", "mts", "ts", "tsx", "cts"} {
|
|
252
|
+
isModule := ext == "mjs" || ext == "mts" || ext == "ts" || (ext == "js" && pkgJson.Type == "module")
|
|
253
|
+
if filename := strings.TrimSuffix(s, "*") + subPath + "." + ext; ctx.existsPkgFile(filename) {
|
|
254
|
+
entry.update(filename, isModule)
|
|
255
|
+
break
|
|
256
|
+
} else if filename := strings.TrimSuffix(s, "*") + subPath + "/index." + ext; ctx.existsPkgFile(filename) {
|
|
257
|
+
entry.update(filename, isModule)
|
|
258
|
+
break
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
// lookup entry main from `src` directory
|
|
266
|
+
if entry.main == "" && esm.GhPrefix {
|
|
267
|
+
for _, ext := range []string{"mts", "ts", "mjs", "js", "tsx", "cts", "cjs"} {
|
|
268
|
+
isModule := ext != "cjs" && ext != "cts"
|
|
269
|
+
if filename := "./src/" + subPath + "/index." + ext; ctx.existsPkgFile(filename) {
|
|
270
|
+
entry.update(filename, isModule)
|
|
271
|
+
break
|
|
272
|
+
} else if filename := "./" + subPath + "/src/index." + ext; ctx.existsPkgFile(filename) {
|
|
273
|
+
entry.update(filename, isModule)
|
|
274
|
+
break
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
if entry.types == "" {
|
|
280
|
+
if entry.main != "" && ctx.existsPkgFile(stripModuleExt(entry.main)+".d.mts") {
|
|
281
|
+
entry.types = stripModuleExt(entry.main) + ".d.mts"
|
|
282
|
+
} else if entry.main != "" && ctx.existsPkgFile(stripModuleExt(entry.main)+".d.ts") {
|
|
283
|
+
entry.types = stripModuleExt(entry.main) + ".d.ts"
|
|
284
|
+
} else if entry.main != "" && ctx.existsPkgFile(stripModuleExt(entry.main)+".d.cts") {
|
|
285
|
+
entry.types = stripModuleExt(entry.main) + ".d.cts"
|
|
286
|
+
} else if ctx.existsPkgFile(subPath + ".d.mts") {
|
|
287
|
+
entry.types = "./" + subPath + ".d.mts"
|
|
288
|
+
} else if ctx.existsPkgFile(subPath + ".d.ts") {
|
|
289
|
+
entry.types = "./" + subPath + ".d.ts"
|
|
290
|
+
} else if ctx.existsPkgFile(subPath + ".d.cts") {
|
|
291
|
+
entry.types = "./" + subPath + ".d.cts"
|
|
292
|
+
} else if ctx.existsPkgFile(subPath, "index.d.mts") {
|
|
293
|
+
entry.types = "./" + subPath + "/index.d.mts"
|
|
294
|
+
} else if ctx.existsPkgFile(subPath, "index.d.ts") {
|
|
295
|
+
entry.types = "./" + subPath + "/index.d.ts"
|
|
296
|
+
} else if ctx.existsPkgFile(subPath, "index.d.cts") {
|
|
297
|
+
entry.types = "./" + subPath + "/index.d.cts"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
} else {
|
|
301
|
+
if pkgJson.Module != "" && ctx.existsPkgFile(pkgJson.Module) {
|
|
302
|
+
entry.update(pkgJson.Module, true)
|
|
303
|
+
} else if pkgJson.Main != "" {
|
|
304
|
+
entry.update(pkgJson.Main, pkgJson.Type == "module")
|
|
305
|
+
}
|
|
306
|
+
if pkgJson.Types != "" {
|
|
307
|
+
entry.types = normalizeEntryPath(pkgJson.Types)
|
|
308
|
+
}
|
|
309
|
+
if len(pkgJson.Browser) > 0 && ctx.isBrowserTarget() {
|
|
310
|
+
if path, ok := pkgJson.Browser["."]; ok && ctx.existsPkgFile(path) {
|
|
311
|
+
entry.update(path, pkgJson.Type == "module")
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
if exports := pkgJson.Exports; exports.Len() > 0 {
|
|
316
|
+
exportEntry := BuildEntry{}
|
|
317
|
+
v, ok := exports.Get(".")
|
|
318
|
+
if ok {
|
|
319
|
+
if s, ok := v.(string); ok {
|
|
320
|
+
/**
|
|
321
|
+
exports: {
|
|
322
|
+
".": "./index.js"
|
|
323
|
+
}
|
|
324
|
+
*/
|
|
325
|
+
exportEntry.update(s, pkgJson.Type == "module")
|
|
326
|
+
} else if obj, ok := v.(npm.JSONObject); ok {
|
|
327
|
+
/**
|
|
328
|
+
exports: {
|
|
329
|
+
".": {
|
|
330
|
+
"require": "./cjs/index.js",
|
|
331
|
+
"import": "./esm/index.js"
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
*/
|
|
335
|
+
exportEntry = ctx.resolveConditionExportEntry(obj, pkgJson.Type)
|
|
336
|
+
} else if arr, ok := v.([]any); ok {
|
|
337
|
+
/**
|
|
338
|
+
exports: {
|
|
339
|
+
".": ["./cjs/index.js", "./esm/index.js"]
|
|
340
|
+
}
|
|
341
|
+
*/
|
|
342
|
+
a0 := arr[0]
|
|
343
|
+
if s, ok := a0.(string); ok {
|
|
344
|
+
exportEntry.update(s, pkgJson.Type == "module")
|
|
345
|
+
} else if obj, ok := a0.(npm.JSONObject); ok {
|
|
346
|
+
exportEntry = ctx.resolveConditionExportEntry(obj, pkgJson.Type)
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
} else {
|
|
350
|
+
/**
|
|
351
|
+
exports: {
|
|
352
|
+
"require": "./cjs/index.js",
|
|
353
|
+
"import": "./esm/index.js"
|
|
354
|
+
}
|
|
355
|
+
*/
|
|
356
|
+
exportEntry = ctx.resolveConditionExportEntry(exports, pkgJson.Type)
|
|
357
|
+
}
|
|
358
|
+
if exportEntry.main != "" && ctx.existsPkgFile(exportEntry.main) {
|
|
359
|
+
entry.update(exportEntry.main, exportEntry.module)
|
|
360
|
+
}
|
|
361
|
+
if exportEntry.types != "" && ctx.existsPkgFile(exportEntry.types) {
|
|
362
|
+
entry.types = exportEntry.types
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
// lookup entry from the package directory if it's not defined in `package.json`
|
|
367
|
+
if entry.main == "" {
|
|
368
|
+
if ctx.existsPkgFile("index.mjs") {
|
|
369
|
+
entry.update("./index.mjs", true)
|
|
370
|
+
} else if ctx.existsPkgFile("index.js") {
|
|
371
|
+
entry.update("./index.js", pkgJson.Type == "module")
|
|
372
|
+
} else if ctx.existsPkgFile("index.cjs") {
|
|
373
|
+
entry.update("./index.cjs", false)
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
// lookup entry main from `src` directory
|
|
378
|
+
if entry.main == "" && esm.GhPrefix {
|
|
379
|
+
for _, ext := range []string{"mts", "ts", "mjs", "js", "tsx", "cts", "cjs"} {
|
|
380
|
+
filename := "./src/index." + ext
|
|
381
|
+
if ctx.existsPkgFile(filename) {
|
|
382
|
+
entry.update(filename, ext != "cjs" && ext != "cts")
|
|
383
|
+
break
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
if entry.types == "" {
|
|
389
|
+
if ctx.existsPkgFile("index.d.mts") {
|
|
390
|
+
entry.types = "./index.d.mts"
|
|
391
|
+
} else if ctx.existsPkgFile("index.d.ts") {
|
|
392
|
+
entry.types = "./index.d.ts"
|
|
393
|
+
} else if ctx.existsPkgFile("index.d.cts") {
|
|
394
|
+
entry.types = "./index.d.cts"
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
if entry.types == "" && entry.main != "" {
|
|
399
|
+
if ctx.existsPkgFile(stripModuleExt(entry.main) + ".d.mts") {
|
|
400
|
+
entry.types = stripModuleExt(entry.main) + ".d.mts"
|
|
401
|
+
} else if ctx.existsPkgFile(stripModuleExt(entry.main) + ".d.ts") {
|
|
402
|
+
entry.types = stripModuleExt(entry.main) + ".d.ts"
|
|
403
|
+
} else if ctx.existsPkgFile(stripModuleExt(entry.main) + ".d.cts") {
|
|
404
|
+
entry.types = stripModuleExt(entry.main) + ".d.cts"
|
|
405
|
+
} else if stripModuleExt(path.Base(entry.main)) == "index" {
|
|
406
|
+
dir, _ := utils.SplitByLastByte(entry.main, '/')
|
|
407
|
+
if ctx.existsPkgFile(dir, "index.d.mts") {
|
|
408
|
+
entry.types = dir + "/index.d.mts"
|
|
409
|
+
} else if ctx.existsPkgFile(dir, "index.d.ts") {
|
|
410
|
+
entry.types = dir + "/index.d.ts"
|
|
411
|
+
} else if ctx.existsPkgFile(dir, "index.d.cts") {
|
|
412
|
+
entry.types = dir + "/index.d.cts"
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
// resolve entry main from `browser` field if it's defined
|
|
419
|
+
if len(pkgJson.Browser) > 0 && ctx.isBrowserTarget() {
|
|
420
|
+
if entry.main != "" {
|
|
421
|
+
if path, ok := pkgJson.Browser[entry.main]; ok && ctx.existsPkgFile(path) {
|
|
422
|
+
entry.update(path, pkgJson.Type == "module")
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
// resolve types from `typesVersions` field if it's defined
|
|
428
|
+
// see https://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html#version-selection-with-typesversions
|
|
429
|
+
if typesVersions := pkgJson.TypesVersions; len(typesVersions) > 0 && entry.types != "" {
|
|
430
|
+
versions := make(sort.StringSlice, len(typesVersions))
|
|
431
|
+
i := 0
|
|
432
|
+
for c := range typesVersions {
|
|
433
|
+
if strings.HasPrefix(c, ">") {
|
|
434
|
+
versions[i] = c
|
|
435
|
+
i++
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
versions = versions[:i]
|
|
439
|
+
if versions.Len() > 0 {
|
|
440
|
+
versions.Sort()
|
|
441
|
+
latestVersion := typesVersions[versions[versions.Len()-1]]
|
|
442
|
+
if mapping, ok := latestVersion.(map[string]any); ok {
|
|
443
|
+
var paths any
|
|
444
|
+
var matched bool
|
|
445
|
+
var exact bool
|
|
446
|
+
var suffix string
|
|
447
|
+
types := entry.types
|
|
448
|
+
paths, matched = mapping[entry.types]
|
|
449
|
+
if !matched {
|
|
450
|
+
// try to match the dts wihout leading "./"
|
|
451
|
+
paths, matched = mapping[strings.TrimPrefix(types, "./")]
|
|
452
|
+
}
|
|
453
|
+
if matched {
|
|
454
|
+
exact = true
|
|
455
|
+
}
|
|
456
|
+
if !matched {
|
|
457
|
+
for key, value := range mapping {
|
|
458
|
+
if strings.HasSuffix(key, "/*") {
|
|
459
|
+
key = normalizeEntryPath(key)
|
|
460
|
+
if strings.HasPrefix(types, strings.TrimSuffix(key, "/*")) {
|
|
461
|
+
paths = value
|
|
462
|
+
matched = true
|
|
463
|
+
suffix = strings.TrimPrefix(types, strings.TrimSuffix(key, "*"))
|
|
464
|
+
break
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
if !matched {
|
|
470
|
+
paths, matched = mapping["*"]
|
|
471
|
+
}
|
|
472
|
+
if matched {
|
|
473
|
+
if a, ok := paths.([]any); ok && len(a) > 0 {
|
|
474
|
+
if path, ok := a[0].(string); ok {
|
|
475
|
+
path = normalizeEntryPath(path)
|
|
476
|
+
if exact {
|
|
477
|
+
entry.types = path
|
|
478
|
+
} else {
|
|
479
|
+
prefix, _ := utils.SplitByLastByte(path, '*')
|
|
480
|
+
if suffix != "" {
|
|
481
|
+
entry.types = prefix + suffix
|
|
482
|
+
} else if after, ok0 := strings.CutPrefix(types, prefix); ok0 {
|
|
483
|
+
diff := after
|
|
484
|
+
entry.types = strings.ReplaceAll(path, "*", diff)
|
|
485
|
+
} else {
|
|
486
|
+
entry.types = prefix + types[2:]
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
ctx.finalizeBuildEntry(&entry)
|
|
497
|
+
return
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
// normalizes the build entry
|
|
501
|
+
func (ctx *BuildContext) finalizeBuildEntry(entry *BuildEntry) {
|
|
502
|
+
if entry.main != "" {
|
|
503
|
+
entry.main = normalizeEntryPath(entry.main)
|
|
504
|
+
if !ctx.existsPkgFile(entry.main) {
|
|
505
|
+
preferedExt := ".cjs"
|
|
506
|
+
if entry.module {
|
|
507
|
+
preferedExt = ".mjs"
|
|
508
|
+
}
|
|
509
|
+
if ctx.existsPkgFile(entry.main + preferedExt) {
|
|
510
|
+
entry.main = entry.main + preferedExt
|
|
511
|
+
} else if ctx.existsPkgFile(entry.main + ".js") {
|
|
512
|
+
entry.main = entry.main + ".js"
|
|
513
|
+
} else if ctx.existsPkgFile(entry.main, "index"+preferedExt) {
|
|
514
|
+
entry.main = entry.main + "/index" + preferedExt
|
|
515
|
+
} else if ctx.existsPkgFile(entry.main, "index.js") {
|
|
516
|
+
entry.main = entry.main + "/index.js"
|
|
517
|
+
} else {
|
|
518
|
+
entry.main = ""
|
|
519
|
+
}
|
|
520
|
+
} else if !entry.module && endsWith(entry.main, ".js", ".ts") {
|
|
521
|
+
// check if the cjs entry is an ESM
|
|
522
|
+
isESM, _, err := validateJSFile(path.Join(ctx.wd, "node_modules", ctx.esmPath.PkgName, entry.main))
|
|
523
|
+
if err == nil {
|
|
524
|
+
entry.module = isESM
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
if entry.types != "" {
|
|
530
|
+
entry.types = normalizeEntryPath(entry.types)
|
|
531
|
+
if endsWith(entry.types, ".js", ".mjs", ".cjs") {
|
|
532
|
+
bearName := stripModuleExt(entry.types)
|
|
533
|
+
if ctx.existsPkgFile(bearName + ".d.mts") {
|
|
534
|
+
entry.types = bearName + ".d.mts"
|
|
535
|
+
} else if ctx.existsPkgFile(bearName + ".d.ts") {
|
|
536
|
+
entry.types = bearName + ".d.ts"
|
|
537
|
+
} else if ctx.existsPkgFile(bearName + ".d.cts") {
|
|
538
|
+
entry.types = bearName + ".d.cts"
|
|
539
|
+
} else {
|
|
540
|
+
entry.types = ""
|
|
541
|
+
}
|
|
542
|
+
} else if strings.HasSuffix(entry.types, ".d") {
|
|
543
|
+
if ctx.existsPkgFile(entry.types + ".mts") {
|
|
544
|
+
entry.types += ".mts"
|
|
545
|
+
} else if ctx.existsPkgFile(entry.types + ".ts") {
|
|
546
|
+
entry.types += ".ts"
|
|
547
|
+
} else if ctx.existsPkgFile(entry.types + ".cts") {
|
|
548
|
+
entry.types += ".cts"
|
|
549
|
+
} else {
|
|
550
|
+
entry.types = ""
|
|
551
|
+
}
|
|
552
|
+
} else if !endsWith(entry.types, ".d.ts", ".d.mts", ".d.cts") {
|
|
553
|
+
if ctx.existsPkgFile(entry.types + ".d.mts") {
|
|
554
|
+
entry.types = entry.types + ".d.mts"
|
|
555
|
+
} else if ctx.existsPkgFile(entry.types + ".d.ts") {
|
|
556
|
+
entry.types = entry.types + ".d.ts"
|
|
557
|
+
} else if ctx.existsPkgFile(entry.types + ".d.cts") {
|
|
558
|
+
entry.types = entry.types + ".d.cts"
|
|
559
|
+
} else if ctx.existsPkgFile(entry.types, "index.d.mts") {
|
|
560
|
+
entry.types = entry.types + "/index.d.mts"
|
|
561
|
+
} else if ctx.existsPkgFile(entry.types, "index.d.ts") {
|
|
562
|
+
entry.types = entry.types + "/index.d.ts"
|
|
563
|
+
} else if ctx.existsPkgFile(entry.types, "index.d.cts") {
|
|
564
|
+
entry.types = entry.types + "/index.d.cts"
|
|
565
|
+
} else {
|
|
566
|
+
entry.types = ""
|
|
567
|
+
}
|
|
568
|
+
} else if !ctx.existsPkgFile(entry.types) {
|
|
569
|
+
entry.types = ""
|
|
570
|
+
}
|
|
571
|
+
} else if ext := path.Ext(entry.main); ext == ".mts" || ext == ".ts" || ext == ".tsx" || ext == ".cts" {
|
|
572
|
+
// entry.types = strings.TrimSuffix(entry.main, ext) + ".d" + strings.TrimSuffix(ext,"x")
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
// see https://nodejs.org/api/packages.html#nested-conditions
|
|
577
|
+
func (ctx *BuildContext) resolveConditionExportEntry(conditions npm.JSONObject, preferedModuleType string) (entry BuildEntry) {
|
|
578
|
+
if preferedModuleType == "types" {
|
|
579
|
+
for _, conditionName := range []string{"module", "import", "es2015", "default", "require"} {
|
|
580
|
+
condition, ok := conditions.Get(conditionName)
|
|
581
|
+
if ok {
|
|
582
|
+
if s, ok := condition.(string); ok {
|
|
583
|
+
if entry.types == "" || endsWith(s, ".d.ts", ".d.mts", ".d.cts", ".d") {
|
|
584
|
+
entry.types = s
|
|
585
|
+
}
|
|
586
|
+
} else if obj, ok := condition.(npm.JSONObject); ok {
|
|
587
|
+
entry = ctx.resolveConditionExportEntry(obj, "types")
|
|
588
|
+
}
|
|
589
|
+
break
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
return
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
applyCondition := func(conditionName string) bool {
|
|
596
|
+
condition, ok := conditions.Get(conditionName)
|
|
597
|
+
if ok {
|
|
598
|
+
if s, ok := condition.(string); ok {
|
|
599
|
+
entry.update(s, preferedModuleType == "module")
|
|
600
|
+
return true
|
|
601
|
+
} else if obj, ok := condition.(npm.JSONObject); ok {
|
|
602
|
+
entry = ctx.resolveConditionExportEntry(obj, preferedModuleType)
|
|
603
|
+
return entry.main != ""
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
return false
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
var conditionFound bool
|
|
610
|
+
|
|
611
|
+
if ctx.isBrowserTarget() {
|
|
612
|
+
conditionName := "browser"
|
|
613
|
+
// [workaround] fix astring entry in browser
|
|
614
|
+
if ctx.esmPath.PkgName == "astring" {
|
|
615
|
+
conditionName = "import"
|
|
616
|
+
}
|
|
617
|
+
conditionFound = applyCondition(conditionName)
|
|
618
|
+
} else if ctx.isDenoTarget() {
|
|
619
|
+
conditionName := "deno"
|
|
620
|
+
// [workaround] to support solid-js/ssr in Deno, use `node` condition for < 1.6.0
|
|
621
|
+
if ctx.esmPath.PkgName == "solid-js" && semverLessThan(ctx.esmPath.PkgVersion, "1.6.0") {
|
|
622
|
+
conditionName = "node"
|
|
623
|
+
}
|
|
624
|
+
conditionFound = applyCondition(conditionName)
|
|
625
|
+
} else if ctx.target == "node" {
|
|
626
|
+
conditionFound = applyCondition("node")
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
if len(ctx.args.Conditions) > 0 {
|
|
630
|
+
for _, conditionName := range ctx.args.Conditions {
|
|
631
|
+
conditionFound = applyCondition(conditionName)
|
|
632
|
+
if conditionFound {
|
|
633
|
+
break
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
} else if ctx.dev {
|
|
637
|
+
conditionFound = applyCondition("development")
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
LOOP:
|
|
641
|
+
for _, conditionName := range conditions.Keys() {
|
|
642
|
+
condition, _ := conditions.Get(conditionName)
|
|
643
|
+
module := false
|
|
644
|
+
prefered := ""
|
|
645
|
+
switch conditionName {
|
|
646
|
+
case "import", "module", "es2015":
|
|
647
|
+
module = true
|
|
648
|
+
prefered = "module"
|
|
649
|
+
case "require":
|
|
650
|
+
module = false
|
|
651
|
+
prefered = "commonjs"
|
|
652
|
+
case "default":
|
|
653
|
+
prefered = preferedModuleType
|
|
654
|
+
if prefered != "module" {
|
|
655
|
+
if s, ok := condition.(string); ok && strings.HasSuffix(s, ".mjs") {
|
|
656
|
+
prefered = "module"
|
|
657
|
+
} else if _, ok := conditions.Get("require"); ok {
|
|
658
|
+
prefered = "module"
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
module = prefered == "module"
|
|
662
|
+
case "types", "typings":
|
|
663
|
+
if s, ok := condition.(string); ok {
|
|
664
|
+
if entry.types == "" || (!strings.HasSuffix(entry.types, ".d.mts") && strings.HasSuffix(s, ".d.mts")) {
|
|
665
|
+
entry.types = s
|
|
666
|
+
}
|
|
667
|
+
} else if obj, ok := condition.(npm.JSONObject); ok {
|
|
668
|
+
e := ctx.resolveConditionExportEntry(obj, "types")
|
|
669
|
+
if e.types != "" {
|
|
670
|
+
if entry.types == "" || (!strings.HasSuffix(entry.types, ".d.mts") && strings.HasSuffix(e.types, ".d.mts")) {
|
|
671
|
+
entry.types = e.types
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
continue LOOP
|
|
676
|
+
default:
|
|
677
|
+
// skip unknown condition
|
|
678
|
+
continue LOOP
|
|
679
|
+
}
|
|
680
|
+
if entry.main == "" || (!entry.module && module && !conditionFound) {
|
|
681
|
+
if s, ok := condition.(string); ok {
|
|
682
|
+
entry.update(s, module)
|
|
683
|
+
} else if obj, ok := condition.(npm.JSONObject); ok {
|
|
684
|
+
e := ctx.resolveConditionExportEntry(obj, prefered)
|
|
685
|
+
if e.main != "" {
|
|
686
|
+
entry.update(e.main, e.module)
|
|
687
|
+
}
|
|
688
|
+
if e.types != "" {
|
|
689
|
+
entry.types = e.types
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
return
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
func (ctx *BuildContext) resolveExternalModule(specifier string, kind esbuild.ResolveKind, withTypeJSON bool, analyzeMode bool) (resolvedPath string, sideEffects esbuild.SideEffects, err error) {
|
|
699
|
+
if strings.HasPrefix(specifier, "file:") {
|
|
700
|
+
err = errors.New("file: protocol is not supported: " + specifier)
|
|
701
|
+
return
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
// return the specifier directly in analyze mode
|
|
705
|
+
if analyzeMode {
|
|
706
|
+
resolvedPath = specifier
|
|
707
|
+
return
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
defer func() {
|
|
711
|
+
if err == nil && !withTypeJSON {
|
|
712
|
+
resolvedPathFull := resolvedPath
|
|
713
|
+
// use relative path for sub-module of current package
|
|
714
|
+
if pkgJson := ctx.pkgJson; specifier == pkgJson.Name || strings.HasPrefix(specifier, pkgJson.Name+"/") {
|
|
715
|
+
rp, err := relPath(path.Dir(ctx.Path()), resolvedPath)
|
|
716
|
+
if err == nil {
|
|
717
|
+
resolvedPath = rp
|
|
718
|
+
}
|
|
719
|
+
}
|
|
720
|
+
if kind == esbuild.ResolveJSRequireCall {
|
|
721
|
+
ctx.cjsRequires = append(ctx.cjsRequires, [3]string{specifier, resolvedPathFull, resolvedPath})
|
|
722
|
+
resolvedPath = specifier
|
|
723
|
+
} else if kind == esbuild.ResolveJSImportStatement && !withTypeJSON {
|
|
724
|
+
ctx.esmImports = append(ctx.esmImports, [2]string{resolvedPathFull, resolvedPath})
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
}()
|
|
728
|
+
|
|
729
|
+
// if it's a http module
|
|
730
|
+
if isHttpSpecifier(specifier) {
|
|
731
|
+
resolvedPath = specifier
|
|
732
|
+
return
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
// check `?external`
|
|
736
|
+
packageName := toPackageName(specifier)
|
|
737
|
+
if ctx.externalAll || ctx.args.External.Has(packageName) || isPackageInExternalNamespace(packageName, ctx.args.External) {
|
|
738
|
+
resolvedPath = specifier
|
|
739
|
+
return
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
// if it's a node builtin module
|
|
743
|
+
if isNodeBuiltinSpecifier(specifier) {
|
|
744
|
+
if ctx.externalAll || ctx.target == "node" || ctx.target == "denonext" || ctx.args.External.Has(specifier) {
|
|
745
|
+
resolvedPath = specifier
|
|
746
|
+
} else if ctx.target == "deno" {
|
|
747
|
+
resolvedPath = fmt.Sprintf("https://deno.land/std@0.177.1/node/%s.ts", specifier[5:])
|
|
748
|
+
} else {
|
|
749
|
+
resolvedPath = fmt.Sprintf("/node/%s.mjs", specifier[5:])
|
|
750
|
+
}
|
|
751
|
+
return
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
// if it's `main` entry of current package
|
|
755
|
+
// Also handles scoped fork self-reference: e.g. `@scope/three` source importing `three`
|
|
756
|
+
// when `three` is not declared as a dependency — treat as self-reference.
|
|
757
|
+
pkgJson := ctx.pkgJson
|
|
758
|
+
isSelfRef := specifier == pkgJson.Name || specifier == pkgJson.PkgName
|
|
759
|
+
if !isSelfRef && strings.HasPrefix(pkgJson.Name, "@") {
|
|
760
|
+
_, baseName := utils.SplitByFirstByte(pkgJson.Name[1:], '/')
|
|
761
|
+
specPkgName := toPackageName(specifier)
|
|
762
|
+
if specPkgName == baseName {
|
|
763
|
+
_, inDeps := pkgJson.Dependencies[specPkgName]
|
|
764
|
+
_, inPeerDeps := pkgJson.PeerDependencies[specPkgName]
|
|
765
|
+
if !inDeps && !inPeerDeps {
|
|
766
|
+
isSelfRef = true
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
if isSelfRef {
|
|
771
|
+
esmPath := EsmPath{
|
|
772
|
+
GhPrefix: ctx.esmPath.GhPrefix,
|
|
773
|
+
PrPrefix: ctx.esmPath.PrPrefix,
|
|
774
|
+
PkgName: pkgJson.Name,
|
|
775
|
+
PkgVersion: pkgJson.Version,
|
|
776
|
+
}
|
|
777
|
+
if ctx.pkgJson.SideEffectsFalse {
|
|
778
|
+
sideEffects = esbuild.SideEffectsFalse
|
|
779
|
+
} else if ctx.pkgJson.SideEffects.Len() > 0 {
|
|
780
|
+
sideEffects = esbuild.SideEffectsFalse
|
|
781
|
+
entry := ctx.resolveEntry(esmPath)
|
|
782
|
+
if entry.main != "" && !(ctx.pkgJson.SideEffects.Has(entry.main) || ctx.pkgJson.SideEffects.Has(strings.TrimPrefix(entry.main, "./"))) {
|
|
783
|
+
sideEffects = esbuild.SideEffectsTrue
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
resolvedPath = ctx.getImportPath(esmPath, ctx.getBuildArgsPrefix(false), ctx.externalAll)
|
|
787
|
+
return
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
// if it's a sub-module of current package
|
|
791
|
+
// Also handles scoped fork sub-paths: e.g. `@scope/three` source importing `three/tsl`
|
|
792
|
+
{
|
|
793
|
+
subPath, ok := strings.CutPrefix(specifier, ctx.pkgJson.Name+"/")
|
|
794
|
+
if !ok {
|
|
795
|
+
subPath, ok = strings.CutPrefix(specifier, ctx.pkgJson.PkgName+"/")
|
|
796
|
+
}
|
|
797
|
+
if !ok && strings.HasPrefix(ctx.pkgJson.Name, "@") {
|
|
798
|
+
_, baseName := utils.SplitByFirstByte(ctx.pkgJson.Name[1:], '/')
|
|
799
|
+
specPkgName := toPackageName(specifier)
|
|
800
|
+
if specPkgName == baseName {
|
|
801
|
+
_, inDeps := ctx.pkgJson.Dependencies[specPkgName]
|
|
802
|
+
_, inPeerDeps := ctx.pkgJson.PeerDependencies[specPkgName]
|
|
803
|
+
if !inDeps && !inPeerDeps {
|
|
804
|
+
subPath, ok = strings.CutPrefix(specifier, baseName+"/")
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
if ok {
|
|
809
|
+
subModule := EsmPath{
|
|
810
|
+
GhPrefix: ctx.esmPath.GhPrefix,
|
|
811
|
+
PrPrefix: ctx.esmPath.PrPrefix,
|
|
812
|
+
PkgName: ctx.esmPath.PkgName,
|
|
813
|
+
PkgVersion: ctx.esmPath.PkgVersion,
|
|
814
|
+
SubPath: stripEntryModuleExt(subPath),
|
|
815
|
+
}
|
|
816
|
+
if ctx.pkgJson.SideEffectsFalse {
|
|
817
|
+
sideEffects = esbuild.SideEffectsFalse
|
|
818
|
+
} else if ctx.pkgJson.SideEffects.Len() > 0 {
|
|
819
|
+
sideEffects = esbuild.SideEffectsFalse
|
|
820
|
+
entry := ctx.resolveEntry(subModule)
|
|
821
|
+
if entry.main != "" && !(ctx.pkgJson.SideEffects.Has(entry.main) || ctx.pkgJson.SideEffects.Has(strings.TrimPrefix(entry.main, "./"))) {
|
|
822
|
+
sideEffects = esbuild.SideEffectsTrue
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
if withTypeJSON {
|
|
826
|
+
resolvedPath = "/" + subModule.String()
|
|
827
|
+
if !strings.HasSuffix(subPath, ".json") {
|
|
828
|
+
entry := ctx.resolveEntry(subModule)
|
|
829
|
+
if entry.main != "" {
|
|
830
|
+
resolvedPath = "/" + subModule.PackageId() + entry.main[1:]
|
|
831
|
+
}
|
|
832
|
+
}
|
|
833
|
+
// esbuild removes the `{ type: "json" }` when it's a dynamic import
|
|
834
|
+
resolvedPath += "?module"
|
|
835
|
+
} else {
|
|
836
|
+
resolvedPath = ctx.getImportPath(subModule, ctx.getBuildArgsPrefix(false), ctx.externalAll)
|
|
837
|
+
if ctx.bundleMode == BundleFalse {
|
|
838
|
+
n, e := utils.SplitByLastByte(resolvedPath, '.')
|
|
839
|
+
resolvedPath = n + ".nobundle." + e
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
return
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
var pkgName string
|
|
847
|
+
var pkgVersion string
|
|
848
|
+
var subPath string
|
|
849
|
+
|
|
850
|
+
// jsr dependency
|
|
851
|
+
if strings.HasPrefix(specifier, "jsr:") {
|
|
852
|
+
pkgName, pkgVersion, subPath = splitEsmPath(specifier[4:])
|
|
853
|
+
if !strings.HasPrefix(pkgName, "@") || !strings.ContainsRune(pkgName, '/') {
|
|
854
|
+
err = errors.New("invalid `jsr:` dependency:" + specifier)
|
|
855
|
+
return
|
|
856
|
+
}
|
|
857
|
+
scope, name := utils.SplitByFirstByte(pkgName, '/')
|
|
858
|
+
pkgName = "@jsr/" + scope[1:] + "__" + name
|
|
859
|
+
} else {
|
|
860
|
+
pkgName, pkgVersion, subPath = splitEsmPath(specifier)
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
if pkgVersion == "" {
|
|
864
|
+
if pkgName == ctx.esmPath.PkgName {
|
|
865
|
+
pkgVersion = ctx.esmPath.PkgVersion
|
|
866
|
+
} else if pkgVerson, ok := ctx.args.Deps[pkgName]; ok {
|
|
867
|
+
pkgVersion = pkgVerson
|
|
868
|
+
} else if v, ok := ctx.pkgJson.Dependencies[pkgName]; ok {
|
|
869
|
+
pkgVersion = strings.TrimSpace(v)
|
|
870
|
+
} else if v, ok := ctx.pkgJson.PeerDependencies[pkgName]; ok {
|
|
871
|
+
pkgVersion = strings.TrimSpace(v)
|
|
872
|
+
} else {
|
|
873
|
+
pkgVersion = "latest"
|
|
874
|
+
}
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
dep := EsmPath{
|
|
878
|
+
PkgName: pkgName,
|
|
879
|
+
PkgVersion: pkgVersion,
|
|
880
|
+
SubPath: stripEntryModuleExt(subPath),
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
// resolve alias in dependencies
|
|
884
|
+
// e.g. "@mark/html": "npm:@jsr/mark__html@^1.0.0"
|
|
885
|
+
// e.g. "tslib": "git+https://github.com/microsoft/tslib.git#v2.3.0"
|
|
886
|
+
// e.g. "react": "github:facebook/react#v18.2.0"
|
|
887
|
+
p, err := npm.ResolveDependencyVersion(pkgVersion)
|
|
888
|
+
if err != nil {
|
|
889
|
+
resolvedPath = fmt.Sprintf("/error.js?type=%s&name=%s&importer=%s", strings.ReplaceAll(err.Error(), " ", "-"), pkgName, ctx.esmPath.String())
|
|
890
|
+
return
|
|
891
|
+
}
|
|
892
|
+
if p.Url != "" {
|
|
893
|
+
resolvedPath = p.Url
|
|
894
|
+
return
|
|
895
|
+
}
|
|
896
|
+
if p.Name != "" {
|
|
897
|
+
dep.GhPrefix = p.Github
|
|
898
|
+
dep.PrPrefix = p.PkgPrNew
|
|
899
|
+
dep.PkgName = p.Name
|
|
900
|
+
dep.PkgVersion = p.Version
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
// fetch the latest tag as the version of the repository
|
|
904
|
+
if dep.GhPrefix && dep.PkgVersion == "" {
|
|
905
|
+
var refs []GitRef
|
|
906
|
+
refs, err = listGhRepoRefsContext(ctx.Context(), fmt.Sprintf("https://github.com/%s", dep.PkgName))
|
|
907
|
+
if err != nil {
|
|
908
|
+
return
|
|
909
|
+
}
|
|
910
|
+
for _, ref := range refs {
|
|
911
|
+
if ref.Ref == "HEAD" {
|
|
912
|
+
dep.PkgVersion = ref.Sha[:16]
|
|
913
|
+
break
|
|
914
|
+
}
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
// [workaround] force the dependency version of `react` equals to react-dom
|
|
919
|
+
if ctx.esmPath.PkgName == "react-dom" && dep.PkgName == "react" {
|
|
920
|
+
dep.PkgVersion = ctx.esmPath.PkgVersion
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
if withTypeJSON {
|
|
924
|
+
resolvedPath = "/" + dep.String()
|
|
925
|
+
if subPath == "" || !strings.HasSuffix(subPath, ".json") {
|
|
926
|
+
b := &BuildContext{
|
|
927
|
+
npmrc: ctx.npmrc,
|
|
928
|
+
logger: ctx.logger,
|
|
929
|
+
esmPath: dep,
|
|
930
|
+
ctx: ctx.ctx,
|
|
931
|
+
}
|
|
932
|
+
err = b.install()
|
|
933
|
+
if err != nil {
|
|
934
|
+
return
|
|
935
|
+
}
|
|
936
|
+
entry := b.resolveEntry(dep)
|
|
937
|
+
if entry.main != "" {
|
|
938
|
+
resolvedPath = "/" + dep.PackageId() + entry.main[1:]
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
if kind == esbuild.ResolveJSDynamicImport {
|
|
942
|
+
// esbuild removes the `{ type: "json" }` when it's a dynamic import
|
|
943
|
+
resolvedPath += "?module"
|
|
944
|
+
}
|
|
945
|
+
return
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
args := BuildArgs{
|
|
949
|
+
Alias: ctx.args.Alias,
|
|
950
|
+
Deps: ctx.args.Deps,
|
|
951
|
+
External: ctx.args.External,
|
|
952
|
+
Conditions: ctx.args.Conditions,
|
|
953
|
+
}
|
|
954
|
+
err = resolveBuildArgs(ctx.npmrc, ctx.wd, &args, dep)
|
|
955
|
+
if err != nil {
|
|
956
|
+
return
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
var exactVersion bool
|
|
960
|
+
if dep.GhPrefix {
|
|
961
|
+
exactVersion = isCommitish(dep.PkgVersion) || npm.IsExactVersion(strings.TrimPrefix(dep.PkgVersion, "v"))
|
|
962
|
+
} else if dep.PrPrefix {
|
|
963
|
+
exactVersion = true
|
|
964
|
+
} else {
|
|
965
|
+
exactVersion = npm.IsExactVersion(dep.PkgVersion)
|
|
966
|
+
}
|
|
967
|
+
if exactVersion {
|
|
968
|
+
buildArgsPrefix := ""
|
|
969
|
+
if a := encodeBuildArgs(args, false); a != "" {
|
|
970
|
+
buildArgsPrefix = "X-" + a + "/"
|
|
971
|
+
}
|
|
972
|
+
resolvedPath = ctx.getImportPath(dep, buildArgsPrefix, false)
|
|
973
|
+
return
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
resolvedPath = "/" + dep.String()
|
|
977
|
+
// workaround for es5-ext "../#/.." path
|
|
978
|
+
if dep.PkgName == "es5-ext" {
|
|
979
|
+
resolvedPath = strings.ReplaceAll(resolvedPath, "/#/", "/%23/")
|
|
980
|
+
}
|
|
981
|
+
params := []string{}
|
|
982
|
+
if len(args.Alias) > 0 {
|
|
983
|
+
var alias []string
|
|
984
|
+
for k, v := range args.Alias {
|
|
985
|
+
alias = append(alias, fmt.Sprintf("%s:%s", k, v))
|
|
986
|
+
}
|
|
987
|
+
params = append(params, "alias="+strings.Join(alias, ","))
|
|
988
|
+
}
|
|
989
|
+
if len(args.Deps) > 0 {
|
|
990
|
+
var deps sort.StringSlice
|
|
991
|
+
for n, v := range args.Deps {
|
|
992
|
+
deps = append(deps, n+"@"+v)
|
|
993
|
+
}
|
|
994
|
+
deps.Sort()
|
|
995
|
+
params = append(params, "deps="+strings.Join(deps, ","))
|
|
996
|
+
}
|
|
997
|
+
if args.External.Len() > 0 {
|
|
998
|
+
external := make(sort.StringSlice, args.External.Len())
|
|
999
|
+
for i, e := range args.External.Values() {
|
|
1000
|
+
external[i] = e
|
|
1001
|
+
}
|
|
1002
|
+
external.Sort()
|
|
1003
|
+
params = append(params, "external="+strings.Join(external, ","))
|
|
1004
|
+
}
|
|
1005
|
+
if len(args.Conditions) > 0 {
|
|
1006
|
+
conditions := make(sort.StringSlice, len(args.Conditions))
|
|
1007
|
+
copy(conditions, args.Conditions)
|
|
1008
|
+
conditions.Sort()
|
|
1009
|
+
params = append(params, "conditions="+strings.Join(conditions, ","))
|
|
1010
|
+
}
|
|
1011
|
+
if dep.SubPath != "" && strings.HasSuffix(dep.SubPath, ".json") {
|
|
1012
|
+
params = append(params, "module")
|
|
1013
|
+
} else {
|
|
1014
|
+
params = append(params, "target="+ctx.target)
|
|
1015
|
+
}
|
|
1016
|
+
if ctx.dev {
|
|
1017
|
+
params = append(params, "dev")
|
|
1018
|
+
}
|
|
1019
|
+
resolvedPath += "?" + strings.Join(params, "&")
|
|
1020
|
+
return
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
func (ctx *BuildContext) resolveDTS(entry BuildEntry) (string, error) {
|
|
1024
|
+
if entry.types != "" {
|
|
1025
|
+
return fmt.Sprintf(
|
|
1026
|
+
"/%s/%s%s",
|
|
1027
|
+
ctx.esmPath.PackageId(),
|
|
1028
|
+
ctx.getBuildArgsPrefix(true),
|
|
1029
|
+
strings.TrimPrefix(entry.types, "./"),
|
|
1030
|
+
), nil
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
if ctx.esmPath.SubPath != "" && ctx.pkgJson.Types != "" {
|
|
1034
|
+
return "", nil
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
// lookup types in @types scope
|
|
1038
|
+
if pkgJson := ctx.pkgJson; pkgJson.Types == "" && !strings.HasPrefix(pkgJson.Name, "@types/") && npm.IsExactVersion(pkgJson.Version) {
|
|
1039
|
+
versionParts := strings.Split(pkgJson.Version, ".")
|
|
1040
|
+
versions := []string{
|
|
1041
|
+
versionParts[0] + "." + versionParts[1], // major.minor
|
|
1042
|
+
versionParts[0], // major
|
|
1043
|
+
}
|
|
1044
|
+
typesPkgName := npm.ToTypesPackageName(pkgJson.Name)
|
|
1045
|
+
pkgVersion, ok := ctx.args.Deps[typesPkgName]
|
|
1046
|
+
if ok {
|
|
1047
|
+
// use the version of the `?deps` query if it exists
|
|
1048
|
+
versions = append([]string{pkgVersion}, versions...)
|
|
1049
|
+
}
|
|
1050
|
+
for _, version := range versions {
|
|
1051
|
+
p, err := ctx.npmrc.getPackageInfoContext(ctx.Context(), typesPkgName, version)
|
|
1052
|
+
if err == nil {
|
|
1053
|
+
dtsModule := EsmPath{
|
|
1054
|
+
PkgName: typesPkgName,
|
|
1055
|
+
PkgVersion: p.Version,
|
|
1056
|
+
SubPath: ctx.esmPath.SubPath,
|
|
1057
|
+
}
|
|
1058
|
+
b := &BuildContext{
|
|
1059
|
+
npmrc: ctx.npmrc,
|
|
1060
|
+
logger: ctx.logger,
|
|
1061
|
+
esmPath: dtsModule,
|
|
1062
|
+
args: ctx.args,
|
|
1063
|
+
externalAll: ctx.externalAll,
|
|
1064
|
+
target: "types",
|
|
1065
|
+
ctx: ctx.ctx,
|
|
1066
|
+
}
|
|
1067
|
+
err := b.install()
|
|
1068
|
+
if err != nil {
|
|
1069
|
+
if strings.Contains(err.Error(), " not found") {
|
|
1070
|
+
return "", nil
|
|
1071
|
+
}
|
|
1072
|
+
return "", err
|
|
1073
|
+
}
|
|
1074
|
+
dts, err := b.resolveDTS(b.resolveEntry(dtsModule))
|
|
1075
|
+
if err != nil {
|
|
1076
|
+
return "", err
|
|
1077
|
+
}
|
|
1078
|
+
if dts != "" {
|
|
1079
|
+
// use tilde semver range instead of the exact version
|
|
1080
|
+
return strings.ReplaceAll(dts, fmt.Sprintf("%s@%s", typesPkgName, p.Version), fmt.Sprintf("%s@~%s", typesPkgName, p.Version)), nil
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
return "", nil
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
func (ctx *BuildContext) getImportPath(esm EsmPath, buildArgsPrefix string, externalAll bool) string {
|
|
1090
|
+
if strings.HasSuffix(esm.SubPath, ".json") && ctx.existsPkgFile(esm.SubPath) {
|
|
1091
|
+
return "/" + esm.PackageId() + "/" + esm.SubPath + "?module"
|
|
1092
|
+
}
|
|
1093
|
+
asteriskPrefix := ""
|
|
1094
|
+
if externalAll {
|
|
1095
|
+
asteriskPrefix = "*"
|
|
1096
|
+
}
|
|
1097
|
+
name := strings.TrimSuffix(path.Base(esm.PkgName), ".js")
|
|
1098
|
+
if subPath := esm.SubPath; subPath != "" {
|
|
1099
|
+
if subPath == name {
|
|
1100
|
+
// if the sub-module name is same as the package name
|
|
1101
|
+
name = "__" + subPath
|
|
1102
|
+
} else {
|
|
1103
|
+
name = subPath
|
|
1104
|
+
}
|
|
1105
|
+
// workaround for es5-ext "../#/.." path
|
|
1106
|
+
if esm.PkgName == "es5-ext" {
|
|
1107
|
+
name = strings.ReplaceAll(name, "/#/", "/%23/")
|
|
1108
|
+
}
|
|
1109
|
+
}
|
|
1110
|
+
if ctx.dev {
|
|
1111
|
+
name += ".development"
|
|
1112
|
+
}
|
|
1113
|
+
return fmt.Sprintf(
|
|
1114
|
+
"/%s%s/%s%s/%s.mjs",
|
|
1115
|
+
asteriskPrefix,
|
|
1116
|
+
esm.PackageId(),
|
|
1117
|
+
buildArgsPrefix,
|
|
1118
|
+
ctx.target,
|
|
1119
|
+
name,
|
|
1120
|
+
)
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
func (ctx *BuildContext) getSavePath() string {
|
|
1124
|
+
return normalizeSavePath(path.Join("modules", ctx.Path()))
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
func (ctx *BuildContext) getBuildArgsPrefix(isDts bool) string {
|
|
1128
|
+
if a := encodeBuildArgs(ctx.args, isDts); a != "" {
|
|
1129
|
+
return "X-" + a + "/"
|
|
1130
|
+
}
|
|
1131
|
+
return ""
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
func (ctx *BuildContext) getNodeEnv() string {
|
|
1135
|
+
if ctx.dev {
|
|
1136
|
+
return "development"
|
|
1137
|
+
}
|
|
1138
|
+
return "production"
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
func (ctx *BuildContext) isDenoTarget() bool {
|
|
1142
|
+
return ctx.target == "deno" || ctx.target == "denonext"
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
func (ctx *BuildContext) isBrowserTarget() bool {
|
|
1146
|
+
return strings.HasPrefix(ctx.target, "es")
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
func (ctx *BuildContext) getPkgFullPath(subPath string) string {
|
|
1150
|
+
return path.Join(ctx.wd, "node_modules", ctx.esmPath.PkgName, subPath)
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
func (ctx *BuildContext) existsPkgFile(fp ...string) bool {
|
|
1154
|
+
args := make([]string, 3+len(fp))
|
|
1155
|
+
args[0] = ctx.wd
|
|
1156
|
+
args[1] = "node_modules"
|
|
1157
|
+
args[2] = ctx.esmPath.PkgName
|
|
1158
|
+
copy(args[3:], fp)
|
|
1159
|
+
return existsFile(path.Join(args...))
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
func (ctx *BuildContext) resloveSubModule(subPath string) (string, bool) {
|
|
1163
|
+
if subPath != "" {
|
|
1164
|
+
if ctx.existsPkgFile(subPath) {
|
|
1165
|
+
return subPath, true
|
|
1166
|
+
}
|
|
1167
|
+
preferExt := ".mjs"
|
|
1168
|
+
if ctx.pkgJson.Type == "commonjs" {
|
|
1169
|
+
preferExt = ".cjs"
|
|
1170
|
+
}
|
|
1171
|
+
for _, ext := range []string{preferExt, "js", "mts", "ts", "cts"} {
|
|
1172
|
+
if ctx.existsPkgFile(subPath + "." + ext) {
|
|
1173
|
+
return subPath + "." + ext, true
|
|
1174
|
+
}
|
|
1175
|
+
if ctx.existsPkgFile(subPath + "/index." + ext) {
|
|
1176
|
+
return subPath + "/index." + ext, true
|
|
1177
|
+
}
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
return "", false
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
func (ctx *BuildContext) resolveDependency(specifier string, isDts bool) (esm EsmPath, packageJson *npm.PackageJSON, err error) {
|
|
1184
|
+
pkgName, version, subPath := splitEsmPath(specifier)
|
|
1185
|
+
lookup:
|
|
1186
|
+
if v, ok := ctx.args.Deps[pkgName]; ok {
|
|
1187
|
+
packageJson, err = ctx.npmrc.getPackageInfoContext(ctx.Context(), pkgName, v)
|
|
1188
|
+
if err == nil {
|
|
1189
|
+
esm = EsmPath{
|
|
1190
|
+
PkgName: pkgName,
|
|
1191
|
+
PkgVersion: packageJson.Version,
|
|
1192
|
+
SubPath: stripEntryModuleExt(subPath),
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
return
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
var raw npm.PackageJSONRaw
|
|
1199
|
+
pkgJsonPath := path.Join(ctx.wd, "node_modules", pkgName, "package.json")
|
|
1200
|
+
if utils.ParseJSONFile(pkgJsonPath, &raw) == nil {
|
|
1201
|
+
esm = EsmPath{
|
|
1202
|
+
PkgName: pkgName,
|
|
1203
|
+
PkgVersion: raw.Version,
|
|
1204
|
+
SubPath: stripEntryModuleExt(subPath),
|
|
1205
|
+
}
|
|
1206
|
+
packageJson = raw.ToNpmPackage()
|
|
1207
|
+
return
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
if version == "" {
|
|
1211
|
+
if v, ok := ctx.pkgJson.Dependencies[pkgName]; ok {
|
|
1212
|
+
if strings.HasPrefix(v, "npm:") {
|
|
1213
|
+
pkgName, version, _ = splitEsmPath(v[4:])
|
|
1214
|
+
} else {
|
|
1215
|
+
version = v
|
|
1216
|
+
}
|
|
1217
|
+
} else if v, ok = ctx.pkgJson.PeerDependencies[pkgName]; ok {
|
|
1218
|
+
if strings.HasPrefix(v, "npm:") {
|
|
1219
|
+
pkgName, version, _ = splitEsmPath(v[4:])
|
|
1220
|
+
} else {
|
|
1221
|
+
version = v
|
|
1222
|
+
}
|
|
1223
|
+
} else {
|
|
1224
|
+
version = "latest"
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
packageJson, err = ctx.npmrc.getPackageInfoContext(ctx.Context(), pkgName, version)
|
|
1229
|
+
if err == nil {
|
|
1230
|
+
esm = EsmPath{
|
|
1231
|
+
PkgName: pkgName,
|
|
1232
|
+
PkgVersion: packageJson.Version,
|
|
1233
|
+
SubPath: stripEntryModuleExt(subPath),
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
if err != nil && strings.HasSuffix(err.Error(), " not found") && isDts && !strings.HasPrefix(pkgName, "@types/") {
|
|
1237
|
+
pkgName = npm.ToTypesPackageName(pkgName)
|
|
1238
|
+
goto lookup
|
|
1239
|
+
}
|
|
1240
|
+
return
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
func (ctx *BuildContext) lexer(entry *BuildEntry) (ret *BuildMeta, cjsExports []string, cjsReexport string, err error) {
|
|
1244
|
+
if entry.main != "" && entry.module {
|
|
1245
|
+
if strings.HasSuffix(entry.main, ".vue") || strings.HasSuffix(entry.main, ".svelte") {
|
|
1246
|
+
ret = &BuildMeta{
|
|
1247
|
+
ExportDefault: true,
|
|
1248
|
+
}
|
|
1249
|
+
return
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
var isESM bool
|
|
1253
|
+
var namedExports []string
|
|
1254
|
+
isESM, namedExports, err = validateJSFile(path.Join(ctx.wd, "node_modules", ctx.esmPath.PkgName, entry.main))
|
|
1255
|
+
if err != nil {
|
|
1256
|
+
return
|
|
1257
|
+
}
|
|
1258
|
+
if isESM {
|
|
1259
|
+
ret = &BuildMeta{
|
|
1260
|
+
ExportDefault: slices.Contains(namedExports, "default"),
|
|
1261
|
+
}
|
|
1262
|
+
return
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
var cjs cjsModuleLexerResult
|
|
1266
|
+
cjs, err = cjsModuleLexer(ctx, entry.main)
|
|
1267
|
+
if err != nil {
|
|
1268
|
+
return
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
if DEBUG {
|
|
1272
|
+
ctx.logger.Debugf("fake ES module '%s' of '%s'", entry.main, ctx.pkgJson.Name)
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
ret = &BuildMeta{
|
|
1276
|
+
ExportDefault: true,
|
|
1277
|
+
CJS: true,
|
|
1278
|
+
}
|
|
1279
|
+
cjsExports = cjs.Exports
|
|
1280
|
+
cjsReexport = cjs.Reexport
|
|
1281
|
+
entry.module = false
|
|
1282
|
+
return
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
if entry.main != "" && !entry.module {
|
|
1286
|
+
var cjs cjsModuleLexerResult
|
|
1287
|
+
cjs, err = cjsModuleLexer(ctx, entry.main)
|
|
1288
|
+
if err != nil {
|
|
1289
|
+
return
|
|
1290
|
+
}
|
|
1291
|
+
ret = &BuildMeta{
|
|
1292
|
+
ExportDefault: true,
|
|
1293
|
+
CJS: true,
|
|
1294
|
+
}
|
|
1295
|
+
cjsExports = cjs.Exports
|
|
1296
|
+
cjsReexport = cjs.Reexport
|
|
1297
|
+
return
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
ret = &BuildMeta{}
|
|
1301
|
+
return
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
func matchAsteriskExport(exportName string, subModuleName string) (diff string, match bool) {
|
|
1305
|
+
if strings.ContainsRune(exportName, '*') {
|
|
1306
|
+
prefix, suffix := utils.SplitByLastByte(exportName, '*')
|
|
1307
|
+
if strings.HasPrefix("./"+subModuleName, prefix) && strings.HasSuffix(subModuleName, suffix) {
|
|
1308
|
+
return strings.TrimPrefix("./"+subModuleName, prefix), true
|
|
1309
|
+
}
|
|
1310
|
+
}
|
|
1311
|
+
return "", false
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
func resloveAsteriskPathMapping(conditions npm.JSONObject, diff string) npm.JSONObject {
|
|
1315
|
+
var keys []string
|
|
1316
|
+
var values = map[string]any{}
|
|
1317
|
+
for _, key := range conditions.Keys() {
|
|
1318
|
+
value, ok := conditions.Get(key)
|
|
1319
|
+
if ok {
|
|
1320
|
+
if s, ok := value.(string); ok {
|
|
1321
|
+
keys = append(keys, key)
|
|
1322
|
+
values[key] = strings.ReplaceAll(s, "*", diff)
|
|
1323
|
+
} else if c, ok := value.(npm.JSONObject); ok {
|
|
1324
|
+
keys = append(keys, key)
|
|
1325
|
+
values[key] = resloveAsteriskPathMapping(c, diff)
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
return npm.NewJSONObject(keys, values)
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
func getExportConditionPaths(condition npm.JSONObject) []string {
|
|
1333
|
+
var values []string
|
|
1334
|
+
for _, key := range condition.Keys() {
|
|
1335
|
+
v, _ := condition.Get(key)
|
|
1336
|
+
if s, ok := v.(string); ok {
|
|
1337
|
+
values = append(values, s)
|
|
1338
|
+
} else if condition, ok := v.(npm.JSONObject); ok {
|
|
1339
|
+
values = append(values, getExportConditionPaths(condition)...)
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
return values
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
// stripModuleExt strips the module extension from the given string.
|
|
1346
|
+
func stripModuleExt(s string) string {
|
|
1347
|
+
for _, ext := range moduleExts {
|
|
1348
|
+
if strings.HasSuffix(s, ext) && !strings.HasSuffix(s, ".d"+ext) {
|
|
1349
|
+
return s[:len(s)-len(ext)]
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
return s
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
// stripEntryModuleExt strips the entry module extension from the given string.
|
|
1356
|
+
func stripEntryModuleExt(s string) string {
|
|
1357
|
+
if strings.HasSuffix(s, ".mjs") || strings.HasSuffix(s, ".cjs") {
|
|
1358
|
+
return s[:len(s)-4]
|
|
1359
|
+
}
|
|
1360
|
+
if strings.HasSuffix(s, ".js") {
|
|
1361
|
+
return s[:len(s)-3]
|
|
1362
|
+
}
|
|
1363
|
+
return s
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
func normalizeEntryPath(path string) string {
|
|
1367
|
+
return "." + utils.NormalizePathname(path)
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
func normalizeSavePath(pathname string) string {
|
|
1371
|
+
if strings.HasPrefix(pathname, "modules/transform/") || strings.HasPrefix(pathname, "modules/x/") {
|
|
1372
|
+
return pathname
|
|
1373
|
+
}
|
|
1374
|
+
segments := strings.Split(pathname, "/")
|
|
1375
|
+
for i, seg := range segments {
|
|
1376
|
+
if strings.HasPrefix(seg, "X-") && len(seg) > 42 {
|
|
1377
|
+
h := sha1.New()
|
|
1378
|
+
h.Write([]byte(seg))
|
|
1379
|
+
segments[i] = "x-" + hex.EncodeToString(h.Sum(nil))
|
|
1380
|
+
} else if strings.HasPrefix(seg, "*") {
|
|
1381
|
+
segments[i] = seg[1:] + "/ea"
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
return strings.Join(segments, "/")
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
// normalizeImportSpecifier normalizes the given specifier.
|
|
1388
|
+
func normalizeImportSpecifier(specifier string) string {
|
|
1389
|
+
switch specifier {
|
|
1390
|
+
case ".":
|
|
1391
|
+
specifier = "./index"
|
|
1392
|
+
case "..":
|
|
1393
|
+
specifier = "../index"
|
|
1394
|
+
default:
|
|
1395
|
+
specifier = strings.TrimPrefix(specifier, "npm:")
|
|
1396
|
+
}
|
|
1397
|
+
if nodeBuiltinModules[specifier] {
|
|
1398
|
+
return "node:" + specifier
|
|
1399
|
+
}
|
|
1400
|
+
return specifier
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
// validateJSFile validates javascript/typescript module from the given file.
|
|
1404
|
+
func validateJSFile(filename string) (isESM bool, namedExports []string, err error) {
|
|
1405
|
+
data, err := os.ReadFile(filename)
|
|
1406
|
+
if err != nil {
|
|
1407
|
+
return
|
|
1408
|
+
}
|
|
1409
|
+
log := logger.NewDeferLog(logger.DeferLogNoVerboseOrDebug, nil)
|
|
1410
|
+
parserOpts := js_parser.OptionsFromConfig(&esbuild_config.Options{
|
|
1411
|
+
JSX: esbuild_config.JSXOptions{
|
|
1412
|
+
Parse: endsWith(filename, ".jsx", ".tsx"),
|
|
1413
|
+
},
|
|
1414
|
+
TS: esbuild_config.TSOptions{
|
|
1415
|
+
Parse: endsWith(filename, ".ts", ".mts", ".cts", ".tsx"),
|
|
1416
|
+
},
|
|
1417
|
+
})
|
|
1418
|
+
ast, pass := js_parser.Parse(log, logger.Source{
|
|
1419
|
+
Index: 0,
|
|
1420
|
+
KeyPath: logger.Path{Text: "<stdin>"},
|
|
1421
|
+
PrettyPaths: logger.PrettyPaths{Rel: "<stdin>"},
|
|
1422
|
+
IdentifierName: "stdin",
|
|
1423
|
+
Contents: string(data),
|
|
1424
|
+
}, parserOpts)
|
|
1425
|
+
if !pass {
|
|
1426
|
+
err = errors.New("invalid syntax, require javascript/typescript")
|
|
1427
|
+
return
|
|
1428
|
+
}
|
|
1429
|
+
isESM = ast.ExportsKind == js_ast.ExportsESM || ast.ExportsKind == js_ast.ExportsESMWithDynamicFallback
|
|
1430
|
+
// A module with no import/export/CommonJS markers (e.g. an empty file that
|
|
1431
|
+
// contains only comments, as shipped by some types-only packages) is parsed
|
|
1432
|
+
// as `ExportsNone`. For explicit ES module files (`.mjs`/`.mts`) such a file
|
|
1433
|
+
// is still a valid—if empty—ES module and must be treated as ESM. Otherwise
|
|
1434
|
+
// it would be misclassified as a "fake CommonJS module" and handed to the
|
|
1435
|
+
// cjs-module-lexer, which can panic while resolving the entry's `exports`
|
|
1436
|
+
// subpath under non-matching conditions (e.g. a `browser`-only build).
|
|
1437
|
+
if !isESM && ast.ExportsKind == js_ast.ExportsNone && endsWith(filename, ".mjs", ".mts") {
|
|
1438
|
+
isESM = true
|
|
1439
|
+
}
|
|
1440
|
+
namedExports = make([]string, len(ast.NamedExports))
|
|
1441
|
+
i := 0
|
|
1442
|
+
for name := range ast.NamedExports {
|
|
1443
|
+
namedExports[i] = name
|
|
1444
|
+
i++
|
|
1445
|
+
}
|
|
1446
|
+
return
|
|
1447
|
+
}
|