warbeast2000 0.0.1-security → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of warbeast2000 might be problematic. Click here for more details.
- package/.github/workflows/node.js.yml +31 -0
- package/README.md +5 -5
- package/index.js +7 -0
- package/package.json +23 -3
- package/the_app/node_modules/.bin/mime +16 -0
- package/the_app/node_modules/.bin/mime.cmd +17 -0
- package/the_app/node_modules/.bin/mime.ps1 +28 -0
- package/the_app/node_modules/.bin/npm +16 -0
- package/the_app/node_modules/.bin/npm.cmd +17 -0
- package/the_app/node_modules/.bin/npm.ps1 +28 -0
- package/the_app/node_modules/.bin/npx +16 -0
- package/the_app/node_modules/.bin/npx.cmd +17 -0
- package/the_app/node_modules/.bin/npx.ps1 +28 -0
- package/the_app/node_modules/.package-lock.json +3405 -0
- package/the_app/node_modules/accepts/HISTORY.md +243 -0
- package/the_app/node_modules/accepts/LICENSE +23 -0
- package/the_app/node_modules/accepts/README.md +140 -0
- package/the_app/node_modules/accepts/index.js +238 -0
- package/the_app/node_modules/accepts/package.json +47 -0
- package/the_app/node_modules/array-flatten/LICENSE +21 -0
- package/the_app/node_modules/array-flatten/README.md +43 -0
- package/the_app/node_modules/array-flatten/array-flatten.js +64 -0
- package/the_app/node_modules/array-flatten/package.json +39 -0
- package/the_app/node_modules/async-es/CHANGELOG.md +348 -0
- package/the_app/node_modules/async-es/LICENSE +19 -0
- package/the_app/node_modules/async-es/README.md +58 -0
- package/the_app/node_modules/async-es/all.js +102 -0
- package/the_app/node_modules/async-es/allLimit.js +29 -0
- package/the_app/node_modules/async-es/allSeries.js +28 -0
- package/the_app/node_modules/async-es/any.js +105 -0
- package/the_app/node_modules/async-es/anyLimit.js +30 -0
- package/the_app/node_modules/async-es/anySeries.js +29 -0
- package/the_app/node_modules/async-es/apply.js +48 -0
- package/the_app/node_modules/async-es/applyEach.js +43 -0
- package/the_app/node_modules/async-es/applyEachSeries.js +23 -0
- package/the_app/node_modules/async-es/asyncify.js +100 -0
- package/the_app/node_modules/async-es/auto.js +321 -0
- package/the_app/node_modules/async-es/autoInject.js +173 -0
- package/the_app/node_modules/async-es/cargo.js +51 -0
- package/the_app/node_modules/async-es/cargoQueue.js +59 -0
- package/the_app/node_modules/async-es/compose.js +43 -0
- package/the_app/node_modules/async-es/concat.js +101 -0
- package/the_app/node_modules/async-es/concatLimit.js +43 -0
- package/the_app/node_modules/async-es/concatSeries.js +27 -0
- package/the_app/node_modules/async-es/constant.js +48 -0
- package/the_app/node_modules/async-es/detect.js +79 -0
- package/the_app/node_modules/async-es/detectLimit.js +31 -0
- package/the_app/node_modules/async-es/detectSeries.js +30 -0
- package/the_app/node_modules/async-es/dir.js +32 -0
- package/the_app/node_modules/async-es/doDuring.js +51 -0
- package/the_app/node_modules/async-es/doUntil.js +31 -0
- package/the_app/node_modules/async-es/doWhilst.js +51 -0
- package/the_app/node_modules/async-es/during.js +61 -0
- package/the_app/node_modules/async-es/each.js +109 -0
- package/the_app/node_modules/async-es/eachLimit.js +30 -0
- package/the_app/node_modules/async-es/eachOf.js +156 -0
- package/the_app/node_modules/async-es/eachOfLimit.js +30 -0
- package/the_app/node_modules/async-es/eachOfSeries.js +25 -0
- package/the_app/node_modules/async-es/eachSeries.js +30 -0
- package/the_app/node_modules/async-es/ensureAsync.js +54 -0
- package/the_app/node_modules/async-es/every.js +102 -0
- package/the_app/node_modules/async-es/everyLimit.js +29 -0
- package/the_app/node_modules/async-es/everySeries.js +28 -0
- package/the_app/node_modules/async-es/filter.js +76 -0
- package/the_app/node_modules/async-es/filterLimit.js +28 -0
- package/the_app/node_modules/async-es/filterSeries.js +26 -0
- package/the_app/node_modules/async-es/find.js +79 -0
- package/the_app/node_modules/async-es/findLimit.js +31 -0
- package/the_app/node_modules/async-es/findSeries.js +30 -0
- package/the_app/node_modules/async-es/flatMap.js +101 -0
- package/the_app/node_modules/async-es/flatMapLimit.js +43 -0
- package/the_app/node_modules/async-es/flatMapSeries.js +27 -0
- package/the_app/node_modules/async-es/foldl.js +133 -0
- package/the_app/node_modules/async-es/foldr.js +29 -0
- package/the_app/node_modules/async-es/forEach.js +109 -0
- package/the_app/node_modules/async-es/forEachLimit.js +30 -0
- package/the_app/node_modules/async-es/forEachOf.js +156 -0
- package/the_app/node_modules/async-es/forEachOfLimit.js +30 -0
- package/the_app/node_modules/async-es/forEachOfSeries.js +25 -0
- package/the_app/node_modules/async-es/forEachSeries.js +30 -0
- package/the_app/node_modules/async-es/forever.js +48 -0
- package/the_app/node_modules/async-es/groupBy.js +96 -0
- package/the_app/node_modules/async-es/groupByLimit.js +54 -0
- package/the_app/node_modules/async-es/groupBySeries.js +24 -0
- package/the_app/node_modules/async-es/index.js +358 -0
- package/the_app/node_modules/async-es/inject.js +133 -0
- package/the_app/node_modules/async-es/internal/DoublyLinkedList.js +92 -0
- package/the_app/node_modules/async-es/internal/Heap.js +115 -0
- package/the_app/node_modules/async-es/internal/applyEach.js +14 -0
- package/the_app/node_modules/async-es/internal/asyncEachOfLimit.js +63 -0
- package/the_app/node_modules/async-es/internal/awaitify.js +21 -0
- package/the_app/node_modules/async-es/internal/breakLoop.js +4 -0
- package/the_app/node_modules/async-es/internal/consoleFunc.js +18 -0
- package/the_app/node_modules/async-es/internal/createTester.js +25 -0
- package/the_app/node_modules/async-es/internal/eachOfLimit.js +68 -0
- package/the_app/node_modules/async-es/internal/filter.js +42 -0
- package/the_app/node_modules/async-es/internal/getIterator.js +3 -0
- package/the_app/node_modules/async-es/internal/initialParams.js +6 -0
- package/the_app/node_modules/async-es/internal/isArrayLike.js +6 -0
- package/the_app/node_modules/async-es/internal/iterator.js +43 -0
- package/the_app/node_modules/async-es/internal/map.js +18 -0
- package/the_app/node_modules/async-es/internal/once.js +10 -0
- package/the_app/node_modules/async-es/internal/onlyOnce.js +8 -0
- package/the_app/node_modules/async-es/internal/parallel.js +17 -0
- package/the_app/node_modules/async-es/internal/promiseCallback.js +19 -0
- package/the_app/node_modules/async-es/internal/queue.js +276 -0
- package/the_app/node_modules/async-es/internal/range.js +7 -0
- package/the_app/node_modules/async-es/internal/reject.js +11 -0
- package/the_app/node_modules/async-es/internal/setImmediate.js +27 -0
- package/the_app/node_modules/async-es/internal/withoutIndex.js +3 -0
- package/the_app/node_modules/async-es/internal/wrapAsync.js +22 -0
- package/the_app/node_modules/async-es/log.js +30 -0
- package/the_app/node_modules/async-es/map.js +125 -0
- package/the_app/node_modules/async-es/mapLimit.js +28 -0
- package/the_app/node_modules/async-es/mapSeries.js +27 -0
- package/the_app/node_modules/async-es/mapValues.js +140 -0
- package/the_app/node_modules/async-es/mapValuesLimit.js +41 -0
- package/the_app/node_modules/async-es/mapValuesSeries.js +25 -0
- package/the_app/node_modules/async-es/memoize.js +73 -0
- package/the_app/node_modules/async-es/nextTick.js +45 -0
- package/the_app/node_modules/async-es/package.json +76 -0
- package/the_app/node_modules/async-es/parallel.js +165 -0
- package/the_app/node_modules/async-es/parallelLimit.js +26 -0
- package/the_app/node_modules/async-es/priorityQueue.js +68 -0
- package/the_app/node_modules/async-es/queue.js +151 -0
- package/the_app/node_modules/async-es/race.js +50 -0
- package/the_app/node_modules/async-es/reduce.js +133 -0
- package/the_app/node_modules/async-es/reduceRight.js +29 -0
- package/the_app/node_modules/async-es/reflect.js +63 -0
- package/the_app/node_modules/async-es/reflectAll.js +81 -0
- package/the_app/node_modules/async-es/reject.js +70 -0
- package/the_app/node_modules/async-es/rejectLimit.js +27 -0
- package/the_app/node_modules/async-es/rejectSeries.js +26 -0
- package/the_app/node_modules/async-es/retry.js +150 -0
- package/the_app/node_modules/async-es/retryable.js +59 -0
- package/the_app/node_modules/async-es/select.js +76 -0
- package/the_app/node_modules/async-es/selectLimit.js +28 -0
- package/the_app/node_modules/async-es/selectSeries.js +26 -0
- package/the_app/node_modules/async-es/seq.js +64 -0
- package/the_app/node_modules/async-es/series.js +171 -0
- package/the_app/node_modules/async-es/setImmediate.js +34 -0
- package/the_app/node_modules/async-es/some.js +105 -0
- package/the_app/node_modules/async-es/someLimit.js +30 -0
- package/the_app/node_modules/async-es/someSeries.js +29 -0
- package/the_app/node_modules/async-es/sortBy.js +172 -0
- package/the_app/node_modules/async-es/timeout.js +74 -0
- package/the_app/node_modules/async-es/times.js +38 -0
- package/the_app/node_modules/async-es/timesLimit.js +25 -0
- package/the_app/node_modules/async-es/timesSeries.js +20 -0
- package/the_app/node_modules/async-es/transform.js +154 -0
- package/the_app/node_modules/async-es/tryEach.js +61 -0
- package/the_app/node_modules/async-es/unmemoize.js +18 -0
- package/the_app/node_modules/async-es/until.js +46 -0
- package/the_app/node_modules/async-es/waterfall.js +85 -0
- package/the_app/node_modules/async-es/whilst.js +61 -0
- package/the_app/node_modules/async-es/wrapSync.js +100 -0
- package/the_app/node_modules/body-parser/HISTORY.md +657 -0
- package/the_app/node_modules/body-parser/LICENSE +23 -0
- package/the_app/node_modules/body-parser/README.md +464 -0
- package/the_app/node_modules/body-parser/SECURITY.md +25 -0
- package/the_app/node_modules/body-parser/index.js +156 -0
- package/the_app/node_modules/body-parser/lib/read.js +205 -0
- package/the_app/node_modules/body-parser/lib/types/json.js +236 -0
- package/the_app/node_modules/body-parser/lib/types/raw.js +101 -0
- package/the_app/node_modules/body-parser/lib/types/text.js +121 -0
- package/the_app/node_modules/body-parser/lib/types/urlencoded.js +284 -0
- package/the_app/node_modules/body-parser/package.json +56 -0
- package/the_app/node_modules/bytes/History.md +97 -0
- package/the_app/node_modules/bytes/LICENSE +23 -0
- package/the_app/node_modules/bytes/Readme.md +152 -0
- package/the_app/node_modules/bytes/index.js +170 -0
- package/the_app/node_modules/bytes/package.json +42 -0
- package/the_app/node_modules/call-bind/.eslintignore +1 -0
- package/the_app/node_modules/call-bind/.eslintrc +16 -0
- package/the_app/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/call-bind/.nycrc +9 -0
- package/the_app/node_modules/call-bind/CHANGELOG.md +77 -0
- package/the_app/node_modules/call-bind/LICENSE +21 -0
- package/the_app/node_modules/call-bind/README.md +64 -0
- package/the_app/node_modules/call-bind/callBound.js +15 -0
- package/the_app/node_modules/call-bind/index.js +44 -0
- package/the_app/node_modules/call-bind/package.json +90 -0
- package/the_app/node_modules/call-bind/test/callBound.js +54 -0
- package/the_app/node_modules/call-bind/test/index.js +80 -0
- package/the_app/node_modules/content-disposition/HISTORY.md +60 -0
- package/the_app/node_modules/content-disposition/LICENSE +22 -0
- package/the_app/node_modules/content-disposition/README.md +142 -0
- package/the_app/node_modules/content-disposition/index.js +458 -0
- package/the_app/node_modules/content-disposition/package.json +44 -0
- package/the_app/node_modules/content-type/HISTORY.md +29 -0
- package/the_app/node_modules/content-type/LICENSE +22 -0
- package/the_app/node_modules/content-type/README.md +94 -0
- package/the_app/node_modules/content-type/index.js +225 -0
- package/the_app/node_modules/content-type/package.json +42 -0
- package/the_app/node_modules/cookie/HISTORY.md +142 -0
- package/the_app/node_modules/cookie/LICENSE +24 -0
- package/the_app/node_modules/cookie/README.md +302 -0
- package/the_app/node_modules/cookie/SECURITY.md +25 -0
- package/the_app/node_modules/cookie/index.js +270 -0
- package/the_app/node_modules/cookie/package.json +44 -0
- package/the_app/node_modules/cookie-signature/History.md +38 -0
- package/the_app/node_modules/cookie-signature/Readme.md +42 -0
- package/the_app/node_modules/cookie-signature/index.js +51 -0
- package/the_app/node_modules/cookie-signature/package.json +18 -0
- package/the_app/node_modules/debug/.coveralls.yml +1 -0
- package/the_app/node_modules/debug/.eslintrc +11 -0
- package/the_app/node_modules/debug/.travis.yml +14 -0
- package/the_app/node_modules/debug/CHANGELOG.md +362 -0
- package/the_app/node_modules/debug/LICENSE +19 -0
- package/the_app/node_modules/debug/Makefile +50 -0
- package/the_app/node_modules/debug/README.md +312 -0
- package/the_app/node_modules/debug/component.json +19 -0
- package/the_app/node_modules/debug/karma.conf.js +70 -0
- package/the_app/node_modules/debug/node.js +1 -0
- package/the_app/node_modules/debug/package.json +49 -0
- package/the_app/node_modules/debug/src/browser.js +185 -0
- package/the_app/node_modules/debug/src/debug.js +202 -0
- package/the_app/node_modules/debug/src/index.js +10 -0
- package/the_app/node_modules/debug/src/inspector-log.js +15 -0
- package/the_app/node_modules/debug/src/node.js +248 -0
- package/the_app/node_modules/define-data-property/.eslintrc +24 -0
- package/the_app/node_modules/define-data-property/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/define-data-property/.nycrc +13 -0
- package/the_app/node_modules/define-data-property/CHANGELOG.md +41 -0
- package/the_app/node_modules/define-data-property/LICENSE +21 -0
- package/the_app/node_modules/define-data-property/README.md +67 -0
- package/the_app/node_modules/define-data-property/index.d.ts +3 -0
- package/the_app/node_modules/define-data-property/index.d.ts.map +1 -0
- package/the_app/node_modules/define-data-property/index.js +68 -0
- package/the_app/node_modules/define-data-property/package.json +113 -0
- package/the_app/node_modules/define-data-property/test/index.js +392 -0
- package/the_app/node_modules/define-data-property/tsconfig.json +59 -0
- package/the_app/node_modules/depd/History.md +103 -0
- package/the_app/node_modules/depd/LICENSE +22 -0
- package/the_app/node_modules/depd/Readme.md +280 -0
- package/the_app/node_modules/depd/index.js +538 -0
- package/the_app/node_modules/depd/lib/browser/index.js +77 -0
- package/the_app/node_modules/depd/package.json +45 -0
- package/the_app/node_modules/destroy/LICENSE +23 -0
- package/the_app/node_modules/destroy/README.md +63 -0
- package/the_app/node_modules/destroy/index.js +209 -0
- package/the_app/node_modules/destroy/package.json +48 -0
- package/the_app/node_modules/ee-first/LICENSE +22 -0
- package/the_app/node_modules/ee-first/README.md +80 -0
- package/the_app/node_modules/ee-first/index.js +95 -0
- package/the_app/node_modules/ee-first/package.json +29 -0
- package/the_app/node_modules/encodeurl/HISTORY.md +14 -0
- package/the_app/node_modules/encodeurl/LICENSE +22 -0
- package/the_app/node_modules/encodeurl/README.md +128 -0
- package/the_app/node_modules/encodeurl/index.js +60 -0
- package/the_app/node_modules/encodeurl/package.json +40 -0
- package/the_app/node_modules/escape-html/LICENSE +24 -0
- package/the_app/node_modules/escape-html/Readme.md +43 -0
- package/the_app/node_modules/escape-html/index.js +78 -0
- package/the_app/node_modules/escape-html/package.json +24 -0
- package/the_app/node_modules/etag/HISTORY.md +83 -0
- package/the_app/node_modules/etag/LICENSE +22 -0
- package/the_app/node_modules/etag/README.md +159 -0
- package/the_app/node_modules/etag/index.js +131 -0
- package/the_app/node_modules/etag/package.json +47 -0
- package/the_app/node_modules/express/History.md +3588 -0
- package/the_app/node_modules/express/LICENSE +24 -0
- package/the_app/node_modules/express/Readme.md +166 -0
- package/the_app/node_modules/express/index.js +11 -0
- package/the_app/node_modules/express/lib/application.js +661 -0
- package/the_app/node_modules/express/lib/express.js +116 -0
- package/the_app/node_modules/express/lib/middleware/init.js +43 -0
- package/the_app/node_modules/express/lib/middleware/query.js +47 -0
- package/the_app/node_modules/express/lib/request.js +525 -0
- package/the_app/node_modules/express/lib/response.js +1169 -0
- package/the_app/node_modules/express/lib/router/index.js +673 -0
- package/the_app/node_modules/express/lib/router/layer.js +181 -0
- package/the_app/node_modules/express/lib/router/route.js +225 -0
- package/the_app/node_modules/express/lib/utils.js +304 -0
- package/the_app/node_modules/express/lib/view.js +182 -0
- package/the_app/node_modules/express/package.json +99 -0
- package/the_app/node_modules/finalhandler/HISTORY.md +195 -0
- package/the_app/node_modules/finalhandler/LICENSE +22 -0
- package/the_app/node_modules/finalhandler/README.md +147 -0
- package/the_app/node_modules/finalhandler/SECURITY.md +25 -0
- package/the_app/node_modules/finalhandler/index.js +336 -0
- package/the_app/node_modules/finalhandler/package.json +46 -0
- package/the_app/node_modules/forwarded/HISTORY.md +21 -0
- package/the_app/node_modules/forwarded/LICENSE +22 -0
- package/the_app/node_modules/forwarded/README.md +57 -0
- package/the_app/node_modules/forwarded/index.js +90 -0
- package/the_app/node_modules/forwarded/package.json +45 -0
- package/the_app/node_modules/fresh/HISTORY.md +70 -0
- package/the_app/node_modules/fresh/LICENSE +23 -0
- package/the_app/node_modules/fresh/README.md +119 -0
- package/the_app/node_modules/fresh/index.js +137 -0
- package/the_app/node_modules/fresh/package.json +46 -0
- package/the_app/node_modules/function-bind/.eslintrc +21 -0
- package/the_app/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/the_app/node_modules/function-bind/.nycrc +13 -0
- package/the_app/node_modules/function-bind/CHANGELOG.md +136 -0
- package/the_app/node_modules/function-bind/LICENSE +20 -0
- package/the_app/node_modules/function-bind/README.md +46 -0
- package/the_app/node_modules/function-bind/implementation.js +84 -0
- package/the_app/node_modules/function-bind/index.js +5 -0
- package/the_app/node_modules/function-bind/package.json +87 -0
- package/the_app/node_modules/function-bind/test/.eslintrc +9 -0
- package/the_app/node_modules/function-bind/test/index.js +252 -0
- package/the_app/node_modules/get-intrinsic/.eslintrc +38 -0
- package/the_app/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/get-intrinsic/.nycrc +9 -0
- package/the_app/node_modules/get-intrinsic/CHANGELOG.md +125 -0
- package/the_app/node_modules/get-intrinsic/LICENSE +21 -0
- package/the_app/node_modules/get-intrinsic/README.md +71 -0
- package/the_app/node_modules/get-intrinsic/index.js +351 -0
- package/the_app/node_modules/get-intrinsic/package.json +93 -0
- package/the_app/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/the_app/node_modules/gopd/.eslintrc +16 -0
- package/the_app/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/gopd/CHANGELOG.md +25 -0
- package/the_app/node_modules/gopd/LICENSE +21 -0
- package/the_app/node_modules/gopd/README.md +40 -0
- package/the_app/node_modules/gopd/index.js +16 -0
- package/the_app/node_modules/gopd/package.json +71 -0
- package/the_app/node_modules/gopd/test/index.js +35 -0
- package/the_app/node_modules/has-property-descriptors/.eslintrc +13 -0
- package/the_app/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/has-property-descriptors/.nycrc +9 -0
- package/the_app/node_modules/has-property-descriptors/CHANGELOG.md +27 -0
- package/the_app/node_modules/has-property-descriptors/LICENSE +21 -0
- package/the_app/node_modules/has-property-descriptors/README.md +43 -0
- package/the_app/node_modules/has-property-descriptors/index.js +33 -0
- package/the_app/node_modules/has-property-descriptors/package.json +77 -0
- package/the_app/node_modules/has-property-descriptors/test/index.js +57 -0
- package/the_app/node_modules/has-proto/.eslintrc +5 -0
- package/the_app/node_modules/has-proto/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/has-proto/CHANGELOG.md +23 -0
- package/the_app/node_modules/has-proto/LICENSE +21 -0
- package/the_app/node_modules/has-proto/README.md +38 -0
- package/the_app/node_modules/has-proto/index.js +11 -0
- package/the_app/node_modules/has-proto/package.json +74 -0
- package/the_app/node_modules/has-proto/test/index.js +19 -0
- package/the_app/node_modules/has-symbols/.eslintrc +11 -0
- package/the_app/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/has-symbols/.nycrc +9 -0
- package/the_app/node_modules/has-symbols/CHANGELOG.md +75 -0
- package/the_app/node_modules/has-symbols/LICENSE +21 -0
- package/the_app/node_modules/has-symbols/README.md +46 -0
- package/the_app/node_modules/has-symbols/index.js +13 -0
- package/the_app/node_modules/has-symbols/package.json +101 -0
- package/the_app/node_modules/has-symbols/shams.js +42 -0
- package/the_app/node_modules/has-symbols/test/index.js +22 -0
- package/the_app/node_modules/has-symbols/test/shams/core-js.js +28 -0
- package/the_app/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- package/the_app/node_modules/has-symbols/test/tests.js +56 -0
- package/the_app/node_modules/hasown/.eslintrc +5 -0
- package/the_app/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/hasown/.nycrc +13 -0
- package/the_app/node_modules/hasown/CHANGELOG.md +20 -0
- package/the_app/node_modules/hasown/LICENSE +21 -0
- package/the_app/node_modules/hasown/README.md +40 -0
- package/the_app/node_modules/hasown/index.d.ts +3 -0
- package/the_app/node_modules/hasown/index.d.ts.map +1 -0
- package/the_app/node_modules/hasown/index.js +8 -0
- package/the_app/node_modules/hasown/package.json +91 -0
- package/the_app/node_modules/hasown/tsconfig.json +49 -0
- package/the_app/node_modules/http-errors/HISTORY.md +180 -0
- package/the_app/node_modules/http-errors/LICENSE +23 -0
- package/the_app/node_modules/http-errors/README.md +169 -0
- package/the_app/node_modules/http-errors/index.js +289 -0
- package/the_app/node_modules/http-errors/package.json +50 -0
- package/the_app/node_modules/iconv-lite/Changelog.md +162 -0
- package/the_app/node_modules/iconv-lite/LICENSE +21 -0
- package/the_app/node_modules/iconv-lite/README.md +156 -0
- package/the_app/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/the_app/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/the_app/node_modules/iconv-lite/encodings/index.js +22 -0
- package/the_app/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/the_app/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/the_app/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/the_app/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/the_app/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/the_app/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/the_app/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/the_app/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/the_app/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/the_app/node_modules/iconv-lite/lib/index.js +153 -0
- package/the_app/node_modules/iconv-lite/lib/streams.js +121 -0
- package/the_app/node_modules/iconv-lite/package.json +46 -0
- package/the_app/node_modules/inherits/LICENSE +16 -0
- package/the_app/node_modules/inherits/README.md +42 -0
- package/the_app/node_modules/inherits/inherits.js +9 -0
- package/the_app/node_modules/inherits/inherits_browser.js +27 -0
- package/the_app/node_modules/inherits/package.json +29 -0
- package/the_app/node_modules/install/.travis.yml +12 -0
- package/the_app/node_modules/install/LICENSE +22 -0
- package/the_app/node_modules/install/README.md +123 -0
- package/the_app/node_modules/install/install.js +556 -0
- package/the_app/node_modules/install/install.min.js +1 -0
- package/the_app/node_modules/install/package.json +41 -0
- package/the_app/node_modules/install/scripts/docs.sh +7 -0
- package/the_app/node_modules/install/scripts/prepublish.sh +5 -0
- package/the_app/node_modules/ipaddr.js/LICENSE +19 -0
- package/the_app/node_modules/ipaddr.js/README.md +233 -0
- package/the_app/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/the_app/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/the_app/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/the_app/node_modules/ipaddr.js/package.json +35 -0
- package/the_app/node_modules/media-typer/HISTORY.md +22 -0
- package/the_app/node_modules/media-typer/LICENSE +22 -0
- package/the_app/node_modules/media-typer/README.md +81 -0
- package/the_app/node_modules/media-typer/index.js +270 -0
- package/the_app/node_modules/media-typer/package.json +26 -0
- package/the_app/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/the_app/node_modules/merge-descriptors/LICENSE +23 -0
- package/the_app/node_modules/merge-descriptors/README.md +48 -0
- package/the_app/node_modules/merge-descriptors/index.js +60 -0
- package/the_app/node_modules/merge-descriptors/package.json +32 -0
- package/the_app/node_modules/methods/HISTORY.md +29 -0
- package/the_app/node_modules/methods/LICENSE +24 -0
- package/the_app/node_modules/methods/README.md +51 -0
- package/the_app/node_modules/methods/index.js +69 -0
- package/the_app/node_modules/methods/package.json +36 -0
- package/the_app/node_modules/mime/CHANGELOG.md +164 -0
- package/the_app/node_modules/mime/LICENSE +21 -0
- package/the_app/node_modules/mime/README.md +90 -0
- package/the_app/node_modules/mime/cli.js +8 -0
- package/the_app/node_modules/mime/mime.js +108 -0
- package/the_app/node_modules/mime/package.json +44 -0
- package/the_app/node_modules/mime/src/build.js +53 -0
- package/the_app/node_modules/mime/src/test.js +60 -0
- package/the_app/node_modules/mime/types.json +1 -0
- package/the_app/node_modules/mime-db/HISTORY.md +507 -0
- package/the_app/node_modules/mime-db/LICENSE +23 -0
- package/the_app/node_modules/mime-db/README.md +100 -0
- package/the_app/node_modules/mime-db/db.json +8519 -0
- package/the_app/node_modules/mime-db/index.js +12 -0
- package/the_app/node_modules/mime-db/package.json +60 -0
- package/the_app/node_modules/mime-types/HISTORY.md +397 -0
- package/the_app/node_modules/mime-types/LICENSE +23 -0
- package/the_app/node_modules/mime-types/README.md +113 -0
- package/the_app/node_modules/mime-types/index.js +188 -0
- package/the_app/node_modules/mime-types/package.json +44 -0
- package/the_app/node_modules/ms/index.js +152 -0
- package/the_app/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/ms/package.json +37 -0
- package/the_app/node_modules/ms/readme.md +51 -0
- package/the_app/node_modules/negotiator/HISTORY.md +108 -0
- package/the_app/node_modules/negotiator/LICENSE +24 -0
- package/the_app/node_modules/negotiator/README.md +203 -0
- package/the_app/node_modules/negotiator/index.js +82 -0
- package/the_app/node_modules/negotiator/lib/charset.js +169 -0
- package/the_app/node_modules/negotiator/lib/encoding.js +184 -0
- package/the_app/node_modules/negotiator/lib/language.js +179 -0
- package/the_app/node_modules/negotiator/lib/mediaType.js +294 -0
- package/the_app/node_modules/negotiator/package.json +42 -0
- package/the_app/node_modules/npm/LICENSE +235 -0
- package/the_app/node_modules/npm/README.md +63 -0
- package/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
- package/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
- package/the_app/node_modules/npm/bin/npm +64 -0
- package/the_app/node_modules/npm/bin/npm-cli.js +2 -0
- package/the_app/node_modules/npm/bin/npm.cmd +19 -0
- package/the_app/node_modules/npm/bin/npm.ps1 +35 -0
- package/the_app/node_modules/npm/bin/npx +65 -0
- package/the_app/node_modules/npm/bin/npx-cli.js +130 -0
- package/the_app/node_modules/npm/bin/npx.cmd +20 -0
- package/the_app/node_modules/npm/bin/npx.ps1 +35 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-access.md +123 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-adduser.md +86 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-audit.md +470 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-bugs.md +109 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-cache.md +94 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-ci.md +317 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-completion.md +41 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-config.md +181 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-dedupe.md +320 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-deprecate.md +73 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-diff.md +316 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-dist-tag.md +154 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-docs.md +108 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-doctor.md +122 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-edit.md +46 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-exec.md +366 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-explain.md +105 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-explore.md +49 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-find-dupes.md +246 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-fund.md +145 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-help-search.md +40 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-help.md +46 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-hook.md +112 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-init.md +349 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-install-ci-test.md +264 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-install-test.md +361 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-install.md +797 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-link.md +396 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-login.md +93 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-logout.md +75 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-ls.md +294 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-org.md +114 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-outdated.md +178 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-owner.md +106 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-pack.md +126 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-ping.md +46 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-pkg.md +272 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-prefix.md +59 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-profile.md +131 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-prune.md +196 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-publish.md +235 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-query.md +241 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-rebuild.md +168 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-repo.md +102 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-restart.md +70 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-root.md +51 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-run-script.md +253 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-sbom.md +319 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-search.md +159 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-shrinkwrap.md +32 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-star.md +78 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-stars.md +40 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-start.md +80 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-stop.md +73 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-team.md +155 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-test.md +70 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-token.md +130 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-uninstall.md +159 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-unpublish.md +136 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-unstar.md +74 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-update.md +446 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-version.md +235 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-view.md +200 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-whoami.md +41 -0
- package/the_app/node_modules/npm/docs/content/commands/npm.md +175 -0
- package/the_app/node_modules/npm/docs/content/commands/npx.md +167 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/folders.md +219 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/install.md +78 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/npm-shrinkwrap-json.md +34 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/npmrc.md +137 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/package-json.md +1190 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +235 -0
- package/the_app/node_modules/npm/docs/content/using-npm/config.md +1984 -0
- package/the_app/node_modules/npm/docs/content/using-npm/dependency-selectors.md +207 -0
- package/the_app/node_modules/npm/docs/content/using-npm/developers.md +245 -0
- package/the_app/node_modules/npm/docs/content/using-npm/logging.md +96 -0
- package/the_app/node_modules/npm/docs/content/using-npm/orgs.md +93 -0
- package/the_app/node_modules/npm/docs/content/using-npm/package-spec.md +105 -0
- package/the_app/node_modules/npm/docs/content/using-npm/registry.md +86 -0
- package/the_app/node_modules/npm/docs/content/using-npm/removal.md +64 -0
- package/the_app/node_modules/npm/docs/content/using-npm/scope.md +143 -0
- package/the_app/node_modules/npm/docs/content/using-npm/scripts.md +368 -0
- package/the_app/node_modules/npm/docs/content/using-npm/workspaces.md +226 -0
- package/the_app/node_modules/npm/docs/lib/index.js +189 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-access.html +262 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-adduser.html +218 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-audit.html +502 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-bugs.html +243 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-cache.html +236 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-ci.html +397 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-completion.html +186 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-config.html +282 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-dedupe.html +395 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-deprecate.html +206 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-diff.html +398 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-dist-tag.html +281 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-docs.html +242 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-doctor.html +253 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-edit.html +190 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-exec.html +435 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-explain.html +242 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-explore.html +190 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-find-dupes.html +341 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-fund.html +267 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-help-search.html +184 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-help.html +190 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-hook.html +226 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-init.html +422 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-install-ci-test.html +355 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-install-test.html +425 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-install.html +787 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-link.html +450 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-login.html +222 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-logout.html +209 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-ls.html +378 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-org.html +231 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-outdated.html +305 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-owner.html +243 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-pack.html +256 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-ping.html +189 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-pkg.html +364 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-prefix.html +200 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-profile.html +272 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-prune.html +304 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-publish.html +350 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-query.html +365 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-rebuild.html +288 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-repo.html +236 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-restart.html +211 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-root.html +195 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-run-script.html +345 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-sbom.html +439 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-search.html +272 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-shrinkwrap.html +182 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-star.html +209 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-stars.html +185 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-start.html +214 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-stop.html +209 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-team.html +272 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-test.html +207 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-token.html +266 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-uninstall.html +278 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-unpublish.html +267 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-unstar.html +206 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-update.html +486 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-version.html +341 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-view.html +297 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-whoami.html +185 -0
- package/the_app/node_modules/npm/docs/output/commands/npm.html +296 -0
- package/the_app/node_modules/npm/docs/output/commands/npx.html +284 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/folders.html +322 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/install.html +217 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/npm-shrinkwrap-json.html +184 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/npmrc.html +261 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/package-json.html +1070 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/package-lock-json.html +390 -0
- package/the_app/node_modules/npm/docs/output/using-npm/config.html +1584 -0
- package/the_app/node_modules/npm/docs/output/using-npm/dependency-selectors.html +336 -0
- package/the_app/node_modules/npm/docs/output/using-npm/developers.html +352 -0
- package/the_app/node_modules/npm/docs/output/using-npm/logging.html +228 -0
- package/the_app/node_modules/npm/docs/output/using-npm/orgs.html +236 -0
- package/the_app/node_modules/npm/docs/output/using-npm/package-spec.html +255 -0
- package/the_app/node_modules/npm/docs/output/using-npm/registry.html +226 -0
- package/the_app/node_modules/npm/docs/output/using-npm/removal.html +199 -0
- package/the_app/node_modules/npm/docs/output/using-npm/scope.html +257 -0
- package/the_app/node_modules/npm/docs/output/using-npm/scripts.html +482 -0
- package/the_app/node_modules/npm/docs/output/using-npm/workspaces.html +313 -0
- package/the_app/node_modules/npm/index.js +5 -0
- package/the_app/node_modules/npm/lib/arborist-cmd.js +53 -0
- package/the_app/node_modules/npm/lib/base-command.js +165 -0
- package/the_app/node_modules/npm/lib/cli-entry.js +74 -0
- package/the_app/node_modules/npm/lib/cli.js +4 -0
- package/the_app/node_modules/npm/lib/commands/access.js +222 -0
- package/the_app/node_modules/npm/lib/commands/adduser.js +51 -0
- package/the_app/node_modules/npm/lib/commands/audit.js +511 -0
- package/the_app/node_modules/npm/lib/commands/bugs.js +34 -0
- package/the_app/node_modules/npm/lib/commands/cache.js +213 -0
- package/the_app/node_modules/npm/lib/commands/ci.js +117 -0
- package/the_app/node_modules/npm/lib/commands/completion.js +283 -0
- package/the_app/node_modules/npm/lib/commands/config.js +378 -0
- package/the_app/node_modules/npm/lib/commands/dedupe.js +52 -0
- package/the_app/node_modules/npm/lib/commands/deprecate.js +73 -0
- package/the_app/node_modules/npm/lib/commands/diff.js +291 -0
- package/the_app/node_modules/npm/lib/commands/dist-tag.js +205 -0
- package/the_app/node_modules/npm/lib/commands/docs.js +19 -0
- package/the_app/node_modules/npm/lib/commands/doctor.js +419 -0
- package/the_app/node_modules/npm/lib/commands/edit.js +76 -0
- package/the_app/node_modules/npm/lib/commands/exec.js +106 -0
- package/the_app/node_modules/npm/lib/commands/explain.js +128 -0
- package/the_app/node_modules/npm/lib/commands/explore.js +79 -0
- package/the_app/node_modules/npm/lib/commands/find-dupes.js +27 -0
- package/the_app/node_modules/npm/lib/commands/fund.js +225 -0
- package/the_app/node_modules/npm/lib/commands/get.js +22 -0
- package/the_app/node_modules/npm/lib/commands/help-search.js +194 -0
- package/the_app/node_modules/npm/lib/commands/help.js +113 -0
- package/the_app/node_modules/npm/lib/commands/hook.js +125 -0
- package/the_app/node_modules/npm/lib/commands/init.js +247 -0
- package/the_app/node_modules/npm/lib/commands/install-ci-test.js +15 -0
- package/the_app/node_modules/npm/lib/commands/install-test.js +15 -0
- package/the_app/node_modules/npm/lib/commands/install.js +178 -0
- package/the_app/node_modules/npm/lib/commands/link.js +192 -0
- package/the_app/node_modules/npm/lib/commands/ll.js +13 -0
- package/the_app/node_modules/npm/lib/commands/login.js +51 -0
- package/the_app/node_modules/npm/lib/commands/logout.js +49 -0
- package/the_app/node_modules/npm/lib/commands/ls.js +573 -0
- package/the_app/node_modules/npm/lib/commands/org.js +155 -0
- package/the_app/node_modules/npm/lib/commands/outdated.js +369 -0
- package/the_app/node_modules/npm/lib/commands/owner.js +232 -0
- package/the_app/node_modules/npm/lib/commands/pack.js +83 -0
- package/the_app/node_modules/npm/lib/commands/ping.js +29 -0
- package/the_app/node_modules/npm/lib/commands/pkg.js +148 -0
- package/the_app/node_modules/npm/lib/commands/prefix.js +13 -0
- package/the_app/node_modules/npm/lib/commands/profile.js +407 -0
- package/the_app/node_modules/npm/lib/commands/prune.js +33 -0
- package/the_app/node_modules/npm/lib/commands/publish.js +225 -0
- package/the_app/node_modules/npm/lib/commands/query.js +122 -0
- package/the_app/node_modules/npm/lib/commands/rebuild.js +82 -0
- package/the_app/node_modules/npm/lib/commands/repo.js +54 -0
- package/the_app/node_modules/npm/lib/commands/restart.js +13 -0
- package/the_app/node_modules/npm/lib/commands/root.js +11 -0
- package/the_app/node_modules/npm/lib/commands/run-script.js +249 -0
- package/the_app/node_modules/npm/lib/commands/sbom.js +155 -0
- package/the_app/node_modules/npm/lib/commands/search.js +114 -0
- package/the_app/node_modules/npm/lib/commands/set.js +25 -0
- package/the_app/node_modules/npm/lib/commands/shrinkwrap.js +71 -0
- package/the_app/node_modules/npm/lib/commands/star.js +71 -0
- package/the_app/node_modules/npm/lib/commands/stars.js +38 -0
- package/the_app/node_modules/npm/lib/commands/start.js +13 -0
- package/the_app/node_modules/npm/lib/commands/stop.js +13 -0
- package/the_app/node_modules/npm/lib/commands/team.js +154 -0
- package/the_app/node_modules/npm/lib/commands/test.js +13 -0
- package/the_app/node_modules/npm/lib/commands/token.js +229 -0
- package/the_app/node_modules/npm/lib/commands/uninstall.js +56 -0
- package/the_app/node_modules/npm/lib/commands/unpublish.js +171 -0
- package/the_app/node_modules/npm/lib/commands/unstar.js +7 -0
- package/the_app/node_modules/npm/lib/commands/update.js +69 -0
- package/the_app/node_modules/npm/lib/commands/version.js +156 -0
- package/the_app/node_modules/npm/lib/commands/view.js +510 -0
- package/the_app/node_modules/npm/lib/commands/whoami.js +16 -0
- package/the_app/node_modules/npm/lib/es6/validate-engines.js +49 -0
- package/the_app/node_modules/npm/lib/lifecycle-cmd.js +19 -0
- package/the_app/node_modules/npm/lib/npm.js +485 -0
- package/the_app/node_modules/npm/lib/package-url-cmd.js +65 -0
- package/the_app/node_modules/npm/lib/utils/audit-error.js +40 -0
- package/the_app/node_modules/npm/lib/utils/auth.js +100 -0
- package/the_app/node_modules/npm/lib/utils/cmd-list.js +178 -0
- package/the_app/node_modules/npm/lib/utils/completion/installed-deep.js +45 -0
- package/the_app/node_modules/npm/lib/utils/completion/installed-shallow.js +19 -0
- package/the_app/node_modules/npm/lib/utils/completion.fish +40 -0
- package/the_app/node_modules/npm/lib/utils/completion.sh +70 -0
- package/the_app/node_modules/npm/lib/utils/did-you-mean.js +40 -0
- package/the_app/node_modules/npm/lib/utils/display.js +126 -0
- package/the_app/node_modules/npm/lib/utils/error-message.js +435 -0
- package/the_app/node_modules/npm/lib/utils/exit-handler.js +227 -0
- package/the_app/node_modules/npm/lib/utils/explain-dep.js +135 -0
- package/the_app/node_modules/npm/lib/utils/explain-eresolve.js +71 -0
- package/the_app/node_modules/npm/lib/utils/format-bytes.js +30 -0
- package/the_app/node_modules/npm/lib/utils/format-search-stream.js +135 -0
- package/the_app/node_modules/npm/lib/utils/get-identity.js +26 -0
- package/the_app/node_modules/npm/lib/utils/is-windows.js +6 -0
- package/the_app/node_modules/npm/lib/utils/log-file.js +236 -0
- package/the_app/node_modules/npm/lib/utils/log-shim.js +59 -0
- package/the_app/node_modules/npm/lib/utils/npm-usage.js +74 -0
- package/the_app/node_modules/npm/lib/utils/open-url-prompt.js +69 -0
- package/the_app/node_modules/npm/lib/utils/open-url.js +50 -0
- package/the_app/node_modules/npm/lib/utils/otplease.js +48 -0
- package/the_app/node_modules/npm/lib/utils/ping.js +7 -0
- package/the_app/node_modules/npm/lib/utils/pulse-till-done.js +26 -0
- package/the_app/node_modules/npm/lib/utils/queryable.js +308 -0
- package/the_app/node_modules/npm/lib/utils/read-user-info.js +68 -0
- package/the_app/node_modules/npm/lib/utils/reify-finish.js +33 -0
- package/the_app/node_modules/npm/lib/utils/reify-output.js +185 -0
- package/the_app/node_modules/npm/lib/utils/replace-info.js +31 -0
- package/the_app/node_modules/npm/lib/utils/sbom-cyclonedx.js +201 -0
- package/the_app/node_modules/npm/lib/utils/sbom-spdx.js +182 -0
- package/the_app/node_modules/npm/lib/utils/tar.js +132 -0
- package/the_app/node_modules/npm/lib/utils/timers.js +116 -0
- package/the_app/node_modules/npm/lib/utils/update-notifier.js +126 -0
- package/the_app/node_modules/npm/lib/utils/validate-lockfile.js +29 -0
- package/the_app/node_modules/npm/lib/utils/web-auth.js +20 -0
- package/the_app/node_modules/npm/lib/workspaces/get-workspaces.js +54 -0
- package/the_app/node_modules/npm/lib/workspaces/update-workspaces.js +40 -0
- package/the_app/node_modules/npm/man/man1/npm-access.1 +115 -0
- package/the_app/node_modules/npm/man/man1/npm-adduser.1 +91 -0
- package/the_app/node_modules/npm/man/man1/npm-audit.1 +446 -0
- package/the_app/node_modules/npm/man/man1/npm-bugs.1 +115 -0
- package/the_app/node_modules/npm/man/man1/npm-cache.1 +78 -0
- package/the_app/node_modules/npm/man/man1/npm-ci.1 +289 -0
- package/the_app/node_modules/npm/man/man1/npm-completion.1 +35 -0
- package/the_app/node_modules/npm/man/man1/npm-config.1 +187 -0
- package/the_app/node_modules/npm/man/man1/npm-dedupe.1 +290 -0
- package/the_app/node_modules/npm/man/man1/npm-deprecate.1 +73 -0
- package/the_app/node_modules/npm/man/man1/npm-diff.1 +307 -0
- package/the_app/node_modules/npm/man/man1/npm-dist-tag.1 +144 -0
- package/the_app/node_modules/npm/man/man1/npm-docs.1 +113 -0
- package/the_app/node_modules/npm/man/man1/npm-doctor.1 +82 -0
- package/the_app/node_modules/npm/man/man1/npm-edit.1 +43 -0
- package/the_app/node_modules/npm/man/man1/npm-exec.1 +350 -0
- package/the_app/node_modules/npm/man/man1/npm-explain.1 +118 -0
- package/the_app/node_modules/npm/man/man1/npm-explore.1 +49 -0
- package/the_app/node_modules/npm/man/man1/npm-find-dupes.1 +225 -0
- package/the_app/node_modules/npm/man/man1/npm-fund.1 +142 -0
- package/the_app/node_modules/npm/man/man1/npm-help-search.1 +37 -0
- package/the_app/node_modules/npm/man/man1/npm-help.1 +47 -0
- package/the_app/node_modules/npm/man/man1/npm-hook.1 +115 -0
- package/the_app/node_modules/npm/man/man1/npm-init.1 +366 -0
- package/the_app/node_modules/npm/man/man1/npm-install-ci-test.1 +239 -0
- package/the_app/node_modules/npm/man/man1/npm-install-test.1 +336 -0
- package/the_app/node_modules/npm/man/man1/npm-install.1 +752 -0
- package/the_app/node_modules/npm/man/man1/npm-link.1 +355 -0
- package/the_app/node_modules/npm/man/man1/npm-login.1 +95 -0
- package/the_app/node_modules/npm/man/man1/npm-logout.1 +75 -0
- package/the_app/node_modules/npm/man/man1/npm-ls.1 +283 -0
- package/the_app/node_modules/npm/man/man1/npm-org.1 +125 -0
- package/the_app/node_modules/npm/man/man1/npm-outdated.1 +182 -0
- package/the_app/node_modules/npm/man/man1/npm-owner.1 +110 -0
- package/the_app/node_modules/npm/man/man1/npm-pack.1 +130 -0
- package/the_app/node_modules/npm/man/man1/npm-ping.1 +52 -0
- package/the_app/node_modules/npm/man/man1/npm-pkg.1 +286 -0
- package/the_app/node_modules/npm/man/man1/npm-prefix.1 +63 -0
- package/the_app/node_modules/npm/man/man1/npm-profile.1 +137 -0
- package/the_app/node_modules/npm/man/man1/npm-prune.1 +184 -0
- package/the_app/node_modules/npm/man/man1/npm-publish.1 +221 -0
- package/the_app/node_modules/npm/man/man1/npm-query.1 +243 -0
- package/the_app/node_modules/npm/man/man1/npm-rebuild.1 +178 -0
- package/the_app/node_modules/npm/man/man1/npm-repo.1 +103 -0
- package/the_app/node_modules/npm/man/man1/npm-restart.1 +85 -0
- package/the_app/node_modules/npm/man/man1/npm-root.1 +56 -0
- package/the_app/node_modules/npm/man/man1/npm-run-script.1 +234 -0
- package/the_app/node_modules/npm/man/man1/npm-sbom.1 +314 -0
- package/the_app/node_modules/npm/man/man1/npm-search.1 +156 -0
- package/the_app/node_modules/npm/man/man1/npm-shrinkwrap.1 +32 -0
- package/the_app/node_modules/npm/man/man1/npm-star.1 +76 -0
- package/the_app/node_modules/npm/man/man1/npm-stars.1 +41 -0
- package/the_app/node_modules/npm/man/man1/npm-start.1 +79 -0
- package/the_app/node_modules/npm/man/man1/npm-stop.1 +75 -0
- package/the_app/node_modules/npm/man/man1/npm-team.1 +148 -0
- package/the_app/node_modules/npm/man/man1/npm-test.1 +73 -0
- package/the_app/node_modules/npm/man/man1/npm-token.1 +130 -0
- package/the_app/node_modules/npm/man/man1/npm-uninstall.1 +159 -0
- package/the_app/node_modules/npm/man/man1/npm-unpublish.1 +137 -0
- package/the_app/node_modules/npm/man/man1/npm-unstar.1 +70 -0
- package/the_app/node_modules/npm/man/man1/npm-update.1 +406 -0
- package/the_app/node_modules/npm/man/man1/npm-version.1 +229 -0
- package/the_app/node_modules/npm/man/man1/npm-view.1 +213 -0
- package/the_app/node_modules/npm/man/man1/npm-whoami.1 +39 -0
- package/the_app/node_modules/npm/man/man1/npm.1 +131 -0
- package/the_app/node_modules/npm/man/man1/npx.1 +156 -0
- package/the_app/node_modules/npm/man/man5/folders.5 +152 -0
- package/the_app/node_modules/npm/man/man5/install.5 +57 -0
- package/the_app/node_modules/npm/man/man5/npm-global.5 +152 -0
- package/the_app/node_modules/npm/man/man5/npm-json.5 +1093 -0
- package/the_app/node_modules/npm/man/man5/npm-shrinkwrap-json.5 +23 -0
- package/the_app/node_modules/npm/man/man5/npmrc.5 +129 -0
- package/the_app/node_modules/npm/man/man5/package-json.5 +1093 -0
- package/the_app/node_modules/npm/man/man5/package-lock-json.5 +156 -0
- package/the_app/node_modules/npm/man/man7/config.7 +2002 -0
- package/the_app/node_modules/npm/man/man7/dependency-selectors.7 +309 -0
- package/the_app/node_modules/npm/man/man7/developers.7 +234 -0
- package/the_app/node_modules/npm/man/man7/logging.7 +108 -0
- package/the_app/node_modules/npm/man/man7/orgs.7 +145 -0
- package/the_app/node_modules/npm/man/man7/package-spec.7 +126 -0
- package/the_app/node_modules/npm/man/man7/registry.7 +51 -0
- package/the_app/node_modules/npm/man/man7/removal.7 +60 -0
- package/the_app/node_modules/npm/man/man7/scope.7 +113 -0
- package/the_app/node_modules/npm/man/man7/scripts.7 +407 -0
- package/the_app/node_modules/npm/man/man7/workspaces.7 +214 -0
- package/the_app/node_modules/npm/node_modules/.bin/arborist +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/arborist.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/arborist.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/color-support +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/color-support.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/color-support.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/cssesc +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/cssesc.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/cssesc.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/glob +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/glob.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/glob.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/installed-package-contents +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/mkdirp +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/mkdirp.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/mkdirp.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-gyp +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-gyp.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-gyp.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-which +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-which.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-which.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/nopt +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/nopt.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/nopt.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/pacote +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/pacote.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/pacote.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/semver +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/semver.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/semver.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/LICENSE +26 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/examples/normal-usage.js +83 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/examples/safe-string.js +80 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/colors.js +211 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/trap.js +46 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/zalgo.js +110 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/index.js +13 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/america.js +10 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/rainbow.js +12 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/random.js +11 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/styles.js +95 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/safe.js +10 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/themes/generic-logging.js +12 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.cjs +317 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/index.mjs +14 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/license +9 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/package.json +86 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/index.js +42 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/package.json +28 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/agents.js +202 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/dns.js +53 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/errors.js +61 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/index.js +56 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/options.js +86 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/proxy.js +88 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/package.json +60 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/README.md +349 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/actual.js +19 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/audit.js +51 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/funding.js +38 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/ideal.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/index.js +111 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/logging.js +77 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/options.js +123 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/print-tree.js +4 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/timers.js +33 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/license.js +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/prune.js +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/reify.js +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/shrinkwrap.js +7 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/virtual.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js +143 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/audit.js +51 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +1511 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/deduper.js +19 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/index.js +167 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/isolated-reifier.js +453 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js +440 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js +303 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/pruner.js +30 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js +433 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +1593 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/set-workspaces.js +19 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/audit-report.js +414 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/calc-dep-flags.js +119 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/can-place-dep.js +436 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/case-insensitive-map.js +50 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/consistent-resolve.js +45 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/debug.js +31 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/deepest-nesting-target.js +18 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/dep-valid.js +150 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/diff.js +306 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/edge.js +301 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/from-path.js +30 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/gather-dep-set.js +43 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/get-workspace-nodes.js +36 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/index.js +8 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/inventory.js +138 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/link.js +126 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/node.js +1473 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/optional-set.js +38 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-resolves.js +11 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-set.js +147 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/peer-entry-sets.js +77 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/place-dep.js +569 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/printable.js +198 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js +862 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/realpath.js +95 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/relpath.js +3 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/retire-path.js +19 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +1176 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signal-handling.js +74 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signals.js +58 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js +34 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js +102 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tree-check.js +155 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/version-from-tgz.js +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/vuln.js +217 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/yarn-lock.js +377 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/package.json +96 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/README.md +257 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definition.js +253 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definitions.js +2403 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/index.js +66 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/env-replace.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/errors.js +23 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/index.js +959 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/nerf-dart.js +18 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/parse-field.js +86 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/set-envs.js +108 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-defs.js +59 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-description.js +21 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/umask.js +36 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/lib/index.js +34 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/index.js +163 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/package.json +70 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/get-options.js +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/node.js +9 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/errors.js +129 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/index.js +22 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/polyfill.js +428 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/index.js +13 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/move-file.js +78 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/readdir-scoped.js +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js +39 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/clone.js +172 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/errors.js +36 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/find.js +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/index.js +9 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is-clean.js +6 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is.js +6 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/lines-to-revs.js +147 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js +33 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/opts.js +12 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/revs.js +28 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js +44 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/utils.js +3 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/which.js +18 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/package.json +63 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/README.md +109 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/lib/index.js +242 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/lib/index.js +211 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/package.json +60 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js +435 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/get-dep-spec.js +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/hash.js +5 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/index.js +128 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/package.json +61 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/lib/index.js +7 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/package.json +43 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/lib/index.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/LICENSE +18 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/index.js +277 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/normalize.js +558 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-dependencies.js +75 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-scripts.js +29 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-workspaces.js +26 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/package.json +66 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/escape.js +68 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/index.js +195 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/query/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/query/lib/index.js +213 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/query/package.json +63 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-server-package.js +12 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-windows.js +2 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +40 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp +2 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp.cmd +1 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/package-envs.js +26 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +112 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/set-path.js +45 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/signal-manager.js +49 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/validate-options.js +39 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/LICENSE +201 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/index.js +396 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/package.json +36 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/utils.js +198 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/build.js +89 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/bundle.js +22 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/error.js +25 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/index.js +40 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/serialized.js +38 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/utility.js +2 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/validate.js +160 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js +89 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/events.js +185 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/api/field_behavior.js +119 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/any.js +65 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js +1308 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js +24 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js +106 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js +457 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js +167 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js +103 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js +273 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/index.js +37 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/package.json +31 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/base.js +50 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/bundle.js +70 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/dsse.js +45 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/index.js +7 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/message.js +30 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/error.js +39 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/error.js +38 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/fulcio.js +51 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/rekor.js +115 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/tsa.js +47 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/ci.js +73 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/index.js +20 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/provider.js +2 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/index.js +17 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ca.js +60 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ephemeral.js +45 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/index.js +87 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/index.js +21 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/signer.js +17 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/types/fetch.js +2 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/crypto.js +27 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/dsse.js +25 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/encoding.js +28 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/index.js +48 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/json.js +61 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/oidc.js +54 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/pem.js +27 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/ua.js +33 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/index.js +23 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/client.js +61 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/entry.js +136 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/index.js +82 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/client.js +43 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/index.js +44 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/witness.js +2 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/appdata.js +44 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/client.js +94 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/error.js +12 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/index.js +56 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/target.js +80 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/package.json +41 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/store/public-good-instance-root.json +1 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/lib/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/base.js +83 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/delegations.js +115 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/error.js +27 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/file.js +183 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/index.js +24 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/key.js +85 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/metadata.js +158 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/role.js +299 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/root.js +116 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/signature.js +38 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/snapshot.js +71 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/targets.js +92 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/timestamp.js +58 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/guard.js +33 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/index.js +28 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/key.js +143 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/oid.js +27 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/types.js +2 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/verify.js +13 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
- package/the_app/node_modules/npm/node_modules/abbrev/lib/index.js +50 -0
- package/the_app/node_modules/npm/node_modules/abbrev/package.json +43 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/browser.js +13 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/browser.mjs +11 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.js +127 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.mjs +118 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.umd.js +5 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/package.json +97 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/polyfill.js +21 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/polyfill.mjs +19 -0
- package/the_app/node_modules/npm/node_modules/agent-base/dist/helpers.js +66 -0
- package/the_app/node_modules/npm/node_modules/agent-base/dist/index.js +112 -0
- package/the_app/node_modules/npm/node_modules/agent-base/package.json +49 -0
- package/the_app/node_modules/npm/node_modules/aggregate-error/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/aggregate-error/license +9 -0
- package/the_app/node_modules/npm/node_modules/aggregate-error/package.json +41 -0
- package/the_app/node_modules/npm/node_modules/ansi-regex/index.js +8 -0
- package/the_app/node_modules/npm/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/ansi-regex/package.json +58 -0
- package/the_app/node_modules/npm/node_modules/ansi-styles/index.js +223 -0
- package/the_app/node_modules/npm/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/npm/node_modules/ansi-styles/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/aproba/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/aproba/index.js +105 -0
- package/the_app/node_modules/npm/node_modules/aproba/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/archy/LICENSE +18 -0
- package/the_app/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
- package/the_app/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
- package/the_app/node_modules/npm/node_modules/archy/index.js +35 -0
- package/the_app/node_modules/npm/node_modules/archy/package.json +40 -0
- package/the_app/node_modules/npm/node_modules/archy/test/beep.js +40 -0
- package/the_app/node_modules/npm/node_modules/archy/test/multi_line.js +45 -0
- package/the_app/node_modules/npm/node_modules/archy/test/non_unicode.js +40 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/LICENSE.md +18 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-base.js +13 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-group.js +112 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-stream.js +38 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker.js +34 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/balanced-match/LICENSE.md +21 -0
- package/the_app/node_modules/npm/node_modules/balanced-match/index.js +62 -0
- package/the_app/node_modules/npm/node_modules/balanced-match/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/base64-js/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/base64-js/base64js.min.js +1 -0
- package/the_app/node_modules/npm/node_modules/base64-js/index.js +150 -0
- package/the_app/node_modules/npm/node_modules/base64-js/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/bin-links/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/bin-target.js +9 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/check-bin.js +74 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/check-bins.js +18 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/fix-bin.js +42 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/get-node-modules.js +19 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/get-paths.js +42 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/get-prefix.js +3 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/index.js +44 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/is-windows.js +2 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/link-bin.js +9 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/link-bins.js +23 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/link-gently.js +90 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/link-mans.js +53 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/man-target.js +6 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/shim-bin.js +86 -0
- package/the_app/node_modules/npm/node_modules/bin-links/package.json +59 -0
- package/the_app/node_modules/npm/node_modules/binary-extensions/binary-extensions.json +260 -0
- package/the_app/node_modules/npm/node_modules/binary-extensions/index.js +1 -0
- package/the_app/node_modules/npm/node_modules/binary-extensions/license +9 -0
- package/the_app/node_modules/npm/node_modules/binary-extensions/package.json +38 -0
- package/the_app/node_modules/npm/node_modules/brace-expansion/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/brace-expansion/index.js +203 -0
- package/the_app/node_modules/npm/node_modules/brace-expansion/package.json +46 -0
- package/the_app/node_modules/npm/node_modules/buffer/AUTHORS.md +73 -0
- package/the_app/node_modules/npm/node_modules/buffer/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/buffer/index.js +2106 -0
- package/the_app/node_modules/npm/node_modules/buffer/package.json +93 -0
- package/the_app/node_modules/npm/node_modules/builtins/License +20 -0
- package/the_app/node_modules/npm/node_modules/builtins/index.js +80 -0
- package/the_app/node_modules/npm/node_modules/builtins/package.json +20 -0
- package/the_app/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/content/path.js +29 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/content/read.js +166 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/content/rm.js +18 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/content/write.js +206 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/entry-index.js +330 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/get.js +170 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/index.js +42 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/memoization.js +72 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/put.js +80 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/rm.js +31 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/util/glob.js +7 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +7 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/util/tmp.js +26 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/verify.js +257 -0
- package/the_app/node_modules/npm/node_modules/cacache/package.json +82 -0
- package/the_app/node_modules/npm/node_modules/chalk/license +9 -0
- package/the_app/node_modules/npm/node_modules/chalk/package.json +83 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/index.js +225 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/utilities.js +33 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
- package/the_app/node_modules/npm/node_modules/chownr/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/chownr/chownr.js +167 -0
- package/the_app/node_modules/npm/node_modules/chownr/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/ci-info/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/ci-info/index.js +90 -0
- package/the_app/node_modules/npm/node_modules/ci-info/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/ci-info/vendors.json +336 -0
- package/the_app/node_modules/npm/node_modules/cidr-regex/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/cidr-regex/index.js +15 -0
- package/the_app/node_modules/npm/node_modules/cidr-regex/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/clean-stack/index.js +40 -0
- package/the_app/node_modules/npm/node_modules/clean-stack/license +9 -0
- package/the_app/node_modules/npm/node_modules/clean-stack/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/color.js +16 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/index.js +82 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/license +20 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/test.js +101 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/index.js +1 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/package.json +100 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/cell.js +409 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/debug.js +28 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/layout-manager.js +254 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/table.js +106 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/utils.js +336 -0
- package/the_app/node_modules/npm/node_modules/clone/LICENSE +18 -0
- package/the_app/node_modules/npm/node_modules/clone/clone.iml +10 -0
- package/the_app/node_modules/npm/node_modules/clone/clone.js +166 -0
- package/the_app/node_modules/npm/node_modules/clone/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/cmd-shim/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/cmd-shim/lib/index.js +247 -0
- package/the_app/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +49 -0
- package/the_app/node_modules/npm/node_modules/cmd-shim/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/color-convert/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/color-convert/conversions.js +839 -0
- package/the_app/node_modules/npm/node_modules/color-convert/index.js +81 -0
- package/the_app/node_modules/npm/node_modules/color-convert/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/color-convert/route.js +97 -0
- package/the_app/node_modules/npm/node_modules/color-name/LICENSE +8 -0
- package/the_app/node_modules/npm/node_modules/color-name/index.js +152 -0
- package/the_app/node_modules/npm/node_modules/color-name/package.json +28 -0
- package/the_app/node_modules/npm/node_modules/color-support/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/color-support/README.md +129 -0
- package/the_app/node_modules/npm/node_modules/color-support/bin.js +3 -0
- package/the_app/node_modules/npm/node_modules/color-support/browser.js +14 -0
- package/the_app/node_modules/npm/node_modules/color-support/index.js +134 -0
- package/the_app/node_modules/npm/node_modules/color-support/package.json +36 -0
- package/the_app/node_modules/npm/node_modules/columnify/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/columnify/Makefile +9 -0
- package/the_app/node_modules/npm/node_modules/columnify/columnify.js +306 -0
- package/the_app/node_modules/npm/node_modules/columnify/index.js +297 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/columnify/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/columnify/utils.js +193 -0
- package/the_app/node_modules/npm/node_modules/columnify/width.js +6 -0
- package/the_app/node_modules/npm/node_modules/common-ancestor-path/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/common-ancestor-path/index.js +17 -0
- package/the_app/node_modules/npm/node_modules/common-ancestor-path/package.json +28 -0
- package/the_app/node_modules/npm/node_modules/console-control-strings/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/console-control-strings/index.js +125 -0
- package/the_app/node_modules/npm/node_modules/console-control-strings/package.json +27 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/index.js +39 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/parse.js +91 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/escape.js +45 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which +16 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/README.md +54 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/package.json +43 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/which.js +125 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/package.json +73 -0
- package/the_app/node_modules/npm/node_modules/cssesc/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/npm/node_modules/cssesc/README.md +201 -0
- package/the_app/node_modules/npm/node_modules/cssesc/bin/cssesc +116 -0
- package/the_app/node_modules/npm/node_modules/cssesc/cssesc.js +110 -0
- package/the_app/node_modules/npm/node_modules/cssesc/man/cssesc.1 +70 -0
- package/the_app/node_modules/npm/node_modules/cssesc/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/debug/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/debug/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/npm/node_modules/debug/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/npm/node_modules/debug/node_modules/ms/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/debug/package.json +59 -0
- package/the_app/node_modules/npm/node_modules/debug/src/browser.js +269 -0
- package/the_app/node_modules/npm/node_modules/debug/src/common.js +274 -0
- package/the_app/node_modules/npm/node_modules/debug/src/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/debug/src/node.js +263 -0
- package/the_app/node_modules/npm/node_modules/defaults/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/defaults/index.js +13 -0
- package/the_app/node_modules/npm/node_modules/defaults/package.json +33 -0
- package/the_app/node_modules/npm/node_modules/defaults/test.js +34 -0
- package/the_app/node_modules/npm/node_modules/delegates/History.md +22 -0
- package/the_app/node_modules/npm/node_modules/delegates/License +20 -0
- package/the_app/node_modules/npm/node_modules/delegates/Makefile +8 -0
- package/the_app/node_modules/npm/node_modules/delegates/index.js +121 -0
- package/the_app/node_modules/npm/node_modules/delegates/package.json +13 -0
- package/the_app/node_modules/npm/node_modules/delegates/test/index.js +94 -0
- package/the_app/node_modules/npm/node_modules/diff/CONTRIBUTING.md +39 -0
- package/the_app/node_modules/npm/node_modules/diff/LICENSE +31 -0
- package/the_app/node_modules/npm/node_modules/diff/dist/diff.js +1627 -0
- package/the_app/node_modules/npm/node_modules/diff/dist/diff.min.js +38 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/convert/dmp.js +32 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/convert/xml.js +42 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/array.js +45 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/base.js +307 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/character.js +37 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/css.js +41 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/json.js +163 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/line.js +89 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/sentence.js +41 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/word.js +108 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/index.es6.js +1561 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/index.js +216 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/index.mjs +1561 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/patch/apply.js +238 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/patch/create.js +272 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/patch/merge.js +613 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/patch/parse.js +167 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/util/array.js +32 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/util/distance-iterator.js +57 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/util/params.js +24 -0
- package/the_app/node_modules/npm/node_modules/diff/package.json +87 -0
- package/the_app/node_modules/npm/node_modules/diff/release-notes.md +309 -0
- package/the_app/node_modules/npm/node_modules/diff/runtime.js +3 -0
- package/the_app/node_modules/npm/node_modules/eastasianwidth/eastasianwidth.js +311 -0
- package/the_app/node_modules/npm/node_modules/eastasianwidth/package.json +18 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/package.json +50 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/encoding/LICENSE +16 -0
- package/the_app/node_modules/npm/node_modules/encoding/lib/encoding.js +83 -0
- package/the_app/node_modules/npm/node_modules/encoding/package.json +18 -0
- package/the_app/node_modules/npm/node_modules/encoding/test/test.js +49 -0
- package/the_app/node_modules/npm/node_modules/env-paths/index.js +74 -0
- package/the_app/node_modules/npm/node_modules/env-paths/license +9 -0
- package/the_app/node_modules/npm/node_modules/env-paths/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/err-code/bower.json +30 -0
- package/the_app/node_modules/npm/node_modules/err-code/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/err-code/index.umd.js +51 -0
- package/the_app/node_modules/npm/node_modules/err-code/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/err-code/test/test.js +159 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.js +871 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.mjs +862 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.umd.js +6 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/package.json +82 -0
- package/the_app/node_modules/npm/node_modules/events/.airtap.yml +15 -0
- package/the_app/node_modules/npm/node_modules/events/History.md +118 -0
- package/the_app/node_modules/npm/node_modules/events/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/events/events.js +497 -0
- package/the_app/node_modules/npm/node_modules/events/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/events/security.md +10 -0
- package/the_app/node_modules/npm/node_modules/events/tests/add-listeners.js +111 -0
- package/the_app/node_modules/npm/node_modules/events/tests/check-listener-leaks.js +101 -0
- package/the_app/node_modules/npm/node_modules/events/tests/common.js +104 -0
- package/the_app/node_modules/npm/node_modules/events/tests/errors.js +13 -0
- package/the_app/node_modules/npm/node_modules/events/tests/events-list.js +28 -0
- package/the_app/node_modules/npm/node_modules/events/tests/events-once.js +234 -0
- package/the_app/node_modules/npm/node_modules/events/tests/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/events/tests/legacy-compat.js +16 -0
- package/the_app/node_modules/npm/node_modules/events/tests/listener-count.js +37 -0
- package/the_app/node_modules/npm/node_modules/events/tests/listeners-side-effects.js +56 -0
- package/the_app/node_modules/npm/node_modules/events/tests/listeners.js +168 -0
- package/the_app/node_modules/npm/node_modules/events/tests/max-listeners.js +47 -0
- package/the_app/node_modules/npm/node_modules/events/tests/method-names.js +35 -0
- package/the_app/node_modules/npm/node_modules/events/tests/modify-in-emit.js +90 -0
- package/the_app/node_modules/npm/node_modules/events/tests/num-args.js +60 -0
- package/the_app/node_modules/npm/node_modules/events/tests/once.js +83 -0
- package/the_app/node_modules/npm/node_modules/events/tests/prepend.js +31 -0
- package/the_app/node_modules/npm/node_modules/events/tests/remove-all-listeners.js +133 -0
- package/the_app/node_modules/npm/node_modules/events/tests/remove-listeners.js +212 -0
- package/the_app/node_modules/npm/node_modules/events/tests/set-max-listeners-side-effects.js +31 -0
- package/the_app/node_modules/npm/node_modules/events/tests/special-event-names.js +45 -0
- package/the_app/node_modules/npm/node_modules/events/tests/subclass.js +66 -0
- package/the_app/node_modules/npm/node_modules/events/tests/symbols.js +25 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/backoff.js +118 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js +82 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/options.js +31 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/package.json +61 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/LICENSE.md +21 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/bench.js +96 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/esm/mod.js +138 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/mod.js +142 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/package.json +72 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/test.js +55 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/index.js +154 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/index.js +146 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/package.json +83 -0
- package/the_app/node_modules/npm/node_modules/fs-minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/fs-minipass/lib/index.js +443 -0
- package/the_app/node_modules/npm/node_modules/fs-minipass/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/function-bind/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/function-bind/implementation.js +84 -0
- package/the_app/node_modules/npm/node_modules/function-bind/index.js +5 -0
- package/the_app/node_modules/npm/node_modules/function-bind/package.json +87 -0
- package/the_app/node_modules/npm/node_modules/function-bind/test/index.js +252 -0
- package/the_app/node_modules/npm/node_modules/gauge/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/base-theme.js +18 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/error.js +24 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/has-color.js +4 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/index.js +289 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/plumbing.js +50 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/process.js +3 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/progress-bar.js +41 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/render-template.js +222 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/set-immediate.js +7 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/set-interval.js +3 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/spin.js +5 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/template-item.js +87 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/theme-set.js +122 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/themes.js +56 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/wide-truncate.js +31 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/gauge/package.json +68 -0
- package/the_app/node_modules/npm/node_modules/glob/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/glob/README.md +1214 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js +243 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js +108 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts +96 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js +68 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js +219 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js +302 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js +358 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts +3 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs +275 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts +344 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js +239 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts +20 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js +104 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts +96 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js +56 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts +77 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js +215 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts +59 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js +295 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts +96 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js +352 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/package.json +97 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/clone.js +23 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/polyfills.js +355 -0
- package/the_app/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/has-unicode/index.js +16 -0
- package/the_app/node_modules/npm/node_modules/has-unicode/package.json +30 -0
- package/the_app/node_modules/npm/node_modules/hasown/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/hasown/index.js +8 -0
- package/the_app/node_modules/npm/node_modules/hasown/package.json +91 -0
- package/the_app/node_modules/npm/node_modules/hasown/tsconfig.json +49 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/from-url.js +122 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/hosts.js +227 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/index.js +179 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/parse-url.js +78 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/package.json +66 -0
- package/the_app/node_modules/npm/node_modules/http-cache-semantics/LICENSE +9 -0
- package/the_app/node_modules/npm/node_modules/http-cache-semantics/index.js +674 -0
- package/the_app/node_modules/npm/node_modules/http-cache-semantics/package.json +18 -0
- package/the_app/node_modules/npm/node_modules/http-proxy-agent/LICENSE +25 -0
- package/the_app/node_modules/npm/node_modules/http-proxy-agent/dist/index.js +147 -0
- package/the_app/node_modules/npm/node_modules/http-proxy-agent/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/index.js +174 -0
- package/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/the_app/node_modules/npm/node_modules/https-proxy-agent/package.json +50 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/index.js +23 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/internal.js +198 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf16.js +197 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf32.js +319 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/lib/index.js +180 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/lib/streams.js +109 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/ieee754/LICENSE +11 -0
- package/the_app/node_modules/npm/node_modules/ieee754/index.js +85 -0
- package/the_app/node_modules/npm/node_modules/ieee754/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/ignore-walk/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/ignore-walk/lib/index.js +310 -0
- package/the_app/node_modules/npm/node_modules/ignore-walk/package.json +63 -0
- package/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/the_app/node_modules/npm/node_modules/imurmurhash/package.json +40 -0
- package/the_app/node_modules/npm/node_modules/indent-string/index.js +35 -0
- package/the_app/node_modules/npm/node_modules/indent-string/license +9 -0
- package/the_app/node_modules/npm/node_modules/indent-string/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/ini/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/ini/lib/ini.js +278 -0
- package/the_app/node_modules/npm/node_modules/ini/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/init-package-json/LICENSE.md +18 -0
- package/the_app/node_modules/npm/node_modules/init-package-json/lib/default-input.js +262 -0
- package/the_app/node_modules/npm/node_modules/init-package-json/lib/init-package-json.js +145 -0
- package/the_app/node_modules/npm/node_modules/init-package-json/package.json +75 -0
- package/the_app/node_modules/npm/node_modules/ip/lib/ip.js +422 -0
- package/the_app/node_modules/npm/node_modules/ip/package.json +25 -0
- package/the_app/node_modules/npm/node_modules/ip-regex/index.js +36 -0
- package/the_app/node_modules/npm/node_modules/ip-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/ip-regex/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/is-cidr/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/is-cidr/index.js +9 -0
- package/the_app/node_modules/npm/node_modules/is-cidr/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/core.json +158 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/index.js +69 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/package.json +73 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/test/index.js +133 -0
- package/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/license +9 -0
- package/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/is-lambda/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/is-lambda/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/is-lambda/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/is-lambda/test.js +16 -0
- package/the_app/node_modules/npm/node_modules/isexe/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/isexe/index.js +57 -0
- package/the_app/node_modules/npm/node_modules/isexe/mode.js +41 -0
- package/the_app/node_modules/npm/node_modules/isexe/package.json +31 -0
- package/the_app/node_modules/npm/node_modules/isexe/test/basic.js +221 -0
- package/the_app/node_modules/npm/node_modules/isexe/windows.js +42 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/LICENSE.md +55 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/index.js +850 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/index.js +840 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/package.json +94 -0
- package/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
- package/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/lib/index.js +135 -0
- package/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/package.json +49 -0
- package/the_app/node_modules/npm/node_modules/json-stringify-nice/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/json-stringify-nice/index.js +38 -0
- package/the_app/node_modules/npm/node_modules/json-stringify-nice/package.json +40 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/LICENSE +24 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/bench.js +26 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/examples/twitterfeed.js +30 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/jsonparse.js +413 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/package.json +22 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic.json +167 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic2.json +180 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/big-token.js +24 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/boundary.js +110 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/offset.js +67 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/primitives.js +57 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/surrogate.js +26 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/unvalid.js +15 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/utf8.js +38 -0
- package/the_app/node_modules/npm/node_modules/just-diff/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/just-diff/index.cjs +230 -0
- package/the_app/node_modules/npm/node_modules/just-diff/index.mjs +227 -0
- package/the_app/node_modules/npm/node_modules/just-diff/package.json +33 -0
- package/the_app/node_modules/npm/node_modules/just-diff/rollup.config.js +3 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/index.cjs +161 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/index.mjs +158 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/rollup.config.js +3 -0
- package/the_app/node_modules/npm/node_modules/libnpmaccess/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmaccess/README.md +93 -0
- package/the_app/node_modules/npm/node_modules/libnpmaccess/lib/index.js +140 -0
- package/the_app/node_modules/npm/node_modules/libnpmaccess/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/README.md +96 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/format-diff.js +96 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/index.js +62 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/should-print-patch.js +22 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/tarball.js +38 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/untar.js +96 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/package.json +70 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/README.md +48 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/file-exists.js +33 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js +22 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/index.js +285 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/is-windows.js +1 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/no-tty.js +1 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/run-script.js +71 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/package.json +79 -0
- package/the_app/node_modules/npm/node_modules/libnpmfund/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/libnpmfund/README.md +131 -0
- package/the_app/node_modules/npm/node_modules/libnpmfund/lib/index.js +210 -0
- package/the_app/node_modules/npm/node_modules/libnpmfund/package.json +64 -0
- package/the_app/node_modules/npm/node_modules/libnpmhook/LICENSE.md +16 -0
- package/the_app/node_modules/npm/node_modules/libnpmhook/README.md +271 -0
- package/the_app/node_modules/npm/node_modules/libnpmhook/lib/index.js +70 -0
- package/the_app/node_modules/npm/node_modules/libnpmhook/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/libnpmorg/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmorg/README.md +148 -0
- package/the_app/node_modules/npm/node_modules/libnpmorg/lib/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/libnpmorg/package.json +61 -0
- package/the_app/node_modules/npm/node_modules/libnpmpack/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmpack/README.md +55 -0
- package/the_app/node_modules/npm/node_modules/libnpmpack/lib/index.js +69 -0
- package/the_app/node_modules/npm/node_modules/libnpmpack/package.json +58 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/README.md +120 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/provenance.js +245 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/publish.js +225 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/unpublish.js +119 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/package.json +64 -0
- package/the_app/node_modules/npm/node_modules/libnpmsearch/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmsearch/README.md +173 -0
- package/the_app/node_modules/npm/node_modules/libnpmsearch/lib/index.js +71 -0
- package/the_app/node_modules/npm/node_modules/libnpmsearch/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/libnpmteam/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmteam/README.md +188 -0
- package/the_app/node_modules/npm/node_modules/libnpmteam/lib/index.js +92 -0
- package/the_app/node_modules/npm/node_modules/libnpmteam/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/README.md +164 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/commit.js +17 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/enforce-clean.js +32 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/index.js +40 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/read-json.js +7 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/retrieve-tag.js +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/tag.js +30 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/version.js +140 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/write-json.js +16 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/index.js +1441 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/index.js +1437 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/package.json +118 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/LICENSE +16 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/entry.js +469 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/errors.js +11 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/index.js +49 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/key.js +17 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/policy.js +161 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/fetch.js +118 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/index.js +41 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/options.js +54 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/pipeline.js +41 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js +127 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/package.json +80 -0
- package/the_app/node_modules/npm/node_modules/minimatch/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/ast.js +589 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/escape.js +22 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/index.js +1011 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/unescape.js +24 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/ast.js +585 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/escape.js +18 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/index.js +995 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/unescape.js +20 -0
- package/the_app/node_modules/npm/node_modules/minimatch/package.json +86 -0
- package/the_app/node_modules/npm/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/index.js +1028 -0
- package/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/minipass/dist/esm/index.js +1018 -0
- package/the_app/node_modules/npm/node_modules/minipass/dist/esm/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/minipass/package.json +82 -0
- package/the_app/node_modules/npm/node_modules/minipass-collect/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-collect/index.js +71 -0
- package/the_app/node_modules/npm/node_modules/minipass-collect/package.json +30 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/LICENSE +28 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/abort-error.js +17 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/blob.js +97 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/body.js +350 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/fetch-error.js +32 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/headers.js +267 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/index.js +377 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/request.js +282 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/response.js +90 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/package.json +69 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/index.js +39 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/LICENSE +27 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/index.js +227 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/index.js +128 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/package.json +29 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/index.js +67 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/test/basic.js +83 -0
- package/the_app/node_modules/npm/node_modules/minizlib/LICENSE +26 -0
- package/the_app/node_modules/npm/node_modules/minizlib/constants.js +115 -0
- package/the_app/node_modules/npm/node_modules/minizlib/index.js +348 -0
- package/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minizlib/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/bin/cmd.js +68 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/index.js +31 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/find-made.js +29 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/opts-arg.js +23 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/path-arg.js +29 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/use-native.js +10 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/readme.markdown +266 -0
- package/the_app/node_modules/npm/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/npm/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/npm/node_modules/ms/package.json +38 -0
- package/the_app/node_modules/npm/node_modules/mute-stream/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/mute-stream/lib/index.js +142 -0
- package/the_app/node_modules/npm/node_modules/mute-stream/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/negotiator/HISTORY.md +108 -0
- package/the_app/node_modules/npm/node_modules/negotiator/LICENSE +24 -0
- package/the_app/node_modules/npm/node_modules/negotiator/index.js +82 -0
- package/the_app/node_modules/npm/node_modules/negotiator/lib/charset.js +169 -0
- package/the_app/node_modules/npm/node_modules/negotiator/lib/encoding.js +184 -0
- package/the_app/node_modules/npm/node_modules/negotiator/lib/language.js +179 -0
- package/the_app/node_modules/npm/node_modules/negotiator/lib/mediaType.js +294 -0
- package/the_app/node_modules/npm/node_modules/negotiator/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +905 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/README.md +263 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/SECURITY.md +2 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/addon.gypi +204 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +138 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +28 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/README.md +30 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1270 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +153 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +271 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +692 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +654 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +78 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +804 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1173 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1318 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +123 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +103 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +58 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2711 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3981 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2933 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +55 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +25 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3115 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +98 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +771 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1262 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1933 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +302 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3198 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pyproject.toml +119 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/build.js +220 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/clean.js +15 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/configure.js +282 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/create-config-gypi.js +150 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/download.js +39 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +63 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/find-python.js +310 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/find-visualstudio.js +443 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/install.js +415 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/list.js +26 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/log.js +169 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +188 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/process-release.js +146 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +12 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/remove.js +43 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/util.js +81 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +39 -0
- package/the_app/node_modules/npm/node_modules/nopt/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/nopt/README.md +213 -0
- package/the_app/node_modules/npm/node_modules/nopt/bin/nopt.js +29 -0
- package/the_app/node_modules/npm/node_modules/nopt/lib/debug.js +4 -0
- package/the_app/node_modules/npm/node_modules/nopt/lib/nopt-lib.js +479 -0
- package/the_app/node_modules/npm/node_modules/nopt/lib/nopt.js +30 -0
- package/the_app/node_modules/npm/node_modules/nopt/lib/type-defs.js +91 -0
- package/the_app/node_modules/npm/node_modules/nopt/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +24 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +475 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +22 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +48 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +11 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/package.json +62 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/LICENSE +16 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/colors.js +22 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/exit-code.js +14 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/index.js +41 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/detail.js +86 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/install.js +75 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/json.js +1 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/quiet.js +1 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/package.json +60 -0
- package/the_app/node_modules/npm/node_modules/npm-bundled/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/npm-bundled/lib/index.js +254 -0
- package/the_app/node_modules/npm/node_modules/npm-bundled/package.json +49 -0
- package/the_app/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
- package/the_app/node_modules/npm/node_modules/npm-install-checks/lib/index.js +101 -0
- package/the_app/node_modules/npm/node_modules/npm-install-checks/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/lib/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/npm-package-arg/lib/npa.js +411 -0
- package/the_app/node_modules/npm/node_modules/npm-package-arg/package.json +67 -0
- package/the_app/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/npm-packlist/lib/index.js +484 -0
- package/the_app/node_modules/npm/node_modules/npm-packlist/package.json +61 -0
- package/the_app/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +16 -0
- package/the_app/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js +218 -0
- package/the_app/node_modules/npm/node_modules/npm-pick-manifest/package.json +63 -0
- package/the_app/node_modules/npm/node_modules/npm-profile/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/npm-profile/lib/index.js +295 -0
- package/the_app/node_modules/npm/node_modules/npm-profile/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/auth.js +181 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js +100 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/clean-url.js +27 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/default-opts.js +19 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/errors.js +80 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/index.js +249 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/package.json +67 -0
- package/the_app/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
- package/the_app/node_modules/npm/node_modules/npm-user-validate/lib/index.js +61 -0
- package/the_app/node_modules/npm/node_modules/npm-user-validate/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/npmlog/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/npmlog/lib/log.js +400 -0
- package/the_app/node_modules/npm/node_modules/npmlog/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/p-map/index.js +81 -0
- package/the_app/node_modules/npm/node_modules/p-map/license +9 -0
- package/the_app/node_modules/npm/node_modules/p-map/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/pacote/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/pacote/README.md +285 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/bin.js +158 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/dir.js +108 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/fetcher.js +505 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/file.js +96 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/git.js +327 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/index.js +23 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/registry.js +368 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/remote.js +91 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/add-git-sha.js +15 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/cache-dir.js +15 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/is-package-bin.js +25 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/npm.js +14 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/tar-create-options.js +31 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/trailing-slashes.js +10 -0
- package/the_app/node_modules/npm/node_modules/pacote/package.json +79 -0
- package/the_app/node_modules/npm/node_modules/parse-conflict-json/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/parse-conflict-json/lib/index.js +104 -0
- package/the_app/node_modules/npm/node_modules/parse-conflict-json/package.json +49 -0
- package/the_app/node_modules/npm/node_modules/path-key/index.js +16 -0
- package/the_app/node_modules/npm/node_modules/path-key/license +9 -0
- package/the_app/node_modules/npm/node_modules/path-key/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/LICENSE.md +55 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/index.js +2018 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/index.js +1983 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/package.json +87 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/API.md +872 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/index.js +17 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/processor.js +170 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/package.json +79 -0
- package/the_app/node_modules/npm/node_modules/proc-log/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/proc-log/lib/index.js +23 -0
- package/the_app/node_modules/npm/node_modules/proc-log/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/process/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/process/browser.js +184 -0
- package/the_app/node_modules/npm/node_modules/process/index.js +2 -0
- package/the_app/node_modules/npm/node_modules/process/package.json +27 -0
- package/the_app/node_modules/npm/node_modules/process/test.js +199 -0
- package/the_app/node_modules/npm/node_modules/promise-all-reject-late/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/promise-all-reject-late/index.js +27 -0
- package/the_app/node_modules/npm/node_modules/promise-all-reject-late/package.json +22 -0
- package/the_app/node_modules/npm/node_modules/promise-all-reject-late/test/index.js +88 -0
- package/the_app/node_modules/npm/node_modules/promise-call-limit/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/promise-call-limit/index.js +52 -0
- package/the_app/node_modules/npm/node_modules/promise-call-limit/package.json +29 -0
- package/the_app/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
- package/the_app/node_modules/npm/node_modules/promise-inflight/package.json +24 -0
- package/the_app/node_modules/npm/node_modules/promise-retry/LICENSE +19 -0
- package/the_app/node_modules/npm/node_modules/promise-retry/index.js +52 -0
- package/the_app/node_modules/npm/node_modules/promise-retry/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/promise-retry/test/test.js +263 -0
- package/the_app/node_modules/npm/node_modules/promzard/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/promzard/lib/index.js +175 -0
- package/the_app/node_modules/npm/node_modules/promzard/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/README.md +82 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +101 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/test/main.js +63 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
- package/the_app/node_modules/npm/node_modules/read/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/read/lib/read.js +82 -0
- package/the_app/node_modules/npm/node_modules/read/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/read-cmd-shim/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/read-cmd-shim/lib/index.js +75 -0
- package/the_app/node_modules/npm/node_modules/read-cmd-shim/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/read-package-json/lib/read-json.js +589 -0
- package/the_app/node_modules/npm/node_modules/read-package-json/package.json +65 -0
- package/the_app/node_modules/npm/node_modules/read-package-json-fast/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/read-package-json-fast/lib/index.js +141 -0
- package/the_app/node_modules/npm/node_modules/read-package-json-fast/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/LICENSE +47 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_passthrough.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js +49 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/buffer_list.js +157 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/compose.js +194 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/destroy.js +290 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplex.js +143 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplexify.js +379 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +281 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/from.js +98 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/lazy_transform.js +51 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/legacy.js +89 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/operators.js +457 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/passthrough.js +39 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/pipeline.js +465 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/readable.js +1247 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/transform.js +180 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/utils.js +321 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/writable.js +817 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/validators.js +510 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/browser.js +35 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/errors.js +341 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/index.js +65 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/primordials.js +101 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/util.js +128 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/stream/promises.js +43 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/stream.js +136 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/package.json +86 -0
- package/the_app/node_modules/npm/node_modules/retry/License +21 -0
- package/the_app/node_modules/npm/node_modules/retry/Makefile +18 -0
- package/the_app/node_modules/npm/node_modules/retry/equation.gif +0 -0
- package/the_app/node_modules/npm/node_modules/retry/example/dns.js +31 -0
- package/the_app/node_modules/npm/node_modules/retry/example/stop.js +40 -0
- package/the_app/node_modules/npm/node_modules/retry/index.js +1 -0
- package/the_app/node_modules/npm/node_modules/retry/lib/retry.js +100 -0
- package/the_app/node_modules/npm/node_modules/retry/lib/retry_operation.js +158 -0
- package/the_app/node_modules/npm/node_modules/retry/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/retry/test/common.js +10 -0
- package/the_app/node_modules/npm/node_modules/retry/test/integration/test-forever.js +24 -0
- package/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +258 -0
- package/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
- package/the_app/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js +69 -0
- package/the_app/node_modules/npm/node_modules/safe-buffer/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/safe-buffer/index.js +65 -0
- package/the_app/node_modules/npm/node_modules/safe-buffer/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/dangerous.js +58 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/safer.js +77 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/tests.js +406 -0
- package/the_app/node_modules/npm/node_modules/semver/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/semver/README.md +637 -0
- package/the_app/node_modules/npm/node_modules/semver/bin/semver.js +197 -0
- package/the_app/node_modules/npm/node_modules/semver/classes/comparator.js +141 -0
- package/the_app/node_modules/npm/node_modules/semver/classes/index.js +5 -0
- package/the_app/node_modules/npm/node_modules/semver/classes/range.js +539 -0
- package/the_app/node_modules/npm/node_modules/semver/classes/semver.js +302 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/clean.js +6 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/cmp.js +52 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/coerce.js +52 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/compare-build.js +7 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/compare-loose.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/compare.js +5 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/diff.js +65 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/eq.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/gt.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/gte.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/inc.js +19 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/lt.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/lte.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/major.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/minor.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/neq.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/parse.js +16 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/patch.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/prerelease.js +6 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/rcompare.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/rsort.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/satisfies.js +10 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/sort.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/valid.js +6 -0
- package/the_app/node_modules/npm/node_modules/semver/index.js +89 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/constants.js +35 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/debug.js +9 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/identifiers.js +23 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/parse-options.js +15 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/re.js +212 -0
- package/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/index.js +334 -0
- package/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/semver/package.json +87 -0
- package/the_app/node_modules/npm/node_modules/semver/preload.js +2 -0
- package/the_app/node_modules/npm/node_modules/semver/range.bnf +16 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/gtr.js +4 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/intersects.js +7 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/ltr.js +4 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/min-version.js +61 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/outside.js +80 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/simplify.js +47 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/subset.js +247 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/to-comparators.js +8 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/valid.js +11 -0
- package/the_app/node_modules/npm/node_modules/set-blocking/LICENSE.txt +14 -0
- package/the_app/node_modules/npm/node_modules/set-blocking/index.js +7 -0
- package/the_app/node_modules/npm/node_modules/set-blocking/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/shebang-command/index.js +19 -0
- package/the_app/node_modules/npm/node_modules/shebang-command/license +9 -0
- package/the_app/node_modules/npm/node_modules/shebang-command/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/shebang-regex/index.js +2 -0
- package/the_app/node_modules/npm/node_modules/shebang-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/shebang-regex/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/LICENSE.txt +16 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/index.js +279 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/index.js +275 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/package.json +106 -0
- package/the_app/node_modules/npm/node_modules/sigstore/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/chain.js +63 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/index.js +22 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/sct.js +30 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/signer.js +146 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/config.js +165 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/error.js +35 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/index.js +34 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/sigstore.js +92 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/body.js +152 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/checkpoint.js +148 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/index.js +92 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/merkle.js +113 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/set.js +64 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/types/fetch.js +2 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/types/sigstore.js +27 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/types/utility.js +17 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/dump.js +97 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/error.js +24 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/index.js +20 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/length.js +63 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/obj.js +152 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/parse.js +125 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/tag.js +86 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/crypto.js +63 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/dsse.js +25 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/encoding.js +46 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/json.js +61 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/pem.js +44 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/stream.js +116 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/verify.js +160 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/cert.js +242 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/ext.js +145 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/sct.js +101 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/verify.js +177 -0
- package/the_app/node_modules/npm/node_modules/sigstore/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/build/utils.js +108 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/package.json +79 -0
- package/the_app/node_modules/npm/node_modules/socks/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/socks/build/client/socksclient.js +793 -0
- package/the_app/node_modules/npm/node_modules/socks/build/common/constants.js +114 -0
- package/the_app/node_modules/npm/node_modules/socks/build/common/helpers.js +128 -0
- package/the_app/node_modules/npm/node_modules/socks/build/common/receivebuffer.js +43 -0
- package/the_app/node_modules/npm/node_modules/socks/build/common/util.js +25 -0
- package/the_app/node_modules/npm/node_modules/socks/build/index.js +18 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/index.md +17 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/index.md +5 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/migratingFromV1.md +86 -0
- package/the_app/node_modules/npm/node_modules/socks/package.json +58 -0
- package/the_app/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js +182 -0
- package/the_app/node_modules/npm/node_modules/socks-proxy-agent/package.json +142 -0
- package/the_app/node_modules/npm/node_modules/spdx-correct/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/spdx-correct/index.js +386 -0
- package/the_app/node_modules/npm/node_modules/spdx-correct/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/spdx-exceptions/index.json +40 -0
- package/the_app/node_modules/npm/node_modules/spdx-exceptions/package.json +17 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/AUTHORS +4 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/index.js +8 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/parse.js +138 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/scan.js +131 -0
- package/the_app/node_modules/npm/node_modules/spdx-license-ids/deprecated.json +33 -0
- package/the_app/node_modules/npm/node_modules/spdx-license-ids/index.json +569 -0
- package/the_app/node_modules/npm/node_modules/spdx-license-ids/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
- package/the_app/node_modules/npm/node_modules/ssri/lib/index.js +580 -0
- package/the_app/node_modules/npm/node_modules/ssri/package.json +65 -0
- package/the_app/node_modules/npm/node_modules/string-width/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/string-width/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/string-width/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/string_decoder/LICENSE +48 -0
- package/the_app/node_modules/npm/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/the_app/node_modules/npm/node_modules/string_decoder/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi/index.js +14 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/license +9 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/supports-color/browser.js +30 -0
- package/the_app/node_modules/npm/node_modules/supports-color/index.js +182 -0
- package/the_app/node_modules/npm/node_modules/supports-color/license +9 -0
- package/the_app/node_modules/npm/node_modules/supports-color/package.json +60 -0
- package/the_app/node_modules/npm/node_modules/tar/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/tar/index.js +18 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/create.js +111 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/extract.js +113 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/get-write-flag.js +20 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/header.js +304 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/large-numbers.js +104 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/list.js +139 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/mkdir.js +229 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/mode-fix.js +27 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/normalize-unicode.js +12 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/normalize-windows-path.js +8 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/pack.js +432 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/parse.js +552 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/path-reservations.js +156 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/pax.js +150 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/read-entry.js +107 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/replace.js +246 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js +24 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/types.js +44 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/unpack.js +906 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/update.js +40 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/warn-mixin.js +24 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/write-entry.js +546 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/index.js +422 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.js +702 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.mjs +702 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +76 -0
- package/the_app/node_modules/npm/node_modules/tar/package.json +70 -0
- package/the_app/node_modules/npm/node_modules/text-table/LICENSE +18 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/align.js +8 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/center.js +8 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/table.js +6 -0
- package/the_app/node_modules/npm/node_modules/text-table/index.js +86 -0
- package/the_app/node_modules/npm/node_modules/text-table/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/align.js +18 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/ansi-colors.js +32 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/center.js +18 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/dotalign.js +20 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/doubledot.js +24 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/table.js +14 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +21 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/factory.js +100 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/index.js +18 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/src/factory.js +89 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/src/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/da.js +31 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/de.js +31 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en-short.js +31 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en.js +31 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/es.js +31 -0
- package/the_app/node_modules/npm/node_modules/treeverse/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/treeverse/lib/breadth.js +67 -0
- package/the_app/node_modules/npm/node_modules/treeverse/lib/depth-descent.js +88 -0
- package/the_app/node_modules/npm/node_modules/treeverse/lib/depth.js +76 -0
- package/the_app/node_modules/npm/node_modules/treeverse/lib/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/treeverse/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/config.js +15 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/error.js +48 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/fetcher.js +84 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/index.js +9 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/store.js +208 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/updater.js +320 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/tmpfile.js +25 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/url.js +14 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/package.json +43 -0
- package/the_app/node_modules/npm/node_modules/unique-filename/LICENSE +5 -0
- package/the_app/node_modules/npm/node_modules/unique-filename/lib/index.js +7 -0
- package/the_app/node_modules/npm/node_modules/unique-filename/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/unique-slug/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/unique-slug/lib/index.js +11 -0
- package/the_app/node_modules/npm/node_modules/unique-slug/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/History.md +16 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/LICENSE +24 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/browser.js +67 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/node.js +6 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/package.json +27 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-license/index.js +86 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-license/package.json +28 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-name/lib/index.js +107 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-name/package.json +65 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/index.js +18 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/index.js +14 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/package.json +72 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/LICENSE +30 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/combining.js +50 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/docs/index.md +65 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/index.js +99 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/test/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/which/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/which/README.md +51 -0
- package/the_app/node_modules/npm/node_modules/which/bin/which.js +52 -0
- package/the_app/node_modules/npm/node_modules/which/lib/index.js +111 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/index.js +46 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/options.js +3 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/posix.js +67 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/win32.js +62 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/index.js +16 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/options.js +2 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/posix.js +62 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/win32.js +57 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/package.json +96 -0
- package/the_app/node_modules/npm/node_modules/which/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/wide-align/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/wide-align/align.js +65 -0
- package/the_app/node_modules/npm/node_modules/wide-align/package.json +33 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/index.js +214 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/index.js +54 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +59 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/package.json +69 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/index.js +216 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/package.json +62 -0
- package/the_app/node_modules/npm/node_modules/write-file-atomic/LICENSE.md +6 -0
- package/the_app/node_modules/npm/node_modules/write-file-atomic/lib/index.js +267 -0
- package/the_app/node_modules/npm/node_modules/write-file-atomic/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/yallist/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/yallist/iterator.js +8 -0
- package/the_app/node_modules/npm/node_modules/yallist/package.json +29 -0
- package/the_app/node_modules/npm/node_modules/yallist/yallist.js +426 -0
- package/the_app/node_modules/npm/package.json +268 -0
- package/the_app/node_modules/object-inspect/.eslintrc +53 -0
- package/the_app/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/object-inspect/.nycrc +13 -0
- package/the_app/node_modules/object-inspect/CHANGELOG.md +389 -0
- package/the_app/node_modules/object-inspect/LICENSE +21 -0
- package/the_app/node_modules/object-inspect/example/all.js +23 -0
- package/the_app/node_modules/object-inspect/example/circular.js +6 -0
- package/the_app/node_modules/object-inspect/example/fn.js +5 -0
- package/the_app/node_modules/object-inspect/example/inspect.js +10 -0
- package/the_app/node_modules/object-inspect/index.js +524 -0
- package/the_app/node_modules/object-inspect/package-support.json +20 -0
- package/the_app/node_modules/object-inspect/package.json +99 -0
- package/the_app/node_modules/object-inspect/readme.markdown +86 -0
- package/the_app/node_modules/object-inspect/test/bigint.js +58 -0
- package/the_app/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/the_app/node_modules/object-inspect/test/circular.js +16 -0
- package/the_app/node_modules/object-inspect/test/deep.js +12 -0
- package/the_app/node_modules/object-inspect/test/element.js +53 -0
- package/the_app/node_modules/object-inspect/test/err.js +48 -0
- package/the_app/node_modules/object-inspect/test/fakes.js +29 -0
- package/the_app/node_modules/object-inspect/test/fn.js +76 -0
- package/the_app/node_modules/object-inspect/test/global.js +17 -0
- package/the_app/node_modules/object-inspect/test/has.js +15 -0
- package/the_app/node_modules/object-inspect/test/holes.js +15 -0
- package/the_app/node_modules/object-inspect/test/indent-option.js +271 -0
- package/the_app/node_modules/object-inspect/test/inspect.js +139 -0
- package/the_app/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/the_app/node_modules/object-inspect/test/number.js +58 -0
- package/the_app/node_modules/object-inspect/test/quoteStyle.js +17 -0
- package/the_app/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/the_app/node_modules/object-inspect/test/undef.js +12 -0
- package/the_app/node_modules/object-inspect/test/values.js +211 -0
- package/the_app/node_modules/object-inspect/test-core-js.js +26 -0
- package/the_app/node_modules/object-inspect/util.inspect.js +1 -0
- package/the_app/node_modules/on-finished/HISTORY.md +98 -0
- package/the_app/node_modules/on-finished/LICENSE +23 -0
- package/the_app/node_modules/on-finished/README.md +162 -0
- package/the_app/node_modules/on-finished/index.js +234 -0
- package/the_app/node_modules/on-finished/package.json +39 -0
- package/the_app/node_modules/parseurl/HISTORY.md +58 -0
- package/the_app/node_modules/parseurl/LICENSE +24 -0
- package/the_app/node_modules/parseurl/README.md +133 -0
- package/the_app/node_modules/parseurl/index.js +158 -0
- package/the_app/node_modules/parseurl/package.json +40 -0
- package/the_app/node_modules/path-to-regexp/History.md +36 -0
- package/the_app/node_modules/path-to-regexp/LICENSE +21 -0
- package/the_app/node_modules/path-to-regexp/Readme.md +35 -0
- package/the_app/node_modules/path-to-regexp/index.js +129 -0
- package/the_app/node_modules/path-to-regexp/package.json +30 -0
- package/the_app/node_modules/proxy-addr/HISTORY.md +161 -0
- package/the_app/node_modules/proxy-addr/LICENSE +22 -0
- package/the_app/node_modules/proxy-addr/README.md +139 -0
- package/the_app/node_modules/proxy-addr/index.js +327 -0
- package/the_app/node_modules/proxy-addr/package.json +47 -0
- package/the_app/node_modules/qs/.editorconfig +43 -0
- package/the_app/node_modules/qs/.eslintrc +38 -0
- package/the_app/node_modules/qs/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/qs/.nycrc +13 -0
- package/the_app/node_modules/qs/CHANGELOG.md +546 -0
- package/the_app/node_modules/qs/LICENSE.md +29 -0
- package/the_app/node_modules/qs/README.md +625 -0
- package/the_app/node_modules/qs/dist/qs.js +2054 -0
- package/the_app/node_modules/qs/lib/formats.js +23 -0
- package/the_app/node_modules/qs/lib/index.js +11 -0
- package/the_app/node_modules/qs/lib/parse.js +263 -0
- package/the_app/node_modules/qs/lib/stringify.js +326 -0
- package/the_app/node_modules/qs/lib/utils.js +252 -0
- package/the_app/node_modules/qs/package.json +77 -0
- package/the_app/node_modules/qs/test/parse.js +855 -0
- package/the_app/node_modules/qs/test/stringify.js +909 -0
- package/the_app/node_modules/qs/test/utils.js +136 -0
- package/the_app/node_modules/range-parser/HISTORY.md +56 -0
- package/the_app/node_modules/range-parser/LICENSE +23 -0
- package/the_app/node_modules/range-parser/README.md +84 -0
- package/the_app/node_modules/range-parser/index.js +162 -0
- package/the_app/node_modules/range-parser/package.json +44 -0
- package/the_app/node_modules/raw-body/HISTORY.md +303 -0
- package/the_app/node_modules/raw-body/LICENSE +22 -0
- package/the_app/node_modules/raw-body/README.md +223 -0
- package/the_app/node_modules/raw-body/SECURITY.md +24 -0
- package/the_app/node_modules/raw-body/index.d.ts +87 -0
- package/the_app/node_modules/raw-body/index.js +329 -0
- package/the_app/node_modules/raw-body/package.json +49 -0
- package/the_app/node_modules/safe-buffer/LICENSE +21 -0
- package/the_app/node_modules/safe-buffer/README.md +584 -0
- package/the_app/node_modules/safe-buffer/index.d.ts +187 -0
- package/the_app/node_modules/safe-buffer/index.js +65 -0
- package/the_app/node_modules/safe-buffer/package.json +51 -0
- package/the_app/node_modules/safer-buffer/LICENSE +21 -0
- package/the_app/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/the_app/node_modules/safer-buffer/Readme.md +156 -0
- package/the_app/node_modules/safer-buffer/dangerous.js +58 -0
- package/the_app/node_modules/safer-buffer/package.json +34 -0
- package/the_app/node_modules/safer-buffer/safer.js +77 -0
- package/the_app/node_modules/safer-buffer/tests.js +406 -0
- package/the_app/node_modules/send/HISTORY.md +521 -0
- package/the_app/node_modules/send/LICENSE +23 -0
- package/the_app/node_modules/send/README.md +327 -0
- package/the_app/node_modules/send/SECURITY.md +24 -0
- package/the_app/node_modules/send/index.js +1143 -0
- package/the_app/node_modules/send/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/send/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/send/node_modules/ms/package.json +38 -0
- package/the_app/node_modules/send/node_modules/ms/readme.md +59 -0
- package/the_app/node_modules/send/package.json +62 -0
- package/the_app/node_modules/serve-static/HISTORY.md +471 -0
- package/the_app/node_modules/serve-static/LICENSE +25 -0
- package/the_app/node_modules/serve-static/README.md +257 -0
- package/the_app/node_modules/serve-static/index.js +210 -0
- package/the_app/node_modules/serve-static/package.json +42 -0
- package/the_app/node_modules/set-function-length/.eslintrc +27 -0
- package/the_app/node_modules/set-function-length/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/set-function-length/.nycrc +13 -0
- package/the_app/node_modules/set-function-length/CHANGELOG.md +41 -0
- package/the_app/node_modules/set-function-length/LICENSE +21 -0
- package/the_app/node_modules/set-function-length/README.md +56 -0
- package/the_app/node_modules/set-function-length/env.js +19 -0
- package/the_app/node_modules/set-function-length/index.js +41 -0
- package/the_app/node_modules/set-function-length/package.json +84 -0
- package/the_app/node_modules/setprototypeof/LICENSE +13 -0
- package/the_app/node_modules/setprototypeof/README.md +31 -0
- package/the_app/node_modules/setprototypeof/index.d.ts +2 -0
- package/the_app/node_modules/setprototypeof/index.js +17 -0
- package/the_app/node_modules/setprototypeof/package.json +38 -0
- package/the_app/node_modules/setprototypeof/test/index.js +24 -0
- package/the_app/node_modules/side-channel/.eslintignore +1 -0
- package/the_app/node_modules/side-channel/.eslintrc +11 -0
- package/the_app/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/side-channel/.nycrc +13 -0
- package/the_app/node_modules/side-channel/CHANGELOG.md +65 -0
- package/the_app/node_modules/side-channel/LICENSE +21 -0
- package/the_app/node_modules/side-channel/README.md +2 -0
- package/the_app/node_modules/side-channel/index.js +124 -0
- package/the_app/node_modules/side-channel/package.json +67 -0
- package/the_app/node_modules/side-channel/test/index.js +78 -0
- package/the_app/node_modules/statuses/HISTORY.md +82 -0
- package/the_app/node_modules/statuses/LICENSE +23 -0
- package/the_app/node_modules/statuses/README.md +136 -0
- package/the_app/node_modules/statuses/codes.json +65 -0
- package/the_app/node_modules/statuses/index.js +146 -0
- package/the_app/node_modules/statuses/package.json +49 -0
- package/the_app/node_modules/toidentifier/HISTORY.md +9 -0
- package/the_app/node_modules/toidentifier/LICENSE +21 -0
- package/the_app/node_modules/toidentifier/README.md +61 -0
- package/the_app/node_modules/toidentifier/index.js +32 -0
- package/the_app/node_modules/toidentifier/package.json +38 -0
- package/the_app/node_modules/type-is/HISTORY.md +259 -0
- package/the_app/node_modules/type-is/LICENSE +23 -0
- package/the_app/node_modules/type-is/README.md +170 -0
- package/the_app/node_modules/type-is/index.js +266 -0
- package/the_app/node_modules/type-is/package.json +45 -0
- package/the_app/node_modules/unpipe/HISTORY.md +4 -0
- package/the_app/node_modules/unpipe/LICENSE +22 -0
- package/the_app/node_modules/unpipe/README.md +43 -0
- package/the_app/node_modules/unpipe/index.js +69 -0
- package/the_app/node_modules/unpipe/package.json +27 -0
- package/the_app/node_modules/utils-merge/LICENSE +20 -0
- package/the_app/node_modules/utils-merge/README.md +34 -0
- package/the_app/node_modules/utils-merge/index.js +23 -0
- package/the_app/node_modules/utils-merge/package.json +40 -0
- package/the_app/node_modules/vary/HISTORY.md +39 -0
- package/the_app/node_modules/vary/LICENSE +22 -0
- package/the_app/node_modules/vary/README.md +101 -0
- package/the_app/node_modules/vary/index.js +149 -0
- package/the_app/node_modules/vary/package.json +43 -0
- package/the_app/node_modules/warbeast2000/.github/workflows/node.js.yml +31 -0
- package/the_app/node_modules/warbeast2000/README.md +5 -0
- package/the_app/node_modules/warbeast2000/index.js +7 -0
- package/the_app/node_modules/warbeast2000/package.json +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/mime +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/mime.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/mime.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npm +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npm.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npm.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npx +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npx.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npx.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.package-lock.json +3405 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/HISTORY.md +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/README.md +140 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/index.js +238 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/README.md +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/array-flatten.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/CHANGELOG.md +348 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/LICENSE +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/README.md +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/all.js +102 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/allLimit.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/allSeries.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/any.js +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/anyLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/anySeries.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/apply.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/applyEach.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/applyEachSeries.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/asyncify.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/auto.js +321 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/autoInject.js +173 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/cargo.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/cargoQueue.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/compose.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/concat.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/concatLimit.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/concatSeries.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/constant.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/detect.js +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/detectLimit.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/detectSeries.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/dir.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/doDuring.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/doUntil.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/doWhilst.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/during.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/each.js +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachOf.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachOfLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachOfSeries.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachSeries.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/ensureAsync.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/every.js +102 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/everyLimit.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/everySeries.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/filter.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/filterLimit.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/filterSeries.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/find.js +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/findLimit.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/findSeries.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/flatMap.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/flatMapLimit.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/flatMapSeries.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/foldl.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/foldr.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEach.js +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachOf.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachOfLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachOfSeries.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachSeries.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forever.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/groupBy.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/groupByLimit.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/groupBySeries.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/index.js +358 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/inject.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/DoublyLinkedList.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/Heap.js +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/applyEach.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/asyncEachOfLimit.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/awaitify.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/breakLoop.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/consoleFunc.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/createTester.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/eachOfLimit.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/filter.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/getIterator.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/initialParams.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/isArrayLike.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/iterator.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/map.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/once.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/onlyOnce.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/parallel.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/promiseCallback.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/queue.js +276 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/range.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/reject.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/setImmediate.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/withoutIndex.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/wrapAsync.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/log.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/map.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapLimit.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapSeries.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapValues.js +140 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapValuesLimit.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapValuesSeries.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/memoize.js +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/nextTick.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/package.json +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/parallel.js +165 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/parallelLimit.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/priorityQueue.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/queue.js +151 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/race.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reduce.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reduceRight.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reflect.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reflectAll.js +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reject.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/rejectLimit.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/rejectSeries.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/retry.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/retryable.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/select.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/selectLimit.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/selectSeries.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/seq.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/series.js +171 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/setImmediate.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/some.js +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/someLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/someSeries.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/sortBy.js +172 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/timeout.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/times.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/timesLimit.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/timesSeries.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/transform.js +154 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/tryEach.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/unmemoize.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/until.js +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/waterfall.js +85 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/whilst.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/wrapSync.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/HISTORY.md +657 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/README.md +464 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/SECURITY.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/index.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/read.js +205 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/json.js +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/raw.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/text.js +121 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/urlencoded.js +284 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/History.md +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/Readme.md +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/index.js +170 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.eslintignore +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.eslintrc +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.nycrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/CHANGELOG.md +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/README.md +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/callBound.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/index.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/package.json +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/test/callBound.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/test/index.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/HISTORY.md +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/README.md +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/index.js +458 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/HISTORY.md +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/README.md +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/index.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/HISTORY.md +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/README.md +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/SECURITY.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/index.js +270 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/History.md +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/Readme.md +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/index.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/package.json +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/.coveralls.yml +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/.eslintrc +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/.travis.yml +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/CHANGELOG.md +362 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/LICENSE +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/Makefile +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/README.md +312 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/component.json +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/karma.conf.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/node.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/browser.js +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/debug.js +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/inspector-log.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/node.js +248 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/.eslintrc +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/CHANGELOG.md +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/README.md +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/index.d.ts +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/index.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/index.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/package.json +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/test/index.js +392 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/tsconfig.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/History.md +103 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/Readme.md +280 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/index.js +538 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/lib/browser/index.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/README.md +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/index.js +209 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/README.md +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/index.js +95 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/HISTORY.md +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/README.md +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/index.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/Readme.md +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/index.js +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/package.json +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/HISTORY.md +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/README.md +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/index.js +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/History.md +3588 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/Readme.md +166 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/index.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/application.js +661 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/express.js +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/middleware/init.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/middleware/query.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/request.js +525 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/response.js +1169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/router/index.js +673 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/router/layer.js +181 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/router/route.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/utils.js +304 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/view.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/package.json +99 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/HISTORY.md +195 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/README.md +147 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/SECURITY.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/index.js +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/package.json +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/HISTORY.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/README.md +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/index.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/HISTORY.md +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/README.md +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/index.js +137 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/package.json +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.eslintrc +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/CHANGELOG.md +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/README.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/implementation.js +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/index.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/test/.eslintrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/test/index.js +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/.eslintrc +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/.nycrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/CHANGELOG.md +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/README.md +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/index.js +351 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/package.json +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/.eslintrc +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/CHANGELOG.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/README.md +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/index.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/package.json +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/test/index.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/.eslintrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/.nycrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/CHANGELOG.md +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/README.md +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/index.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/package.json +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/test/index.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/.eslintrc +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/CHANGELOG.md +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/README.md +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/index.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/package.json +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/test/index.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/.eslintrc +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/.nycrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/CHANGELOG.md +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/README.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/package.json +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/shams.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/index.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/shams/core-js.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/tests.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/.eslintrc +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/CHANGELOG.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/README.md +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/index.d.ts +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/index.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/package.json +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/tsconfig.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/HISTORY.md +180 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/README.md +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/index.js +289 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/package.json +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/Changelog.md +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/README.md +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/index.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/index.js +153 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/streams.js +121 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/package.json +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/LICENSE +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/README.md +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/inherits.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/inherits_browser.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/.travis.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/README.md +123 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/install.js +556 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/install.min.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/package.json +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/scripts/docs.sh +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/scripts/prepublish.sh +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/LICENSE +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/README.md +233 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/HISTORY.md +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/README.md +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/index.js +270 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/package.json +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/README.md +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/index.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/HISTORY.md +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/README.md +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/index.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/package.json +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/CHANGELOG.md +164 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/README.md +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/cli.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/mime.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/src/build.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/src/test.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/types.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/HISTORY.md +507 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/README.md +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/db.json +8519 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/index.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/HISTORY.md +397 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/README.md +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/index.js +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/index.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/readme.md +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/HISTORY.md +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/README.md +203 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/index.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/charset.js +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/encoding.js +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/language.js +179 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/mediaType.js +294 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/LICENSE +235 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/README.md +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm-cli.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm.cmd +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm.ps1 +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx-cli.js +130 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx.cmd +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx.ps1 +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-access.md +123 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-adduser.md +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-audit.md +470 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-bugs.md +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-cache.md +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-ci.md +317 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-completion.md +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-config.md +181 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-dedupe.md +320 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-deprecate.md +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-diff.md +316 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-dist-tag.md +154 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-docs.md +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-doctor.md +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-edit.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-exec.md +366 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-explain.md +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-explore.md +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-find-dupes.md +246 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-fund.md +145 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-help-search.md +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-help.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-hook.md +112 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-init.md +349 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-install-ci-test.md +264 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-install-test.md +361 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-install.md +797 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-link.md +396 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-login.md +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-logout.md +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-ls.md +294 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-org.md +114 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-outdated.md +178 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-owner.md +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-pack.md +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-ping.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-pkg.md +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-prefix.md +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-profile.md +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-prune.md +196 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-publish.md +235 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-query.md +241 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-rebuild.md +168 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-repo.md +102 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-restart.md +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-root.md +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-run-script.md +253 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-sbom.md +319 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-search.md +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-shrinkwrap.md +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-star.md +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-stars.md +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-start.md +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-stop.md +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-team.md +155 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-test.md +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-token.md +130 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-uninstall.md +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-unpublish.md +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-unstar.md +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-update.md +446 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-version.md +235 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-view.md +200 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-whoami.md +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm.md +175 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npx.md +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/folders.md +219 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/install.md +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/npm-shrinkwrap-json.md +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/npmrc.md +137 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/package-json.md +1190 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +235 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/config.md +1984 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/dependency-selectors.md +207 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/developers.md +245 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/logging.md +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/orgs.md +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/package-spec.md +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/registry.md +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/removal.md +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/scope.md +143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/scripts.md +368 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/workspaces.md +226 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/lib/index.js +189 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-access.html +262 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-adduser.html +218 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-audit.html +502 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-bugs.html +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-cache.html +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-ci.html +397 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-completion.html +186 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-config.html +282 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-dedupe.html +395 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-deprecate.html +206 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-diff.html +398 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-dist-tag.html +281 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-docs.html +242 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-doctor.html +253 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-edit.html +190 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-exec.html +435 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-explain.html +242 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-explore.html +190 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-find-dupes.html +341 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-fund.html +267 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-help-search.html +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-help.html +190 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-hook.html +226 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-init.html +422 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-install-ci-test.html +355 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-install-test.html +425 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-install.html +787 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-link.html +450 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-login.html +222 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-logout.html +209 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-ls.html +378 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-org.html +231 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-outdated.html +305 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-owner.html +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-pack.html +256 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-ping.html +189 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-pkg.html +364 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-prefix.html +200 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-profile.html +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-prune.html +304 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-publish.html +350 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-query.html +365 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-rebuild.html +288 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-repo.html +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-restart.html +211 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-root.html +195 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-run-script.html +345 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-sbom.html +439 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-search.html +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-shrinkwrap.html +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-star.html +209 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-stars.html +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-start.html +214 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-stop.html +209 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-team.html +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-test.html +207 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-token.html +266 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-uninstall.html +278 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-unpublish.html +267 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-unstar.html +206 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-update.html +486 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-version.html +341 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-view.html +297 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-whoami.html +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm.html +296 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npx.html +284 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/folders.html +322 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/install.html +217 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/npm-shrinkwrap-json.html +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/npmrc.html +261 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/package-json.html +1070 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/package-lock-json.html +390 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/config.html +1584 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/dependency-selectors.html +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/developers.html +352 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/logging.html +228 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/orgs.html +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/package-spec.html +255 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/registry.html +226 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/removal.html +199 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/scope.html +257 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/scripts.html +482 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/workspaces.html +313 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/index.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/arborist-cmd.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/base-command.js +165 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/cli-entry.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/cli.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/access.js +222 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/adduser.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/audit.js +511 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/bugs.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/cache.js +213 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ci.js +117 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/completion.js +283 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/config.js +378 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/dedupe.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/deprecate.js +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/diff.js +291 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/dist-tag.js +205 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/docs.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/doctor.js +419 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/edit.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/exec.js +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/explain.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/explore.js +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/find-dupes.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/fund.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/get.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/help-search.js +194 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/help.js +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/hook.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/init.js +247 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/install-ci-test.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/install-test.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/install.js +178 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/link.js +192 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ll.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/login.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/logout.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ls.js +573 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/org.js +155 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/outdated.js +369 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/owner.js +232 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/pack.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ping.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/pkg.js +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/prefix.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/profile.js +407 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/prune.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/publish.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/query.js +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/rebuild.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/repo.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/restart.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/root.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/run-script.js +249 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/sbom.js +155 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/search.js +114 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/set.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/shrinkwrap.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/star.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/stars.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/start.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/stop.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/team.js +154 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/test.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/token.js +229 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/uninstall.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/unpublish.js +171 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/unstar.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/update.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/version.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/view.js +510 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/whoami.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/es6/validate-engines.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/lifecycle-cmd.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/npm.js +485 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/package-url-cmd.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/audit-error.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/auth.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/cmd-list.js +178 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion/installed-deep.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion/installed-shallow.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion.fish +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion.sh +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/did-you-mean.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/display.js +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/error-message.js +435 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/exit-handler.js +227 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/explain-dep.js +135 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/explain-eresolve.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/format-bytes.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/format-search-stream.js +135 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/get-identity.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/is-windows.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/log-file.js +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/log-shim.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/npm-usage.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/open-url-prompt.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/open-url.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/otplease.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/ping.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/pulse-till-done.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/queryable.js +308 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/read-user-info.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/reify-finish.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/reify-output.js +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/replace-info.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/sbom-cyclonedx.js +201 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/sbom-spdx.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/tar.js +132 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/timers.js +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/update-notifier.js +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/validate-lockfile.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/web-auth.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/workspaces/get-workspaces.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/workspaces/update-workspaces.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-access.1 +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-adduser.1 +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-audit.1 +446 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-bugs.1 +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-cache.1 +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-ci.1 +289 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-completion.1 +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-config.1 +187 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-dedupe.1 +290 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-deprecate.1 +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-diff.1 +307 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-dist-tag.1 +144 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-docs.1 +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-doctor.1 +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-edit.1 +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-exec.1 +350 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-explain.1 +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-explore.1 +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-find-dupes.1 +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-fund.1 +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-help-search.1 +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-help.1 +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-hook.1 +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-init.1 +366 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-install-ci-test.1 +239 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-install-test.1 +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-install.1 +752 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-link.1 +355 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-login.1 +95 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-logout.1 +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-ls.1 +283 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-org.1 +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-outdated.1 +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-owner.1 +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-pack.1 +130 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-ping.1 +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-pkg.1 +286 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-prefix.1 +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-profile.1 +137 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-prune.1 +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-publish.1 +221 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-query.1 +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-rebuild.1 +178 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-repo.1 +103 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-restart.1 +85 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-root.1 +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-run-script.1 +234 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-sbom.1 +314 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-search.1 +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-shrinkwrap.1 +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-star.1 +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-stars.1 +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-start.1 +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-stop.1 +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-team.1 +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-test.1 +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-token.1 +130 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-uninstall.1 +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-unpublish.1 +137 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-unstar.1 +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-update.1 +406 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-version.1 +229 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-view.1 +213 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-whoami.1 +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm.1 +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npx.1 +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/folders.5 +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/install.5 +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npm-global.5 +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npm-json.5 +1093 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npm-shrinkwrap-json.5 +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npmrc.5 +129 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/package-json.5 +1093 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/package-lock-json.5 +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/config.7 +2002 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/dependency-selectors.7 +309 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/developers.7 +234 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/logging.7 +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/orgs.7 +145 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/package-spec.7 +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/registry.7 +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/removal.7 +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/scope.7 +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/scripts.7 +407 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/workspaces.7 +214 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/arborist +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/arborist.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/arborist.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/color-support +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/color-support.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/color-support.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/cssesc +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/cssesc.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/cssesc.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/glob +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/glob.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/glob.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/installed-package-contents +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/mkdirp +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/mkdirp.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/mkdirp.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-gyp +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-gyp.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-gyp.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-which +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-which.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-which.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/nopt +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/nopt.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/nopt.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/pacote +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/pacote.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/pacote.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/semver +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/semver.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/semver.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/LICENSE +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/examples/normal-usage.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/examples/safe-string.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/colors.js +211 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/trap.js +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/zalgo.js +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/america.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/rainbow.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/random.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/styles.js +95 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/safe.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/themes/generic-logging.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.cjs +317 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/index.mjs +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/package.json +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/index.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/package.json +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/agents.js +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/dns.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/errors.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/index.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/options.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/proxy.js +88 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/README.md +349 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/actual.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/audit.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/funding.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/ideal.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/index.js +111 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/logging.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/options.js +123 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/print-tree.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/timers.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/license.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/prune.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/reify.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/shrinkwrap.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/virtual.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js +143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/audit.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +1511 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/deduper.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/index.js +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/isolated-reifier.js +453 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js +440 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js +303 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/pruner.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js +433 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +1593 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/set-workspaces.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/audit-report.js +414 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/calc-dep-flags.js +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/can-place-dep.js +436 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/case-insensitive-map.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/consistent-resolve.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/debug.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/deepest-nesting-target.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/dep-valid.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/diff.js +306 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/edge.js +301 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/from-path.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/gather-dep-set.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/get-workspace-nodes.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/inventory.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/link.js +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/node.js +1473 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/optional-set.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-resolves.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-set.js +147 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/peer-entry-sets.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/place-dep.js +569 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/printable.js +198 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js +862 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/realpath.js +95 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/relpath.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/retire-path.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +1176 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signal-handling.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signals.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js +102 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tree-check.js +155 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/version-from-tgz.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/vuln.js +217 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/yarn-lock.js +377 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/package.json +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/README.md +257 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definition.js +253 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definitions.js +2403 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/index.js +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/env-replace.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/errors.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/index.js +959 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/nerf-dart.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/parse-field.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/set-envs.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-defs.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-description.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/umask.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/lib/index.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/index.js +163 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/package.json +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/get-options.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/node.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/errors.js +129 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/index.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/polyfill.js +428 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/move-file.js +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/readdir-scoped.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/clone.js +172 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/errors.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/find.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/index.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is-clean.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/lines-to-revs.js +147 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/opts.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/revs.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/utils.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/which.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/package.json +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/README.md +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/lib/index.js +242 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/lib/index.js +211 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js +435 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/get-dep-spec.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/hash.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/index.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/package.json +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/lib/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/lib/index.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/LICENSE +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/index.js +277 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/normalize.js +558 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-dependencies.js +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-scripts.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-workspaces.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/package.json +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/escape.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/index.js +195 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/query/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/query/lib/index.js +213 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/query/package.json +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-server-package.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-windows.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp.cmd +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/package-envs.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +112 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/set-path.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/signal-manager.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/validate-options.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/LICENSE +201 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/index.js +396 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/package.json +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/utils.js +198 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/build.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/bundle.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/error.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/index.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/serialized.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/utility.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/validate.js +160 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/events.js +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/api/field_behavior.js +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/any.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js +1308 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js +457 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js +103 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js +273 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/index.js +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/package.json +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/base.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/bundle.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/dsse.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/message.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/error.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/error.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/fulcio.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/rekor.js +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/tsa.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/ci.js +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/index.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/provider.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/index.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ca.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ephemeral.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/index.js +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/index.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/signer.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/types/fetch.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/crypto.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/dsse.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/encoding.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/index.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/json.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/oidc.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/pem.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/ua.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/client.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/entry.js +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/index.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/client.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/index.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/witness.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/appdata.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/client.js +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/error.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/index.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/target.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/package.json +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/store/public-good-instance-root.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/lib/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/base.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/delegations.js +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/error.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/file.js +183 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/index.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/key.js +85 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/metadata.js +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/role.js +299 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/root.js +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/signature.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/snapshot.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/targets.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/timestamp.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/guard.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/index.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/key.js +143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/oid.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/types.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/verify.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abbrev/lib/index.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abbrev/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/browser.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/browser.mjs +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.js +127 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.mjs +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.umd.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/package.json +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/polyfill.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/polyfill.mjs +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/agent-base/dist/helpers.js +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/agent-base/dist/index.js +112 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/agent-base/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aggregate-error/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aggregate-error/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aggregate-error/package.json +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-regex/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-regex/package.json +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-styles/index.js +223 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-styles/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aproba/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aproba/index.js +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aproba/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/LICENSE +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/index.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/test/beep.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/test/multi_line.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/test/non_unicode.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/LICENSE.md +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-base.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-group.js +112 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-stream.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/balanced-match/LICENSE.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/balanced-match/index.js +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/balanced-match/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/base64js.min.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/index.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/bin-target.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/check-bin.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/check-bins.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/fix-bin.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/get-node-modules.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/get-paths.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/get-prefix.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/index.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/is-windows.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-bin.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-bins.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-gently.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-mans.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/man-target.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/shim-bin.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/package.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/binary-extensions.json +260 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/index.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/brace-expansion/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/brace-expansion/index.js +203 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/brace-expansion/package.json +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/AUTHORS.md +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/index.js +2106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/package.json +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/builtins/License +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/builtins/index.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/builtins/package.json +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/path.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/read.js +166 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/rm.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/write.js +206 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/entry-index.js +330 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/get.js +170 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/index.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/memoization.js +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/put.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/rm.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/util/glob.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/util/tmp.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/verify.js +257 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/package.json +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/package.json +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/index.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/utilities.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chownr/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chownr/chownr.js +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chownr/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/index.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/vendors.json +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cidr-regex/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cidr-regex/index.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cidr-regex/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clean-stack/index.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clean-stack/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clean-stack/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/color.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/index.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/license +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/test.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/index.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/package.json +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/cell.js +409 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/debug.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/layout-manager.js +254 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/table.js +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/utils.js +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/LICENSE +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/clone.iml +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/clone.js +166 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/lib/index.js +247 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/conversions.js +839 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/index.js +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/route.js +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-name/LICENSE +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-name/index.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-name/package.json +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/README.md +129 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/bin.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/browser.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/index.js +134 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/package.json +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/Makefile +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/columnify.js +306 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/index.js +297 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/utils.js +193 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/width.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/common-ancestor-path/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/common-ancestor-path/index.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/common-ancestor-path/package.json +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/console-control-strings/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/console-control-strings/index.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/console-control-strings/package.json +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/index.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/parse.js +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/escape.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/README.md +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/which.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/package.json +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/README.md +201 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/bin/cssesc +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/cssesc.js +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/man/cssesc.1 +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/node_modules/ms/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/package.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/browser.js +269 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/common.js +274 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/node.js +263 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/package.json +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/test.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/History.md +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/License +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/Makefile +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/index.js +121 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/package.json +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/test/index.js +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/CONTRIBUTING.md +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/LICENSE +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/dist/diff.js +1627 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/dist/diff.min.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/convert/dmp.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/convert/xml.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/array.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/base.js +307 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/character.js +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/css.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/json.js +163 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/line.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/sentence.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/word.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/index.es6.js +1561 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/index.js +216 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/index.mjs +1561 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/apply.js +238 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/create.js +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/merge.js +613 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/parse.js +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/util/array.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/util/distance-iterator.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/util/params.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/release-notes.md +309 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/runtime.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/eastasianwidth/eastasianwidth.js +311 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/eastasianwidth/package.json +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/package.json +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/LICENSE +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/lib/encoding.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/package.json +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/test/test.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/env-paths/index.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/env-paths/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/env-paths/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/bower.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/index.umd.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/test/test.js +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.js +871 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.mjs +862 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.umd.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/package.json +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/.airtap.yml +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/History.md +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/events.js +497 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/security.md +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/add-listeners.js +111 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/check-listener-leaks.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/common.js +104 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/errors.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/events-list.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/events-once.js +234 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/legacy-compat.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/listener-count.js +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/listeners-side-effects.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/listeners.js +168 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/max-listeners.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/method-names.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/modify-in-emit.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/num-args.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/once.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/prepend.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/remove-all-listeners.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/remove-listeners.js +212 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/set-max-listeners-side-effects.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/special-event-names.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/subclass.js +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/symbols.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/backoff.js +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/options.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/package.json +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/LICENSE.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/bench.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/esm/mod.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/mod.js +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/package.json +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/test.js +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/index.js +154 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/index.js +146 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/package.json +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fs-minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fs-minipass/lib/index.js +443 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fs-minipass/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/implementation.js +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/index.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/test/index.js +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/base-theme.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/error.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/has-color.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/index.js +289 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/plumbing.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/process.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/progress-bar.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/render-template.js +222 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/set-immediate.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/set-interval.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/spin.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/template-item.js +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/theme-set.js +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/themes.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/wide-truncate.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/package.json +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/README.md +1214 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js +219 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js +358 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs +275 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts +344 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js +239 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js +104 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js +215 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js +295 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js +352 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/package.json +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/clone.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/polyfills.js +355 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/has-unicode/index.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/has-unicode/package.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/package.json +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/tsconfig.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/from-url.js +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/hosts.js +227 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/index.js +179 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/parse-url.js +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/package.json +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-cache-semantics/LICENSE +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-cache-semantics/index.js +674 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-cache-semantics/package.json +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-proxy-agent/LICENSE +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-proxy-agent/dist/index.js +147 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-proxy-agent/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/index.js +174 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/https-proxy-agent/package.json +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/internal.js +198 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf16.js +197 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf32.js +319 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/lib/index.js +180 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/lib/streams.js +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ieee754/LICENSE +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ieee754/index.js +85 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ieee754/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ignore-walk/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ignore-walk/lib/index.js +310 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ignore-walk/package.json +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/imurmurhash/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/indent-string/index.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/indent-string/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/indent-string/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ini/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ini/lib/ini.js +278 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ini/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/LICENSE.md +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/lib/default-input.js +262 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/lib/init-package-json.js +145 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/package.json +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip/lib/ip.js +422 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip/package.json +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip-regex/index.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip-regex/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-cidr/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-cidr/index.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-cidr/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/core.json +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/index.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/package.json +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/test/index.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/test.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/index.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/mode.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/package.json +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/test/basic.js +221 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/windows.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/LICENSE.md +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/index.js +850 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/index.js +840 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/package.json +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/lib/index.js +135 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-stringify-nice/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-stringify-nice/index.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-stringify-nice/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/bench.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/examples/twitterfeed.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/jsonparse.js +413 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/package.json +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic.json +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic2.json +180 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/big-token.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/boundary.js +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/offset.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/primitives.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/surrogate.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/unvalid.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/utf8.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/index.cjs +230 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/index.mjs +227 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/package.json +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/rollup.config.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/index.cjs +161 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/index.mjs +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/rollup.config.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/README.md +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/lib/index.js +140 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/README.md +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/format-diff.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/index.js +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/should-print-patch.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/tarball.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/untar.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/package.json +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/README.md +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/file-exists.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/index.js +285 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/is-windows.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/no-tty.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/run-script.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/package.json +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/README.md +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/lib/index.js +210 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/package.json +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/LICENSE.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/README.md +271 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/lib/index.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/README.md +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/lib/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/package.json +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/README.md +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/lib/index.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/package.json +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/README.md +120 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/provenance.js +245 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/publish.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/unpublish.js +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/package.json +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/README.md +173 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/lib/index.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/README.md +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/lib/index.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/README.md +164 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/commit.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/enforce-clean.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/index.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/read-json.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/retrieve-tag.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/tag.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/version.js +140 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/write-json.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/index.js +1441 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/index.js +1437 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/package.json +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/LICENSE +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/entry.js +469 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/errors.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/index.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/key.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/policy.js +161 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/fetch.js +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/index.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/options.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/pipeline.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js +127 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/package.json +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/ast.js +589 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/escape.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/index.js +1011 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/unescape.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/ast.js +585 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/escape.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/index.js +995 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/unescape.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/package.json +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/index.js +1028 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/esm/index.js +1018 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/esm/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/package.json +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-collect/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-collect/index.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-collect/package.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/LICENSE +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/abort-error.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/blob.js +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/body.js +350 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/fetch-error.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/headers.js +267 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/index.js +377 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/request.js +282 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/response.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/package.json +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/index.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/LICENSE +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/index.js +227 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/index.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/index.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/test/basic.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/LICENSE +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/constants.js +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/index.js +348 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/bin/cmd.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/index.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/find-made.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/opts-arg.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/path-arg.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/use-native.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/readme.markdown +266 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ms/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mute-stream/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mute-stream/lib/index.js +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mute-stream/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/HISTORY.md +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/index.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/charset.js +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/encoding.js +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/language.js +179 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/mediaType.js +294 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +905 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/README.md +263 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/SECURITY.md +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/addon.gypi +204 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/README.md +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1270 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +153 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +271 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +692 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +654 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +804 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1173 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1318 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +123 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +103 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2711 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3981 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2933 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +98 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +771 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1262 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1933 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3198 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pyproject.toml +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/build.js +220 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/clean.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/configure.js +282 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/create-config-gypi.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/download.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/find-python.js +310 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/find-visualstudio.js +443 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/install.js +415 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/list.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/log.js +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/process-release.js +146 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/remove.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/util.js +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/README.md +213 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/bin/nopt.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/debug.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/nopt-lib.js +479 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/nopt.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/type-defs.js +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +475 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/package.json +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/LICENSE +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/colors.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/exit-code.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/index.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/detail.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/install.js +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/json.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/quiet.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-bundled/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-bundled/lib/index.js +254 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-bundled/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-install-checks/lib/index.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-install-checks/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/lib/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-package-arg/lib/npa.js +411 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-package-arg/package.json +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-packlist/lib/index.js +484 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-packlist/package.json +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js +218 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-pick-manifest/package.json +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-profile/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-profile/lib/index.js +295 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-profile/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/auth.js +181 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/clean-url.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/default-opts.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/errors.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/index.js +249 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/package.json +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-user-validate/lib/index.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-user-validate/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npmlog/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npmlog/lib/log.js +400 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npmlog/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/p-map/index.js +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/p-map/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/p-map/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/README.md +285 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/bin.js +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/dir.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/fetcher.js +505 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/file.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/git.js +327 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/registry.js +368 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/remote.js +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/add-git-sha.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/cache-dir.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/is-package-bin.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/npm.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/tar-create-options.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/trailing-slashes.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/package.json +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/parse-conflict-json/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/parse-conflict-json/lib/index.js +104 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/parse-conflict-json/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-key/index.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-key/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-key/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/LICENSE.md +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/index.js +2018 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/index.js +1983 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/API.md +872 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/index.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/processor.js +170 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/package.json +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/proc-log/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/proc-log/lib/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/proc-log/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/browser.js +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/index.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/package.json +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/test.js +199 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/index.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/package.json +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/test/index.js +88 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-call-limit/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-call-limit/index.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-call-limit/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-inflight/package.json +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/LICENSE +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/index.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/test/test.js +263 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promzard/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promzard/lib/index.js +175 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promzard/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/README.md +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/test/main.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read/lib/read.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-cmd-shim/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-cmd-shim/lib/index.js +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-cmd-shim/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json/lib/read-json.js +589 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json/package.json +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json-fast/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json-fast/lib/index.js +141 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json-fast/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/LICENSE +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_passthrough.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/buffer_list.js +157 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/compose.js +194 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/destroy.js +290 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplex.js +143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplexify.js +379 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +281 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/from.js +98 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/lazy_transform.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/legacy.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/operators.js +457 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/passthrough.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/pipeline.js +465 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/readable.js +1247 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/transform.js +180 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/utils.js +321 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/writable.js +817 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/validators.js +510 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/browser.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/errors.js +341 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/index.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/primordials.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/util.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/stream/promises.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/stream.js +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/package.json +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/License +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/Makefile +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/equation.gif +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/example/dns.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/example/stop.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/index.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/lib/retry.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/lib/retry_operation.js +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/common.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-forever.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +258 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safe-buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safe-buffer/index.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safe-buffer/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/dangerous.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/safer.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/tests.js +406 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/README.md +637 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/bin/semver.js +197 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/comparator.js +141 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/index.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/range.js +539 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/semver.js +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/clean.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/cmp.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/coerce.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/compare-build.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/compare-loose.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/compare.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/diff.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/eq.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/gt.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/gte.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/inc.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/lt.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/lte.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/major.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/minor.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/neq.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/parse.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/patch.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/prerelease.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/rcompare.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/rsort.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/satisfies.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/sort.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/valid.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/index.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/constants.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/debug.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/identifiers.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/parse-options.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/re.js +212 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/index.js +334 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/preload.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/range.bnf +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/gtr.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/intersects.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/ltr.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/min-version.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/outside.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/simplify.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/subset.js +247 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/to-comparators.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/valid.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/set-blocking/LICENSE.txt +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/set-blocking/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/set-blocking/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-command/index.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-command/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-command/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-regex/index.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-regex/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/LICENSE.txt +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/index.js +279 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/index.js +275 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/package.json +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/chain.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/index.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/sct.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/signer.js +146 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/config.js +165 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/error.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/index.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/sigstore.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/body.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/checkpoint.js +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/index.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/merkle.js +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/set.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/types/fetch.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/types/sigstore.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/types/utility.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/dump.js +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/error.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/index.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/length.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/obj.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/parse.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/tag.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/crypto.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/dsse.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/encoding.js +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/json.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/pem.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/stream.js +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/verify.js +160 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/cert.js +242 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/ext.js +145 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/sct.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/verify.js +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/build/utils.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/package.json +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/client/socksclient.js +793 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/constants.js +114 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/helpers.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/receivebuffer.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/util.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/index.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/index.md +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/index.md +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/migratingFromV1.md +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/package.json +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks-proxy-agent/package.json +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/index.js +386 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-exceptions/index.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-exceptions/package.json +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/AUTHORS +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/parse.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/scan.js +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-license-ids/deprecated.json +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-license-ids/index.json +569 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-license-ids/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ssri/lib/index.js +580 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ssri/package.json +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string_decoder/LICENSE +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string_decoder/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi/index.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/browser.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/index.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/index.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/create.js +111 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/extract.js +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/get-write-flag.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/header.js +304 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/large-numbers.js +104 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/list.js +139 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/mkdir.js +229 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/mode-fix.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/normalize-unicode.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/normalize-windows-path.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/pack.js +432 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/parse.js +552 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/path-reservations.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/pax.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/read-entry.js +107 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/replace.js +246 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/types.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/unpack.js +906 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/update.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/warn-mixin.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/write-entry.js +546 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/index.js +422 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.js +702 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.mjs +702 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/package.json +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/LICENSE +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/align.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/center.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/table.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/index.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/align.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/ansi-colors.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/center.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/dotalign.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/doubledot.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/table.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/factory.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/index.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/src/factory.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/src/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/da.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/de.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en-short.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/es.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/breadth.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/depth-descent.js +88 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/depth.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/config.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/error.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/fetcher.js +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/index.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/store.js +208 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/updater.js +320 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/tmpfile.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/url.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-filename/LICENSE +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-filename/lib/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-filename/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-slug/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-slug/lib/index.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-slug/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/History.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/browser.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/node.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/package.json +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-license/index.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-license/package.json +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-name/lib/index.js +107 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-name/package.json +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/index.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/index.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/package.json +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/LICENSE +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/combining.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/docs/index.md +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/index.js +99 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/test/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/README.md +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/bin/which.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/lib/index.js +111 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/index.js +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/options.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/posix.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/win32.js +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/index.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/options.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/posix.js +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/win32.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/package.json +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wide-align/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wide-align/align.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wide-align/package.json +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/index.js +214 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/index.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/package.json +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/index.js +216 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/package.json +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/write-file-atomic/LICENSE.md +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/write-file-atomic/lib/index.js +267 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/write-file-atomic/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/iterator.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/yallist.js +426 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/package.json +268 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/.eslintrc +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/CHANGELOG.md +389 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/all.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/circular.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/fn.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/inspect.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/index.js +524 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/package-support.json +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/package.json +99 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/readme.markdown +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/bigint.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/circular.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/deep.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/element.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/err.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/fakes.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/fn.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/global.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/has.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/holes.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/indent-option.js +271 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/inspect.js +139 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/number.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/quoteStyle.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/undef.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/values.js +211 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test-core-js.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/util.inspect.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/HISTORY.md +98 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/README.md +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/index.js +234 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/HISTORY.md +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/README.md +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/index.js +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/History.md +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/Readme.md +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/index.js +129 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/package.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/HISTORY.md +161 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/README.md +139 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/index.js +327 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.editorconfig +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.eslintrc +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/CHANGELOG.md +546 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/LICENSE.md +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/README.md +625 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/dist/qs.js +2054 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/formats.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/index.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/parse.js +263 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/stringify.js +326 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/utils.js +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/package.json +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/test/parse.js +855 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/test/stringify.js +909 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/test/utils.js +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/HISTORY.md +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/README.md +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/index.js +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/HISTORY.md +303 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/README.md +223 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/SECURITY.md +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/index.d.ts +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/index.js +329 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/README.md +584 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/index.d.ts +187 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/index.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/Readme.md +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/dangerous.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/safer.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/tests.js +406 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/HISTORY.md +521 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/README.md +327 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/SECURITY.md +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/index.js +1143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/readme.md +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/package.json +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/HISTORY.md +471 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/LICENSE +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/README.md +257 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/index.js +210 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/.eslintrc +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/CHANGELOG.md +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/README.md +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/env.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/index.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/package.json +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/README.md +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/index.d.ts +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/index.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/test/index.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.eslintignore +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.eslintrc +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/CHANGELOG.md +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/README.md +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/index.js +124 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/package.json +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/test/index.js +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/HISTORY.md +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/README.md +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/codes.json +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/index.js +146 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/HISTORY.md +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/README.md +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/index.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/HISTORY.md +259 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/README.md +170 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/index.js +266 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/HISTORY.md +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/README.md +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/index.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/package.json +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/README.md +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/HISTORY.md +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/README.md +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/index.js +149 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/.github/workflows/node.js.yml +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/README.md +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/package.json +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/node_modules/.package-lock.json +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/README.md +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/package.json +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/package-lock.json +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/package.json +15 -0
- package/the_app/node_modules/warbeast2000/the_app/package-lock.json +3414 -0
- package/the_app/node_modules/warbeast2000/the_app/package.json +15 -0
- package/the_app/package-lock.json +3414 -0
- package/the_app/package.json +15 -0
@@ -0,0 +1,86 @@
|
|
1
|
+
# socks
|
2
|
+
|
3
|
+
## Migrating from v1
|
4
|
+
|
5
|
+
For the most part, migrating from v1 takes minimal effort as v2 still supports factory creation of proxy connections with callback support.
|
6
|
+
|
7
|
+
### Notable breaking changes
|
8
|
+
|
9
|
+
- In an options object, the proxy 'command' is now required and does not default to 'connect'.
|
10
|
+
- **In an options object, 'target' is now known as 'destination'.**
|
11
|
+
- Sockets are no longer paused after a SOCKS connection is made, so socket.resume() is no longer required. (Please be sure to attach data handlers immediately to the Socket to avoid losing data).
|
12
|
+
- In v2, only the 'connect' command is supported via the factory SocksClient.createConnection function. (BIND and ASSOCIATE must be used with a SocksClient instance via event handlers).
|
13
|
+
- In v2, the factory SocksClient.createConnection function callback is called with a single object rather than separate socket and info object.
|
14
|
+
- A SOCKS http/https agent is no longer bundled into the library.
|
15
|
+
|
16
|
+
For informational purposes, here is the original getting started example from v1 converted to work with v2.
|
17
|
+
|
18
|
+
### Before (v1)
|
19
|
+
|
20
|
+
```javascript
|
21
|
+
var Socks = require('socks');
|
22
|
+
|
23
|
+
var options = {
|
24
|
+
proxy: {
|
25
|
+
ipaddress: "202.101.228.108",
|
26
|
+
port: 1080,
|
27
|
+
type: 5
|
28
|
+
},
|
29
|
+
target: {
|
30
|
+
host: "google.com",
|
31
|
+
port: 80
|
32
|
+
},
|
33
|
+
command: 'connect'
|
34
|
+
};
|
35
|
+
|
36
|
+
Socks.createConnection(options, function(err, socket, info) {
|
37
|
+
if (err)
|
38
|
+
console.log(err);
|
39
|
+
else {
|
40
|
+
socket.write("GET / HTTP/1.1\nHost: google.com\n\n");
|
41
|
+
socket.on('data', function(data) {
|
42
|
+
console.log(data.length);
|
43
|
+
console.log(data);
|
44
|
+
});
|
45
|
+
|
46
|
+
// PLEASE NOTE: sockets need to be resumed before any data will come in or out as they are paused right before this callback is fired.
|
47
|
+
socket.resume();
|
48
|
+
|
49
|
+
// 569
|
50
|
+
// <Buffer 48 54 54 50 2f 31 2e 31 20 33 30 31 20 4d 6f 76 65 64 20 50 65...
|
51
|
+
}
|
52
|
+
});
|
53
|
+
```
|
54
|
+
|
55
|
+
### After (v2)
|
56
|
+
```javascript
|
57
|
+
const SocksClient = require('socks').SocksClient;
|
58
|
+
|
59
|
+
let options = {
|
60
|
+
proxy: {
|
61
|
+
ipaddress: "202.101.228.108",
|
62
|
+
port: 1080,
|
63
|
+
type: 5
|
64
|
+
},
|
65
|
+
destination: {
|
66
|
+
host: "google.com",
|
67
|
+
port: 80
|
68
|
+
},
|
69
|
+
command: 'connect'
|
70
|
+
};
|
71
|
+
|
72
|
+
SocksClient.createConnection(options, function(err, result) {
|
73
|
+
if (err)
|
74
|
+
console.log(err);
|
75
|
+
else {
|
76
|
+
result.socket.write("GET / HTTP/1.1\nHost: google.com\n\n");
|
77
|
+
result.socket.on('data', function(data) {
|
78
|
+
console.log(data.length);
|
79
|
+
console.log(data);
|
80
|
+
});
|
81
|
+
|
82
|
+
// 569
|
83
|
+
// <Buffer 48 54 54 50 2f 31 2e 31 20 33 30 31 20 4d 6f 76 65 64 20 50 65...
|
84
|
+
}
|
85
|
+
});
|
86
|
+
```
|
package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/package.json
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
{
|
2
|
+
"name": "socks",
|
3
|
+
"private": false,
|
4
|
+
"version": "2.7.1",
|
5
|
+
"description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.",
|
6
|
+
"main": "build/index.js",
|
7
|
+
"typings": "typings/index.d.ts",
|
8
|
+
"homepage": "https://github.com/JoshGlazebrook/socks/",
|
9
|
+
"repository": {
|
10
|
+
"type": "git",
|
11
|
+
"url": "https://github.com/JoshGlazebrook/socks.git"
|
12
|
+
},
|
13
|
+
"bugs": {
|
14
|
+
"url": "https://github.com/JoshGlazebrook/socks/issues"
|
15
|
+
},
|
16
|
+
"keywords": [
|
17
|
+
"socks",
|
18
|
+
"proxy",
|
19
|
+
"tor",
|
20
|
+
"socks 4",
|
21
|
+
"socks 5",
|
22
|
+
"socks4",
|
23
|
+
"socks5"
|
24
|
+
],
|
25
|
+
"engines": {
|
26
|
+
"node": ">= 10.13.0",
|
27
|
+
"npm": ">= 3.0.0"
|
28
|
+
},
|
29
|
+
"author": "Josh Glazebrook",
|
30
|
+
"contributors": [
|
31
|
+
"castorw"
|
32
|
+
],
|
33
|
+
"license": "MIT",
|
34
|
+
"readmeFilename": "README.md",
|
35
|
+
"devDependencies": {
|
36
|
+
"@types/ip": "1.1.0",
|
37
|
+
"@types/mocha": "^9.1.1",
|
38
|
+
"@types/node": "^18.0.6",
|
39
|
+
"@typescript-eslint/eslint-plugin": "^5.30.6",
|
40
|
+
"@typescript-eslint/parser": "^5.30.6",
|
41
|
+
"eslint": "^8.20.0",
|
42
|
+
"mocha": "^10.0.0",
|
43
|
+
"prettier": "^2.7.1",
|
44
|
+
"ts-node": "^10.9.1",
|
45
|
+
"typescript": "^4.7.4"
|
46
|
+
},
|
47
|
+
"dependencies": {
|
48
|
+
"ip": "^2.0.0",
|
49
|
+
"smart-buffer": "^4.2.0"
|
50
|
+
},
|
51
|
+
"scripts": {
|
52
|
+
"prepublish": "npm install -g typescript && npm run build",
|
53
|
+
"test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts",
|
54
|
+
"prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml",
|
55
|
+
"lint": "eslint 'src/**/*.ts'",
|
56
|
+
"build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p ."
|
57
|
+
}
|
58
|
+
}
|
@@ -0,0 +1,182 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
+
}) : function(o, v) {
|
16
|
+
o["default"] = v;
|
17
|
+
});
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
19
|
+
if (mod && mod.__esModule) return mod;
|
20
|
+
var result = {};
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
22
|
+
__setModuleDefault(result, mod);
|
23
|
+
return result;
|
24
|
+
};
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
27
|
+
};
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
29
|
+
exports.SocksProxyAgent = void 0;
|
30
|
+
const socks_1 = require("socks");
|
31
|
+
const agent_base_1 = require("agent-base");
|
32
|
+
const debug_1 = __importDefault(require("debug"));
|
33
|
+
const dns = __importStar(require("dns"));
|
34
|
+
const net = __importStar(require("net"));
|
35
|
+
const tls = __importStar(require("tls"));
|
36
|
+
const url_1 = require("url");
|
37
|
+
const debug = (0, debug_1.default)('socks-proxy-agent');
|
38
|
+
function parseSocksURL(url) {
|
39
|
+
let lookup = false;
|
40
|
+
let type = 5;
|
41
|
+
const host = url.hostname;
|
42
|
+
// From RFC 1928, Section 3: https://tools.ietf.org/html/rfc1928#section-3
|
43
|
+
// "The SOCKS service is conventionally located on TCP port 1080"
|
44
|
+
const port = parseInt(url.port, 10) || 1080;
|
45
|
+
// figure out if we want socks v4 or v5, based on the "protocol" used.
|
46
|
+
// Defaults to 5.
|
47
|
+
switch (url.protocol.replace(':', '')) {
|
48
|
+
case 'socks4':
|
49
|
+
lookup = true;
|
50
|
+
type = 4;
|
51
|
+
break;
|
52
|
+
// pass through
|
53
|
+
case 'socks4a':
|
54
|
+
type = 4;
|
55
|
+
break;
|
56
|
+
case 'socks5':
|
57
|
+
lookup = true;
|
58
|
+
type = 5;
|
59
|
+
break;
|
60
|
+
// pass through
|
61
|
+
case 'socks': // no version specified, default to 5h
|
62
|
+
type = 5;
|
63
|
+
break;
|
64
|
+
case 'socks5h':
|
65
|
+
type = 5;
|
66
|
+
break;
|
67
|
+
default:
|
68
|
+
throw new TypeError(`A "socks" protocol must be specified! Got: ${String(url.protocol)}`);
|
69
|
+
}
|
70
|
+
const proxy = {
|
71
|
+
host,
|
72
|
+
port,
|
73
|
+
type,
|
74
|
+
};
|
75
|
+
if (url.username) {
|
76
|
+
Object.defineProperty(proxy, 'userId', {
|
77
|
+
value: decodeURIComponent(url.username),
|
78
|
+
enumerable: false,
|
79
|
+
});
|
80
|
+
}
|
81
|
+
if (url.password != null) {
|
82
|
+
Object.defineProperty(proxy, 'password', {
|
83
|
+
value: decodeURIComponent(url.password),
|
84
|
+
enumerable: false,
|
85
|
+
});
|
86
|
+
}
|
87
|
+
return { lookup, proxy };
|
88
|
+
}
|
89
|
+
class SocksProxyAgent extends agent_base_1.Agent {
|
90
|
+
constructor(uri, opts) {
|
91
|
+
super(opts);
|
92
|
+
const url = typeof uri === 'string' ? new url_1.URL(uri) : uri;
|
93
|
+
const { proxy, lookup } = parseSocksURL(url);
|
94
|
+
this.shouldLookup = lookup;
|
95
|
+
this.proxy = proxy;
|
96
|
+
this.timeout = opts?.timeout ?? null;
|
97
|
+
}
|
98
|
+
/**
|
99
|
+
* Initiates a SOCKS connection to the specified SOCKS proxy server,
|
100
|
+
* which in turn connects to the specified remote host and port.
|
101
|
+
*/
|
102
|
+
async connect(req, opts) {
|
103
|
+
const { shouldLookup, proxy, timeout } = this;
|
104
|
+
if (!opts.host) {
|
105
|
+
throw new Error('No `host` defined!');
|
106
|
+
}
|
107
|
+
let { host } = opts;
|
108
|
+
const { port, lookup: lookupFn = dns.lookup } = opts;
|
109
|
+
if (shouldLookup) {
|
110
|
+
// Client-side DNS resolution for "4" and "5" socks proxy versions.
|
111
|
+
host = await new Promise((resolve, reject) => {
|
112
|
+
// Use the request's custom lookup, if one was configured:
|
113
|
+
lookupFn(host, {}, (err, res) => {
|
114
|
+
if (err) {
|
115
|
+
reject(err);
|
116
|
+
}
|
117
|
+
else {
|
118
|
+
resolve(res);
|
119
|
+
}
|
120
|
+
});
|
121
|
+
});
|
122
|
+
}
|
123
|
+
const socksOpts = {
|
124
|
+
proxy,
|
125
|
+
destination: {
|
126
|
+
host,
|
127
|
+
port: typeof port === 'number' ? port : parseInt(port, 10),
|
128
|
+
},
|
129
|
+
command: 'connect',
|
130
|
+
timeout: timeout ?? undefined,
|
131
|
+
};
|
132
|
+
const cleanup = (tlsSocket) => {
|
133
|
+
req.destroy();
|
134
|
+
socket.destroy();
|
135
|
+
if (tlsSocket)
|
136
|
+
tlsSocket.destroy();
|
137
|
+
};
|
138
|
+
debug('Creating socks proxy connection: %o', socksOpts);
|
139
|
+
const { socket } = await socks_1.SocksClient.createConnection(socksOpts);
|
140
|
+
debug('Successfully created socks proxy connection');
|
141
|
+
if (timeout !== null) {
|
142
|
+
socket.setTimeout(timeout);
|
143
|
+
socket.on('timeout', () => cleanup());
|
144
|
+
}
|
145
|
+
if (opts.secureEndpoint) {
|
146
|
+
// The proxy is connecting to a TLS server, so upgrade
|
147
|
+
// this socket connection to a TLS connection.
|
148
|
+
debug('Upgrading socket connection to TLS');
|
149
|
+
const servername = opts.servername || opts.host;
|
150
|
+
const tlsSocket = tls.connect({
|
151
|
+
...omit(opts, 'host', 'path', 'port'),
|
152
|
+
socket,
|
153
|
+
servername: net.isIP(servername) ? undefined : servername,
|
154
|
+
});
|
155
|
+
tlsSocket.once('error', (error) => {
|
156
|
+
debug('Socket TLS error', error.message);
|
157
|
+
cleanup(tlsSocket);
|
158
|
+
});
|
159
|
+
return tlsSocket;
|
160
|
+
}
|
161
|
+
return socket;
|
162
|
+
}
|
163
|
+
}
|
164
|
+
SocksProxyAgent.protocols = [
|
165
|
+
'socks',
|
166
|
+
'socks4',
|
167
|
+
'socks4a',
|
168
|
+
'socks5',
|
169
|
+
'socks5h',
|
170
|
+
];
|
171
|
+
exports.SocksProxyAgent = SocksProxyAgent;
|
172
|
+
function omit(obj, ...keys) {
|
173
|
+
const ret = {};
|
174
|
+
let key;
|
175
|
+
for (key in obj) {
|
176
|
+
if (!keys.includes(key)) {
|
177
|
+
ret[key] = obj[key];
|
178
|
+
}
|
179
|
+
}
|
180
|
+
return ret;
|
181
|
+
}
|
182
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1,142 @@
|
|
1
|
+
{
|
2
|
+
"name": "socks-proxy-agent",
|
3
|
+
"version": "8.0.2",
|
4
|
+
"description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
|
5
|
+
"main": "./dist/index.js",
|
6
|
+
"types": "./dist/index.d.ts",
|
7
|
+
"files": [
|
8
|
+
"dist"
|
9
|
+
],
|
10
|
+
"author": {
|
11
|
+
"email": "nathan@tootallnate.net",
|
12
|
+
"name": "Nathan Rajlich",
|
13
|
+
"url": "http://n8.io/"
|
14
|
+
},
|
15
|
+
"contributors": [
|
16
|
+
{
|
17
|
+
"name": "Kiko Beats",
|
18
|
+
"email": "josefrancisco.verdu@gmail.com"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"name": "Josh Glazebrook",
|
22
|
+
"email": "josh@joshglazebrook.com"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"name": "talmobi",
|
26
|
+
"email": "talmobi@users.noreply.github.com"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"name": "Indospace.io",
|
30
|
+
"email": "justin@indospace.io"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"name": "Kilian von Pflugk",
|
34
|
+
"email": "github@jumoog.io"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"name": "Kyle",
|
38
|
+
"email": "admin@hk1229.cn"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"name": "Matheus Fernandes",
|
42
|
+
"email": "matheus.frndes@gmail.com"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"name": "Ricky Miller",
|
46
|
+
"email": "richardkazuomiller@gmail.com"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"name": "Shantanu Sharma",
|
50
|
+
"email": "shantanu34@outlook.com"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"name": "Tim Perry",
|
54
|
+
"email": "pimterry@gmail.com"
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"name": "Vadim Baryshev",
|
58
|
+
"email": "vadimbaryshev@gmail.com"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"name": "jigu",
|
62
|
+
"email": "luo1257857309@gmail.com"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"name": "Alba Mendez",
|
66
|
+
"email": "me@jmendeth.com"
|
67
|
+
},
|
68
|
+
{
|
69
|
+
"name": "Дмитрий Гуденков",
|
70
|
+
"email": "Dimangud@rambler.ru"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"name": "Andrei Bitca",
|
74
|
+
"email": "63638922+andrei-bitca-dc@users.noreply.github.com"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"name": "Andrew Casey",
|
78
|
+
"email": "amcasey@users.noreply.github.com"
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"name": "Brandon Ros",
|
82
|
+
"email": "brandonros1@gmail.com"
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"name": "Dang Duy Thanh",
|
86
|
+
"email": "thanhdd.it@gmail.com"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"name": "Dimitar Nestorov",
|
90
|
+
"email": "8790386+dimitarnestorov@users.noreply.github.com"
|
91
|
+
}
|
92
|
+
],
|
93
|
+
"repository": {
|
94
|
+
"type": "git",
|
95
|
+
"url": "https://github.com/TooTallNate/proxy-agents.git",
|
96
|
+
"directory": "packages/socks-proxy-agent"
|
97
|
+
},
|
98
|
+
"keywords": [
|
99
|
+
"agent",
|
100
|
+
"http",
|
101
|
+
"https",
|
102
|
+
"proxy",
|
103
|
+
"socks",
|
104
|
+
"socks4",
|
105
|
+
"socks4a",
|
106
|
+
"socks5",
|
107
|
+
"socks5h"
|
108
|
+
],
|
109
|
+
"dependencies": {
|
110
|
+
"agent-base": "^7.0.2",
|
111
|
+
"debug": "^4.3.4",
|
112
|
+
"socks": "^2.7.1"
|
113
|
+
},
|
114
|
+
"devDependencies": {
|
115
|
+
"@types/async-retry": "^1.4.5",
|
116
|
+
"@types/debug": "^4.1.7",
|
117
|
+
"@types/dns2": "^2.0.3",
|
118
|
+
"@types/jest": "^29.5.1",
|
119
|
+
"@types/node": "^14.18.45",
|
120
|
+
"async-listen": "^3.0.0",
|
121
|
+
"async-retry": "^1.3.3",
|
122
|
+
"cacheable-lookup": "^6.1.0",
|
123
|
+
"dns2": "^2.1.0",
|
124
|
+
"jest": "^29.5.0",
|
125
|
+
"socksv5": "github:TooTallNate/socksv5#fix/dstSock-close-event",
|
126
|
+
"ts-jest": "^29.1.0",
|
127
|
+
"typescript": "^5.0.4",
|
128
|
+
"proxy": "2.1.1",
|
129
|
+
"tsconfig": "0.0.0"
|
130
|
+
},
|
131
|
+
"engines": {
|
132
|
+
"node": ">= 14"
|
133
|
+
},
|
134
|
+
"license": "MIT",
|
135
|
+
"scripts": {
|
136
|
+
"build": "tsc",
|
137
|
+
"test": "jest --env node --verbose --bail test/test.ts",
|
138
|
+
"test-e2e": "jest --env node --verbose --bail test/e2e.test.ts",
|
139
|
+
"lint": "eslint . --ext .ts",
|
140
|
+
"pack": "node ../../scripts/pack.mjs"
|
141
|
+
}
|
142
|
+
}
|
package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|