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.

Files changed (5533) hide show
  1. package/.github/workflows/node.js.yml +31 -0
  2. package/README.md +5 -5
  3. package/index.js +7 -0
  4. package/package.json +23 -3
  5. package/the_app/node_modules/.bin/mime +16 -0
  6. package/the_app/node_modules/.bin/mime.cmd +17 -0
  7. package/the_app/node_modules/.bin/mime.ps1 +28 -0
  8. package/the_app/node_modules/.bin/npm +16 -0
  9. package/the_app/node_modules/.bin/npm.cmd +17 -0
  10. package/the_app/node_modules/.bin/npm.ps1 +28 -0
  11. package/the_app/node_modules/.bin/npx +16 -0
  12. package/the_app/node_modules/.bin/npx.cmd +17 -0
  13. package/the_app/node_modules/.bin/npx.ps1 +28 -0
  14. package/the_app/node_modules/.package-lock.json +3405 -0
  15. package/the_app/node_modules/accepts/HISTORY.md +243 -0
  16. package/the_app/node_modules/accepts/LICENSE +23 -0
  17. package/the_app/node_modules/accepts/README.md +140 -0
  18. package/the_app/node_modules/accepts/index.js +238 -0
  19. package/the_app/node_modules/accepts/package.json +47 -0
  20. package/the_app/node_modules/array-flatten/LICENSE +21 -0
  21. package/the_app/node_modules/array-flatten/README.md +43 -0
  22. package/the_app/node_modules/array-flatten/array-flatten.js +64 -0
  23. package/the_app/node_modules/array-flatten/package.json +39 -0
  24. package/the_app/node_modules/async-es/CHANGELOG.md +348 -0
  25. package/the_app/node_modules/async-es/LICENSE +19 -0
  26. package/the_app/node_modules/async-es/README.md +58 -0
  27. package/the_app/node_modules/async-es/all.js +102 -0
  28. package/the_app/node_modules/async-es/allLimit.js +29 -0
  29. package/the_app/node_modules/async-es/allSeries.js +28 -0
  30. package/the_app/node_modules/async-es/any.js +105 -0
  31. package/the_app/node_modules/async-es/anyLimit.js +30 -0
  32. package/the_app/node_modules/async-es/anySeries.js +29 -0
  33. package/the_app/node_modules/async-es/apply.js +48 -0
  34. package/the_app/node_modules/async-es/applyEach.js +43 -0
  35. package/the_app/node_modules/async-es/applyEachSeries.js +23 -0
  36. package/the_app/node_modules/async-es/asyncify.js +100 -0
  37. package/the_app/node_modules/async-es/auto.js +321 -0
  38. package/the_app/node_modules/async-es/autoInject.js +173 -0
  39. package/the_app/node_modules/async-es/cargo.js +51 -0
  40. package/the_app/node_modules/async-es/cargoQueue.js +59 -0
  41. package/the_app/node_modules/async-es/compose.js +43 -0
  42. package/the_app/node_modules/async-es/concat.js +101 -0
  43. package/the_app/node_modules/async-es/concatLimit.js +43 -0
  44. package/the_app/node_modules/async-es/concatSeries.js +27 -0
  45. package/the_app/node_modules/async-es/constant.js +48 -0
  46. package/the_app/node_modules/async-es/detect.js +79 -0
  47. package/the_app/node_modules/async-es/detectLimit.js +31 -0
  48. package/the_app/node_modules/async-es/detectSeries.js +30 -0
  49. package/the_app/node_modules/async-es/dir.js +32 -0
  50. package/the_app/node_modules/async-es/doDuring.js +51 -0
  51. package/the_app/node_modules/async-es/doUntil.js +31 -0
  52. package/the_app/node_modules/async-es/doWhilst.js +51 -0
  53. package/the_app/node_modules/async-es/during.js +61 -0
  54. package/the_app/node_modules/async-es/each.js +109 -0
  55. package/the_app/node_modules/async-es/eachLimit.js +30 -0
  56. package/the_app/node_modules/async-es/eachOf.js +156 -0
  57. package/the_app/node_modules/async-es/eachOfLimit.js +30 -0
  58. package/the_app/node_modules/async-es/eachOfSeries.js +25 -0
  59. package/the_app/node_modules/async-es/eachSeries.js +30 -0
  60. package/the_app/node_modules/async-es/ensureAsync.js +54 -0
  61. package/the_app/node_modules/async-es/every.js +102 -0
  62. package/the_app/node_modules/async-es/everyLimit.js +29 -0
  63. package/the_app/node_modules/async-es/everySeries.js +28 -0
  64. package/the_app/node_modules/async-es/filter.js +76 -0
  65. package/the_app/node_modules/async-es/filterLimit.js +28 -0
  66. package/the_app/node_modules/async-es/filterSeries.js +26 -0
  67. package/the_app/node_modules/async-es/find.js +79 -0
  68. package/the_app/node_modules/async-es/findLimit.js +31 -0
  69. package/the_app/node_modules/async-es/findSeries.js +30 -0
  70. package/the_app/node_modules/async-es/flatMap.js +101 -0
  71. package/the_app/node_modules/async-es/flatMapLimit.js +43 -0
  72. package/the_app/node_modules/async-es/flatMapSeries.js +27 -0
  73. package/the_app/node_modules/async-es/foldl.js +133 -0
  74. package/the_app/node_modules/async-es/foldr.js +29 -0
  75. package/the_app/node_modules/async-es/forEach.js +109 -0
  76. package/the_app/node_modules/async-es/forEachLimit.js +30 -0
  77. package/the_app/node_modules/async-es/forEachOf.js +156 -0
  78. package/the_app/node_modules/async-es/forEachOfLimit.js +30 -0
  79. package/the_app/node_modules/async-es/forEachOfSeries.js +25 -0
  80. package/the_app/node_modules/async-es/forEachSeries.js +30 -0
  81. package/the_app/node_modules/async-es/forever.js +48 -0
  82. package/the_app/node_modules/async-es/groupBy.js +96 -0
  83. package/the_app/node_modules/async-es/groupByLimit.js +54 -0
  84. package/the_app/node_modules/async-es/groupBySeries.js +24 -0
  85. package/the_app/node_modules/async-es/index.js +358 -0
  86. package/the_app/node_modules/async-es/inject.js +133 -0
  87. package/the_app/node_modules/async-es/internal/DoublyLinkedList.js +92 -0
  88. package/the_app/node_modules/async-es/internal/Heap.js +115 -0
  89. package/the_app/node_modules/async-es/internal/applyEach.js +14 -0
  90. package/the_app/node_modules/async-es/internal/asyncEachOfLimit.js +63 -0
  91. package/the_app/node_modules/async-es/internal/awaitify.js +21 -0
  92. package/the_app/node_modules/async-es/internal/breakLoop.js +4 -0
  93. package/the_app/node_modules/async-es/internal/consoleFunc.js +18 -0
  94. package/the_app/node_modules/async-es/internal/createTester.js +25 -0
  95. package/the_app/node_modules/async-es/internal/eachOfLimit.js +68 -0
  96. package/the_app/node_modules/async-es/internal/filter.js +42 -0
  97. package/the_app/node_modules/async-es/internal/getIterator.js +3 -0
  98. package/the_app/node_modules/async-es/internal/initialParams.js +6 -0
  99. package/the_app/node_modules/async-es/internal/isArrayLike.js +6 -0
  100. package/the_app/node_modules/async-es/internal/iterator.js +43 -0
  101. package/the_app/node_modules/async-es/internal/map.js +18 -0
  102. package/the_app/node_modules/async-es/internal/once.js +10 -0
  103. package/the_app/node_modules/async-es/internal/onlyOnce.js +8 -0
  104. package/the_app/node_modules/async-es/internal/parallel.js +17 -0
  105. package/the_app/node_modules/async-es/internal/promiseCallback.js +19 -0
  106. package/the_app/node_modules/async-es/internal/queue.js +276 -0
  107. package/the_app/node_modules/async-es/internal/range.js +7 -0
  108. package/the_app/node_modules/async-es/internal/reject.js +11 -0
  109. package/the_app/node_modules/async-es/internal/setImmediate.js +27 -0
  110. package/the_app/node_modules/async-es/internal/withoutIndex.js +3 -0
  111. package/the_app/node_modules/async-es/internal/wrapAsync.js +22 -0
  112. package/the_app/node_modules/async-es/log.js +30 -0
  113. package/the_app/node_modules/async-es/map.js +125 -0
  114. package/the_app/node_modules/async-es/mapLimit.js +28 -0
  115. package/the_app/node_modules/async-es/mapSeries.js +27 -0
  116. package/the_app/node_modules/async-es/mapValues.js +140 -0
  117. package/the_app/node_modules/async-es/mapValuesLimit.js +41 -0
  118. package/the_app/node_modules/async-es/mapValuesSeries.js +25 -0
  119. package/the_app/node_modules/async-es/memoize.js +73 -0
  120. package/the_app/node_modules/async-es/nextTick.js +45 -0
  121. package/the_app/node_modules/async-es/package.json +76 -0
  122. package/the_app/node_modules/async-es/parallel.js +165 -0
  123. package/the_app/node_modules/async-es/parallelLimit.js +26 -0
  124. package/the_app/node_modules/async-es/priorityQueue.js +68 -0
  125. package/the_app/node_modules/async-es/queue.js +151 -0
  126. package/the_app/node_modules/async-es/race.js +50 -0
  127. package/the_app/node_modules/async-es/reduce.js +133 -0
  128. package/the_app/node_modules/async-es/reduceRight.js +29 -0
  129. package/the_app/node_modules/async-es/reflect.js +63 -0
  130. package/the_app/node_modules/async-es/reflectAll.js +81 -0
  131. package/the_app/node_modules/async-es/reject.js +70 -0
  132. package/the_app/node_modules/async-es/rejectLimit.js +27 -0
  133. package/the_app/node_modules/async-es/rejectSeries.js +26 -0
  134. package/the_app/node_modules/async-es/retry.js +150 -0
  135. package/the_app/node_modules/async-es/retryable.js +59 -0
  136. package/the_app/node_modules/async-es/select.js +76 -0
  137. package/the_app/node_modules/async-es/selectLimit.js +28 -0
  138. package/the_app/node_modules/async-es/selectSeries.js +26 -0
  139. package/the_app/node_modules/async-es/seq.js +64 -0
  140. package/the_app/node_modules/async-es/series.js +171 -0
  141. package/the_app/node_modules/async-es/setImmediate.js +34 -0
  142. package/the_app/node_modules/async-es/some.js +105 -0
  143. package/the_app/node_modules/async-es/someLimit.js +30 -0
  144. package/the_app/node_modules/async-es/someSeries.js +29 -0
  145. package/the_app/node_modules/async-es/sortBy.js +172 -0
  146. package/the_app/node_modules/async-es/timeout.js +74 -0
  147. package/the_app/node_modules/async-es/times.js +38 -0
  148. package/the_app/node_modules/async-es/timesLimit.js +25 -0
  149. package/the_app/node_modules/async-es/timesSeries.js +20 -0
  150. package/the_app/node_modules/async-es/transform.js +154 -0
  151. package/the_app/node_modules/async-es/tryEach.js +61 -0
  152. package/the_app/node_modules/async-es/unmemoize.js +18 -0
  153. package/the_app/node_modules/async-es/until.js +46 -0
  154. package/the_app/node_modules/async-es/waterfall.js +85 -0
  155. package/the_app/node_modules/async-es/whilst.js +61 -0
  156. package/the_app/node_modules/async-es/wrapSync.js +100 -0
  157. package/the_app/node_modules/body-parser/HISTORY.md +657 -0
  158. package/the_app/node_modules/body-parser/LICENSE +23 -0
  159. package/the_app/node_modules/body-parser/README.md +464 -0
  160. package/the_app/node_modules/body-parser/SECURITY.md +25 -0
  161. package/the_app/node_modules/body-parser/index.js +156 -0
  162. package/the_app/node_modules/body-parser/lib/read.js +205 -0
  163. package/the_app/node_modules/body-parser/lib/types/json.js +236 -0
  164. package/the_app/node_modules/body-parser/lib/types/raw.js +101 -0
  165. package/the_app/node_modules/body-parser/lib/types/text.js +121 -0
  166. package/the_app/node_modules/body-parser/lib/types/urlencoded.js +284 -0
  167. package/the_app/node_modules/body-parser/package.json +56 -0
  168. package/the_app/node_modules/bytes/History.md +97 -0
  169. package/the_app/node_modules/bytes/LICENSE +23 -0
  170. package/the_app/node_modules/bytes/Readme.md +152 -0
  171. package/the_app/node_modules/bytes/index.js +170 -0
  172. package/the_app/node_modules/bytes/package.json +42 -0
  173. package/the_app/node_modules/call-bind/.eslintignore +1 -0
  174. package/the_app/node_modules/call-bind/.eslintrc +16 -0
  175. package/the_app/node_modules/call-bind/.github/FUNDING.yml +12 -0
  176. package/the_app/node_modules/call-bind/.nycrc +9 -0
  177. package/the_app/node_modules/call-bind/CHANGELOG.md +77 -0
  178. package/the_app/node_modules/call-bind/LICENSE +21 -0
  179. package/the_app/node_modules/call-bind/README.md +64 -0
  180. package/the_app/node_modules/call-bind/callBound.js +15 -0
  181. package/the_app/node_modules/call-bind/index.js +44 -0
  182. package/the_app/node_modules/call-bind/package.json +90 -0
  183. package/the_app/node_modules/call-bind/test/callBound.js +54 -0
  184. package/the_app/node_modules/call-bind/test/index.js +80 -0
  185. package/the_app/node_modules/content-disposition/HISTORY.md +60 -0
  186. package/the_app/node_modules/content-disposition/LICENSE +22 -0
  187. package/the_app/node_modules/content-disposition/README.md +142 -0
  188. package/the_app/node_modules/content-disposition/index.js +458 -0
  189. package/the_app/node_modules/content-disposition/package.json +44 -0
  190. package/the_app/node_modules/content-type/HISTORY.md +29 -0
  191. package/the_app/node_modules/content-type/LICENSE +22 -0
  192. package/the_app/node_modules/content-type/README.md +94 -0
  193. package/the_app/node_modules/content-type/index.js +225 -0
  194. package/the_app/node_modules/content-type/package.json +42 -0
  195. package/the_app/node_modules/cookie/HISTORY.md +142 -0
  196. package/the_app/node_modules/cookie/LICENSE +24 -0
  197. package/the_app/node_modules/cookie/README.md +302 -0
  198. package/the_app/node_modules/cookie/SECURITY.md +25 -0
  199. package/the_app/node_modules/cookie/index.js +270 -0
  200. package/the_app/node_modules/cookie/package.json +44 -0
  201. package/the_app/node_modules/cookie-signature/History.md +38 -0
  202. package/the_app/node_modules/cookie-signature/Readme.md +42 -0
  203. package/the_app/node_modules/cookie-signature/index.js +51 -0
  204. package/the_app/node_modules/cookie-signature/package.json +18 -0
  205. package/the_app/node_modules/debug/.coveralls.yml +1 -0
  206. package/the_app/node_modules/debug/.eslintrc +11 -0
  207. package/the_app/node_modules/debug/.travis.yml +14 -0
  208. package/the_app/node_modules/debug/CHANGELOG.md +362 -0
  209. package/the_app/node_modules/debug/LICENSE +19 -0
  210. package/the_app/node_modules/debug/Makefile +50 -0
  211. package/the_app/node_modules/debug/README.md +312 -0
  212. package/the_app/node_modules/debug/component.json +19 -0
  213. package/the_app/node_modules/debug/karma.conf.js +70 -0
  214. package/the_app/node_modules/debug/node.js +1 -0
  215. package/the_app/node_modules/debug/package.json +49 -0
  216. package/the_app/node_modules/debug/src/browser.js +185 -0
  217. package/the_app/node_modules/debug/src/debug.js +202 -0
  218. package/the_app/node_modules/debug/src/index.js +10 -0
  219. package/the_app/node_modules/debug/src/inspector-log.js +15 -0
  220. package/the_app/node_modules/debug/src/node.js +248 -0
  221. package/the_app/node_modules/define-data-property/.eslintrc +24 -0
  222. package/the_app/node_modules/define-data-property/.github/FUNDING.yml +12 -0
  223. package/the_app/node_modules/define-data-property/.nycrc +13 -0
  224. package/the_app/node_modules/define-data-property/CHANGELOG.md +41 -0
  225. package/the_app/node_modules/define-data-property/LICENSE +21 -0
  226. package/the_app/node_modules/define-data-property/README.md +67 -0
  227. package/the_app/node_modules/define-data-property/index.d.ts +3 -0
  228. package/the_app/node_modules/define-data-property/index.d.ts.map +1 -0
  229. package/the_app/node_modules/define-data-property/index.js +68 -0
  230. package/the_app/node_modules/define-data-property/package.json +113 -0
  231. package/the_app/node_modules/define-data-property/test/index.js +392 -0
  232. package/the_app/node_modules/define-data-property/tsconfig.json +59 -0
  233. package/the_app/node_modules/depd/History.md +103 -0
  234. package/the_app/node_modules/depd/LICENSE +22 -0
  235. package/the_app/node_modules/depd/Readme.md +280 -0
  236. package/the_app/node_modules/depd/index.js +538 -0
  237. package/the_app/node_modules/depd/lib/browser/index.js +77 -0
  238. package/the_app/node_modules/depd/package.json +45 -0
  239. package/the_app/node_modules/destroy/LICENSE +23 -0
  240. package/the_app/node_modules/destroy/README.md +63 -0
  241. package/the_app/node_modules/destroy/index.js +209 -0
  242. package/the_app/node_modules/destroy/package.json +48 -0
  243. package/the_app/node_modules/ee-first/LICENSE +22 -0
  244. package/the_app/node_modules/ee-first/README.md +80 -0
  245. package/the_app/node_modules/ee-first/index.js +95 -0
  246. package/the_app/node_modules/ee-first/package.json +29 -0
  247. package/the_app/node_modules/encodeurl/HISTORY.md +14 -0
  248. package/the_app/node_modules/encodeurl/LICENSE +22 -0
  249. package/the_app/node_modules/encodeurl/README.md +128 -0
  250. package/the_app/node_modules/encodeurl/index.js +60 -0
  251. package/the_app/node_modules/encodeurl/package.json +40 -0
  252. package/the_app/node_modules/escape-html/LICENSE +24 -0
  253. package/the_app/node_modules/escape-html/Readme.md +43 -0
  254. package/the_app/node_modules/escape-html/index.js +78 -0
  255. package/the_app/node_modules/escape-html/package.json +24 -0
  256. package/the_app/node_modules/etag/HISTORY.md +83 -0
  257. package/the_app/node_modules/etag/LICENSE +22 -0
  258. package/the_app/node_modules/etag/README.md +159 -0
  259. package/the_app/node_modules/etag/index.js +131 -0
  260. package/the_app/node_modules/etag/package.json +47 -0
  261. package/the_app/node_modules/express/History.md +3588 -0
  262. package/the_app/node_modules/express/LICENSE +24 -0
  263. package/the_app/node_modules/express/Readme.md +166 -0
  264. package/the_app/node_modules/express/index.js +11 -0
  265. package/the_app/node_modules/express/lib/application.js +661 -0
  266. package/the_app/node_modules/express/lib/express.js +116 -0
  267. package/the_app/node_modules/express/lib/middleware/init.js +43 -0
  268. package/the_app/node_modules/express/lib/middleware/query.js +47 -0
  269. package/the_app/node_modules/express/lib/request.js +525 -0
  270. package/the_app/node_modules/express/lib/response.js +1169 -0
  271. package/the_app/node_modules/express/lib/router/index.js +673 -0
  272. package/the_app/node_modules/express/lib/router/layer.js +181 -0
  273. package/the_app/node_modules/express/lib/router/route.js +225 -0
  274. package/the_app/node_modules/express/lib/utils.js +304 -0
  275. package/the_app/node_modules/express/lib/view.js +182 -0
  276. package/the_app/node_modules/express/package.json +99 -0
  277. package/the_app/node_modules/finalhandler/HISTORY.md +195 -0
  278. package/the_app/node_modules/finalhandler/LICENSE +22 -0
  279. package/the_app/node_modules/finalhandler/README.md +147 -0
  280. package/the_app/node_modules/finalhandler/SECURITY.md +25 -0
  281. package/the_app/node_modules/finalhandler/index.js +336 -0
  282. package/the_app/node_modules/finalhandler/package.json +46 -0
  283. package/the_app/node_modules/forwarded/HISTORY.md +21 -0
  284. package/the_app/node_modules/forwarded/LICENSE +22 -0
  285. package/the_app/node_modules/forwarded/README.md +57 -0
  286. package/the_app/node_modules/forwarded/index.js +90 -0
  287. package/the_app/node_modules/forwarded/package.json +45 -0
  288. package/the_app/node_modules/fresh/HISTORY.md +70 -0
  289. package/the_app/node_modules/fresh/LICENSE +23 -0
  290. package/the_app/node_modules/fresh/README.md +119 -0
  291. package/the_app/node_modules/fresh/index.js +137 -0
  292. package/the_app/node_modules/fresh/package.json +46 -0
  293. package/the_app/node_modules/function-bind/.eslintrc +21 -0
  294. package/the_app/node_modules/function-bind/.github/FUNDING.yml +12 -0
  295. package/the_app/node_modules/function-bind/.github/SECURITY.md +3 -0
  296. package/the_app/node_modules/function-bind/.nycrc +13 -0
  297. package/the_app/node_modules/function-bind/CHANGELOG.md +136 -0
  298. package/the_app/node_modules/function-bind/LICENSE +20 -0
  299. package/the_app/node_modules/function-bind/README.md +46 -0
  300. package/the_app/node_modules/function-bind/implementation.js +84 -0
  301. package/the_app/node_modules/function-bind/index.js +5 -0
  302. package/the_app/node_modules/function-bind/package.json +87 -0
  303. package/the_app/node_modules/function-bind/test/.eslintrc +9 -0
  304. package/the_app/node_modules/function-bind/test/index.js +252 -0
  305. package/the_app/node_modules/get-intrinsic/.eslintrc +38 -0
  306. package/the_app/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  307. package/the_app/node_modules/get-intrinsic/.nycrc +9 -0
  308. package/the_app/node_modules/get-intrinsic/CHANGELOG.md +125 -0
  309. package/the_app/node_modules/get-intrinsic/LICENSE +21 -0
  310. package/the_app/node_modules/get-intrinsic/README.md +71 -0
  311. package/the_app/node_modules/get-intrinsic/index.js +351 -0
  312. package/the_app/node_modules/get-intrinsic/package.json +93 -0
  313. package/the_app/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  314. package/the_app/node_modules/gopd/.eslintrc +16 -0
  315. package/the_app/node_modules/gopd/.github/FUNDING.yml +12 -0
  316. package/the_app/node_modules/gopd/CHANGELOG.md +25 -0
  317. package/the_app/node_modules/gopd/LICENSE +21 -0
  318. package/the_app/node_modules/gopd/README.md +40 -0
  319. package/the_app/node_modules/gopd/index.js +16 -0
  320. package/the_app/node_modules/gopd/package.json +71 -0
  321. package/the_app/node_modules/gopd/test/index.js +35 -0
  322. package/the_app/node_modules/has-property-descriptors/.eslintrc +13 -0
  323. package/the_app/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
  324. package/the_app/node_modules/has-property-descriptors/.nycrc +9 -0
  325. package/the_app/node_modules/has-property-descriptors/CHANGELOG.md +27 -0
  326. package/the_app/node_modules/has-property-descriptors/LICENSE +21 -0
  327. package/the_app/node_modules/has-property-descriptors/README.md +43 -0
  328. package/the_app/node_modules/has-property-descriptors/index.js +33 -0
  329. package/the_app/node_modules/has-property-descriptors/package.json +77 -0
  330. package/the_app/node_modules/has-property-descriptors/test/index.js +57 -0
  331. package/the_app/node_modules/has-proto/.eslintrc +5 -0
  332. package/the_app/node_modules/has-proto/.github/FUNDING.yml +12 -0
  333. package/the_app/node_modules/has-proto/CHANGELOG.md +23 -0
  334. package/the_app/node_modules/has-proto/LICENSE +21 -0
  335. package/the_app/node_modules/has-proto/README.md +38 -0
  336. package/the_app/node_modules/has-proto/index.js +11 -0
  337. package/the_app/node_modules/has-proto/package.json +74 -0
  338. package/the_app/node_modules/has-proto/test/index.js +19 -0
  339. package/the_app/node_modules/has-symbols/.eslintrc +11 -0
  340. package/the_app/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  341. package/the_app/node_modules/has-symbols/.nycrc +9 -0
  342. package/the_app/node_modules/has-symbols/CHANGELOG.md +75 -0
  343. package/the_app/node_modules/has-symbols/LICENSE +21 -0
  344. package/the_app/node_modules/has-symbols/README.md +46 -0
  345. package/the_app/node_modules/has-symbols/index.js +13 -0
  346. package/the_app/node_modules/has-symbols/package.json +101 -0
  347. package/the_app/node_modules/has-symbols/shams.js +42 -0
  348. package/the_app/node_modules/has-symbols/test/index.js +22 -0
  349. package/the_app/node_modules/has-symbols/test/shams/core-js.js +28 -0
  350. package/the_app/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
  351. package/the_app/node_modules/has-symbols/test/tests.js +56 -0
  352. package/the_app/node_modules/hasown/.eslintrc +5 -0
  353. package/the_app/node_modules/hasown/.github/FUNDING.yml +12 -0
  354. package/the_app/node_modules/hasown/.nycrc +13 -0
  355. package/the_app/node_modules/hasown/CHANGELOG.md +20 -0
  356. package/the_app/node_modules/hasown/LICENSE +21 -0
  357. package/the_app/node_modules/hasown/README.md +40 -0
  358. package/the_app/node_modules/hasown/index.d.ts +3 -0
  359. package/the_app/node_modules/hasown/index.d.ts.map +1 -0
  360. package/the_app/node_modules/hasown/index.js +8 -0
  361. package/the_app/node_modules/hasown/package.json +91 -0
  362. package/the_app/node_modules/hasown/tsconfig.json +49 -0
  363. package/the_app/node_modules/http-errors/HISTORY.md +180 -0
  364. package/the_app/node_modules/http-errors/LICENSE +23 -0
  365. package/the_app/node_modules/http-errors/README.md +169 -0
  366. package/the_app/node_modules/http-errors/index.js +289 -0
  367. package/the_app/node_modules/http-errors/package.json +50 -0
  368. package/the_app/node_modules/iconv-lite/Changelog.md +162 -0
  369. package/the_app/node_modules/iconv-lite/LICENSE +21 -0
  370. package/the_app/node_modules/iconv-lite/README.md +156 -0
  371. package/the_app/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  372. package/the_app/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  373. package/the_app/node_modules/iconv-lite/encodings/index.js +22 -0
  374. package/the_app/node_modules/iconv-lite/encodings/internal.js +188 -0
  375. package/the_app/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  376. package/the_app/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  377. package/the_app/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  378. package/the_app/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  379. package/the_app/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  380. package/the_app/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  381. package/the_app/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  382. package/the_app/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  383. package/the_app/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  384. package/the_app/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  385. package/the_app/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  386. package/the_app/node_modules/iconv-lite/encodings/utf16.js +177 -0
  387. package/the_app/node_modules/iconv-lite/encodings/utf7.js +290 -0
  388. package/the_app/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  389. package/the_app/node_modules/iconv-lite/lib/extend-node.js +217 -0
  390. package/the_app/node_modules/iconv-lite/lib/index.d.ts +24 -0
  391. package/the_app/node_modules/iconv-lite/lib/index.js +153 -0
  392. package/the_app/node_modules/iconv-lite/lib/streams.js +121 -0
  393. package/the_app/node_modules/iconv-lite/package.json +46 -0
  394. package/the_app/node_modules/inherits/LICENSE +16 -0
  395. package/the_app/node_modules/inherits/README.md +42 -0
  396. package/the_app/node_modules/inherits/inherits.js +9 -0
  397. package/the_app/node_modules/inherits/inherits_browser.js +27 -0
  398. package/the_app/node_modules/inherits/package.json +29 -0
  399. package/the_app/node_modules/install/.travis.yml +12 -0
  400. package/the_app/node_modules/install/LICENSE +22 -0
  401. package/the_app/node_modules/install/README.md +123 -0
  402. package/the_app/node_modules/install/install.js +556 -0
  403. package/the_app/node_modules/install/install.min.js +1 -0
  404. package/the_app/node_modules/install/package.json +41 -0
  405. package/the_app/node_modules/install/scripts/docs.sh +7 -0
  406. package/the_app/node_modules/install/scripts/prepublish.sh +5 -0
  407. package/the_app/node_modules/ipaddr.js/LICENSE +19 -0
  408. package/the_app/node_modules/ipaddr.js/README.md +233 -0
  409. package/the_app/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  410. package/the_app/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  411. package/the_app/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  412. package/the_app/node_modules/ipaddr.js/package.json +35 -0
  413. package/the_app/node_modules/media-typer/HISTORY.md +22 -0
  414. package/the_app/node_modules/media-typer/LICENSE +22 -0
  415. package/the_app/node_modules/media-typer/README.md +81 -0
  416. package/the_app/node_modules/media-typer/index.js +270 -0
  417. package/the_app/node_modules/media-typer/package.json +26 -0
  418. package/the_app/node_modules/merge-descriptors/HISTORY.md +21 -0
  419. package/the_app/node_modules/merge-descriptors/LICENSE +23 -0
  420. package/the_app/node_modules/merge-descriptors/README.md +48 -0
  421. package/the_app/node_modules/merge-descriptors/index.js +60 -0
  422. package/the_app/node_modules/merge-descriptors/package.json +32 -0
  423. package/the_app/node_modules/methods/HISTORY.md +29 -0
  424. package/the_app/node_modules/methods/LICENSE +24 -0
  425. package/the_app/node_modules/methods/README.md +51 -0
  426. package/the_app/node_modules/methods/index.js +69 -0
  427. package/the_app/node_modules/methods/package.json +36 -0
  428. package/the_app/node_modules/mime/CHANGELOG.md +164 -0
  429. package/the_app/node_modules/mime/LICENSE +21 -0
  430. package/the_app/node_modules/mime/README.md +90 -0
  431. package/the_app/node_modules/mime/cli.js +8 -0
  432. package/the_app/node_modules/mime/mime.js +108 -0
  433. package/the_app/node_modules/mime/package.json +44 -0
  434. package/the_app/node_modules/mime/src/build.js +53 -0
  435. package/the_app/node_modules/mime/src/test.js +60 -0
  436. package/the_app/node_modules/mime/types.json +1 -0
  437. package/the_app/node_modules/mime-db/HISTORY.md +507 -0
  438. package/the_app/node_modules/mime-db/LICENSE +23 -0
  439. package/the_app/node_modules/mime-db/README.md +100 -0
  440. package/the_app/node_modules/mime-db/db.json +8519 -0
  441. package/the_app/node_modules/mime-db/index.js +12 -0
  442. package/the_app/node_modules/mime-db/package.json +60 -0
  443. package/the_app/node_modules/mime-types/HISTORY.md +397 -0
  444. package/the_app/node_modules/mime-types/LICENSE +23 -0
  445. package/the_app/node_modules/mime-types/README.md +113 -0
  446. package/the_app/node_modules/mime-types/index.js +188 -0
  447. package/the_app/node_modules/mime-types/package.json +44 -0
  448. package/the_app/node_modules/ms/index.js +152 -0
  449. package/the_app/node_modules/ms/license.md +21 -0
  450. package/the_app/node_modules/ms/package.json +37 -0
  451. package/the_app/node_modules/ms/readme.md +51 -0
  452. package/the_app/node_modules/negotiator/HISTORY.md +108 -0
  453. package/the_app/node_modules/negotiator/LICENSE +24 -0
  454. package/the_app/node_modules/negotiator/README.md +203 -0
  455. package/the_app/node_modules/negotiator/index.js +82 -0
  456. package/the_app/node_modules/negotiator/lib/charset.js +169 -0
  457. package/the_app/node_modules/negotiator/lib/encoding.js +184 -0
  458. package/the_app/node_modules/negotiator/lib/language.js +179 -0
  459. package/the_app/node_modules/negotiator/lib/mediaType.js +294 -0
  460. package/the_app/node_modules/negotiator/package.json +42 -0
  461. package/the_app/node_modules/npm/LICENSE +235 -0
  462. package/the_app/node_modules/npm/README.md +63 -0
  463. package/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
  464. package/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
  465. package/the_app/node_modules/npm/bin/npm +64 -0
  466. package/the_app/node_modules/npm/bin/npm-cli.js +2 -0
  467. package/the_app/node_modules/npm/bin/npm.cmd +19 -0
  468. package/the_app/node_modules/npm/bin/npm.ps1 +35 -0
  469. package/the_app/node_modules/npm/bin/npx +65 -0
  470. package/the_app/node_modules/npm/bin/npx-cli.js +130 -0
  471. package/the_app/node_modules/npm/bin/npx.cmd +20 -0
  472. package/the_app/node_modules/npm/bin/npx.ps1 +35 -0
  473. package/the_app/node_modules/npm/docs/content/commands/npm-access.md +123 -0
  474. package/the_app/node_modules/npm/docs/content/commands/npm-adduser.md +86 -0
  475. package/the_app/node_modules/npm/docs/content/commands/npm-audit.md +470 -0
  476. package/the_app/node_modules/npm/docs/content/commands/npm-bugs.md +109 -0
  477. package/the_app/node_modules/npm/docs/content/commands/npm-cache.md +94 -0
  478. package/the_app/node_modules/npm/docs/content/commands/npm-ci.md +317 -0
  479. package/the_app/node_modules/npm/docs/content/commands/npm-completion.md +41 -0
  480. package/the_app/node_modules/npm/docs/content/commands/npm-config.md +181 -0
  481. package/the_app/node_modules/npm/docs/content/commands/npm-dedupe.md +320 -0
  482. package/the_app/node_modules/npm/docs/content/commands/npm-deprecate.md +73 -0
  483. package/the_app/node_modules/npm/docs/content/commands/npm-diff.md +316 -0
  484. package/the_app/node_modules/npm/docs/content/commands/npm-dist-tag.md +154 -0
  485. package/the_app/node_modules/npm/docs/content/commands/npm-docs.md +108 -0
  486. package/the_app/node_modules/npm/docs/content/commands/npm-doctor.md +122 -0
  487. package/the_app/node_modules/npm/docs/content/commands/npm-edit.md +46 -0
  488. package/the_app/node_modules/npm/docs/content/commands/npm-exec.md +366 -0
  489. package/the_app/node_modules/npm/docs/content/commands/npm-explain.md +105 -0
  490. package/the_app/node_modules/npm/docs/content/commands/npm-explore.md +49 -0
  491. package/the_app/node_modules/npm/docs/content/commands/npm-find-dupes.md +246 -0
  492. package/the_app/node_modules/npm/docs/content/commands/npm-fund.md +145 -0
  493. package/the_app/node_modules/npm/docs/content/commands/npm-help-search.md +40 -0
  494. package/the_app/node_modules/npm/docs/content/commands/npm-help.md +46 -0
  495. package/the_app/node_modules/npm/docs/content/commands/npm-hook.md +112 -0
  496. package/the_app/node_modules/npm/docs/content/commands/npm-init.md +349 -0
  497. package/the_app/node_modules/npm/docs/content/commands/npm-install-ci-test.md +264 -0
  498. package/the_app/node_modules/npm/docs/content/commands/npm-install-test.md +361 -0
  499. package/the_app/node_modules/npm/docs/content/commands/npm-install.md +797 -0
  500. package/the_app/node_modules/npm/docs/content/commands/npm-link.md +396 -0
  501. package/the_app/node_modules/npm/docs/content/commands/npm-login.md +93 -0
  502. package/the_app/node_modules/npm/docs/content/commands/npm-logout.md +75 -0
  503. package/the_app/node_modules/npm/docs/content/commands/npm-ls.md +294 -0
  504. package/the_app/node_modules/npm/docs/content/commands/npm-org.md +114 -0
  505. package/the_app/node_modules/npm/docs/content/commands/npm-outdated.md +178 -0
  506. package/the_app/node_modules/npm/docs/content/commands/npm-owner.md +106 -0
  507. package/the_app/node_modules/npm/docs/content/commands/npm-pack.md +126 -0
  508. package/the_app/node_modules/npm/docs/content/commands/npm-ping.md +46 -0
  509. package/the_app/node_modules/npm/docs/content/commands/npm-pkg.md +272 -0
  510. package/the_app/node_modules/npm/docs/content/commands/npm-prefix.md +59 -0
  511. package/the_app/node_modules/npm/docs/content/commands/npm-profile.md +131 -0
  512. package/the_app/node_modules/npm/docs/content/commands/npm-prune.md +196 -0
  513. package/the_app/node_modules/npm/docs/content/commands/npm-publish.md +235 -0
  514. package/the_app/node_modules/npm/docs/content/commands/npm-query.md +241 -0
  515. package/the_app/node_modules/npm/docs/content/commands/npm-rebuild.md +168 -0
  516. package/the_app/node_modules/npm/docs/content/commands/npm-repo.md +102 -0
  517. package/the_app/node_modules/npm/docs/content/commands/npm-restart.md +70 -0
  518. package/the_app/node_modules/npm/docs/content/commands/npm-root.md +51 -0
  519. package/the_app/node_modules/npm/docs/content/commands/npm-run-script.md +253 -0
  520. package/the_app/node_modules/npm/docs/content/commands/npm-sbom.md +319 -0
  521. package/the_app/node_modules/npm/docs/content/commands/npm-search.md +159 -0
  522. package/the_app/node_modules/npm/docs/content/commands/npm-shrinkwrap.md +32 -0
  523. package/the_app/node_modules/npm/docs/content/commands/npm-star.md +78 -0
  524. package/the_app/node_modules/npm/docs/content/commands/npm-stars.md +40 -0
  525. package/the_app/node_modules/npm/docs/content/commands/npm-start.md +80 -0
  526. package/the_app/node_modules/npm/docs/content/commands/npm-stop.md +73 -0
  527. package/the_app/node_modules/npm/docs/content/commands/npm-team.md +155 -0
  528. package/the_app/node_modules/npm/docs/content/commands/npm-test.md +70 -0
  529. package/the_app/node_modules/npm/docs/content/commands/npm-token.md +130 -0
  530. package/the_app/node_modules/npm/docs/content/commands/npm-uninstall.md +159 -0
  531. package/the_app/node_modules/npm/docs/content/commands/npm-unpublish.md +136 -0
  532. package/the_app/node_modules/npm/docs/content/commands/npm-unstar.md +74 -0
  533. package/the_app/node_modules/npm/docs/content/commands/npm-update.md +446 -0
  534. package/the_app/node_modules/npm/docs/content/commands/npm-version.md +235 -0
  535. package/the_app/node_modules/npm/docs/content/commands/npm-view.md +200 -0
  536. package/the_app/node_modules/npm/docs/content/commands/npm-whoami.md +41 -0
  537. package/the_app/node_modules/npm/docs/content/commands/npm.md +175 -0
  538. package/the_app/node_modules/npm/docs/content/commands/npx.md +167 -0
  539. package/the_app/node_modules/npm/docs/content/configuring-npm/folders.md +219 -0
  540. package/the_app/node_modules/npm/docs/content/configuring-npm/install.md +78 -0
  541. package/the_app/node_modules/npm/docs/content/configuring-npm/npm-shrinkwrap-json.md +34 -0
  542. package/the_app/node_modules/npm/docs/content/configuring-npm/npmrc.md +137 -0
  543. package/the_app/node_modules/npm/docs/content/configuring-npm/package-json.md +1190 -0
  544. package/the_app/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +235 -0
  545. package/the_app/node_modules/npm/docs/content/using-npm/config.md +1984 -0
  546. package/the_app/node_modules/npm/docs/content/using-npm/dependency-selectors.md +207 -0
  547. package/the_app/node_modules/npm/docs/content/using-npm/developers.md +245 -0
  548. package/the_app/node_modules/npm/docs/content/using-npm/logging.md +96 -0
  549. package/the_app/node_modules/npm/docs/content/using-npm/orgs.md +93 -0
  550. package/the_app/node_modules/npm/docs/content/using-npm/package-spec.md +105 -0
  551. package/the_app/node_modules/npm/docs/content/using-npm/registry.md +86 -0
  552. package/the_app/node_modules/npm/docs/content/using-npm/removal.md +64 -0
  553. package/the_app/node_modules/npm/docs/content/using-npm/scope.md +143 -0
  554. package/the_app/node_modules/npm/docs/content/using-npm/scripts.md +368 -0
  555. package/the_app/node_modules/npm/docs/content/using-npm/workspaces.md +226 -0
  556. package/the_app/node_modules/npm/docs/lib/index.js +189 -0
  557. package/the_app/node_modules/npm/docs/output/commands/npm-access.html +262 -0
  558. package/the_app/node_modules/npm/docs/output/commands/npm-adduser.html +218 -0
  559. package/the_app/node_modules/npm/docs/output/commands/npm-audit.html +502 -0
  560. package/the_app/node_modules/npm/docs/output/commands/npm-bugs.html +243 -0
  561. package/the_app/node_modules/npm/docs/output/commands/npm-cache.html +236 -0
  562. package/the_app/node_modules/npm/docs/output/commands/npm-ci.html +397 -0
  563. package/the_app/node_modules/npm/docs/output/commands/npm-completion.html +186 -0
  564. package/the_app/node_modules/npm/docs/output/commands/npm-config.html +282 -0
  565. package/the_app/node_modules/npm/docs/output/commands/npm-dedupe.html +395 -0
  566. package/the_app/node_modules/npm/docs/output/commands/npm-deprecate.html +206 -0
  567. package/the_app/node_modules/npm/docs/output/commands/npm-diff.html +398 -0
  568. package/the_app/node_modules/npm/docs/output/commands/npm-dist-tag.html +281 -0
  569. package/the_app/node_modules/npm/docs/output/commands/npm-docs.html +242 -0
  570. package/the_app/node_modules/npm/docs/output/commands/npm-doctor.html +253 -0
  571. package/the_app/node_modules/npm/docs/output/commands/npm-edit.html +190 -0
  572. package/the_app/node_modules/npm/docs/output/commands/npm-exec.html +435 -0
  573. package/the_app/node_modules/npm/docs/output/commands/npm-explain.html +242 -0
  574. package/the_app/node_modules/npm/docs/output/commands/npm-explore.html +190 -0
  575. package/the_app/node_modules/npm/docs/output/commands/npm-find-dupes.html +341 -0
  576. package/the_app/node_modules/npm/docs/output/commands/npm-fund.html +267 -0
  577. package/the_app/node_modules/npm/docs/output/commands/npm-help-search.html +184 -0
  578. package/the_app/node_modules/npm/docs/output/commands/npm-help.html +190 -0
  579. package/the_app/node_modules/npm/docs/output/commands/npm-hook.html +226 -0
  580. package/the_app/node_modules/npm/docs/output/commands/npm-init.html +422 -0
  581. package/the_app/node_modules/npm/docs/output/commands/npm-install-ci-test.html +355 -0
  582. package/the_app/node_modules/npm/docs/output/commands/npm-install-test.html +425 -0
  583. package/the_app/node_modules/npm/docs/output/commands/npm-install.html +787 -0
  584. package/the_app/node_modules/npm/docs/output/commands/npm-link.html +450 -0
  585. package/the_app/node_modules/npm/docs/output/commands/npm-login.html +222 -0
  586. package/the_app/node_modules/npm/docs/output/commands/npm-logout.html +209 -0
  587. package/the_app/node_modules/npm/docs/output/commands/npm-ls.html +378 -0
  588. package/the_app/node_modules/npm/docs/output/commands/npm-org.html +231 -0
  589. package/the_app/node_modules/npm/docs/output/commands/npm-outdated.html +305 -0
  590. package/the_app/node_modules/npm/docs/output/commands/npm-owner.html +243 -0
  591. package/the_app/node_modules/npm/docs/output/commands/npm-pack.html +256 -0
  592. package/the_app/node_modules/npm/docs/output/commands/npm-ping.html +189 -0
  593. package/the_app/node_modules/npm/docs/output/commands/npm-pkg.html +364 -0
  594. package/the_app/node_modules/npm/docs/output/commands/npm-prefix.html +200 -0
  595. package/the_app/node_modules/npm/docs/output/commands/npm-profile.html +272 -0
  596. package/the_app/node_modules/npm/docs/output/commands/npm-prune.html +304 -0
  597. package/the_app/node_modules/npm/docs/output/commands/npm-publish.html +350 -0
  598. package/the_app/node_modules/npm/docs/output/commands/npm-query.html +365 -0
  599. package/the_app/node_modules/npm/docs/output/commands/npm-rebuild.html +288 -0
  600. package/the_app/node_modules/npm/docs/output/commands/npm-repo.html +236 -0
  601. package/the_app/node_modules/npm/docs/output/commands/npm-restart.html +211 -0
  602. package/the_app/node_modules/npm/docs/output/commands/npm-root.html +195 -0
  603. package/the_app/node_modules/npm/docs/output/commands/npm-run-script.html +345 -0
  604. package/the_app/node_modules/npm/docs/output/commands/npm-sbom.html +439 -0
  605. package/the_app/node_modules/npm/docs/output/commands/npm-search.html +272 -0
  606. package/the_app/node_modules/npm/docs/output/commands/npm-shrinkwrap.html +182 -0
  607. package/the_app/node_modules/npm/docs/output/commands/npm-star.html +209 -0
  608. package/the_app/node_modules/npm/docs/output/commands/npm-stars.html +185 -0
  609. package/the_app/node_modules/npm/docs/output/commands/npm-start.html +214 -0
  610. package/the_app/node_modules/npm/docs/output/commands/npm-stop.html +209 -0
  611. package/the_app/node_modules/npm/docs/output/commands/npm-team.html +272 -0
  612. package/the_app/node_modules/npm/docs/output/commands/npm-test.html +207 -0
  613. package/the_app/node_modules/npm/docs/output/commands/npm-token.html +266 -0
  614. package/the_app/node_modules/npm/docs/output/commands/npm-uninstall.html +278 -0
  615. package/the_app/node_modules/npm/docs/output/commands/npm-unpublish.html +267 -0
  616. package/the_app/node_modules/npm/docs/output/commands/npm-unstar.html +206 -0
  617. package/the_app/node_modules/npm/docs/output/commands/npm-update.html +486 -0
  618. package/the_app/node_modules/npm/docs/output/commands/npm-version.html +341 -0
  619. package/the_app/node_modules/npm/docs/output/commands/npm-view.html +297 -0
  620. package/the_app/node_modules/npm/docs/output/commands/npm-whoami.html +185 -0
  621. package/the_app/node_modules/npm/docs/output/commands/npm.html +296 -0
  622. package/the_app/node_modules/npm/docs/output/commands/npx.html +284 -0
  623. package/the_app/node_modules/npm/docs/output/configuring-npm/folders.html +322 -0
  624. package/the_app/node_modules/npm/docs/output/configuring-npm/install.html +217 -0
  625. package/the_app/node_modules/npm/docs/output/configuring-npm/npm-shrinkwrap-json.html +184 -0
  626. package/the_app/node_modules/npm/docs/output/configuring-npm/npmrc.html +261 -0
  627. package/the_app/node_modules/npm/docs/output/configuring-npm/package-json.html +1070 -0
  628. package/the_app/node_modules/npm/docs/output/configuring-npm/package-lock-json.html +390 -0
  629. package/the_app/node_modules/npm/docs/output/using-npm/config.html +1584 -0
  630. package/the_app/node_modules/npm/docs/output/using-npm/dependency-selectors.html +336 -0
  631. package/the_app/node_modules/npm/docs/output/using-npm/developers.html +352 -0
  632. package/the_app/node_modules/npm/docs/output/using-npm/logging.html +228 -0
  633. package/the_app/node_modules/npm/docs/output/using-npm/orgs.html +236 -0
  634. package/the_app/node_modules/npm/docs/output/using-npm/package-spec.html +255 -0
  635. package/the_app/node_modules/npm/docs/output/using-npm/registry.html +226 -0
  636. package/the_app/node_modules/npm/docs/output/using-npm/removal.html +199 -0
  637. package/the_app/node_modules/npm/docs/output/using-npm/scope.html +257 -0
  638. package/the_app/node_modules/npm/docs/output/using-npm/scripts.html +482 -0
  639. package/the_app/node_modules/npm/docs/output/using-npm/workspaces.html +313 -0
  640. package/the_app/node_modules/npm/index.js +5 -0
  641. package/the_app/node_modules/npm/lib/arborist-cmd.js +53 -0
  642. package/the_app/node_modules/npm/lib/base-command.js +165 -0
  643. package/the_app/node_modules/npm/lib/cli-entry.js +74 -0
  644. package/the_app/node_modules/npm/lib/cli.js +4 -0
  645. package/the_app/node_modules/npm/lib/commands/access.js +222 -0
  646. package/the_app/node_modules/npm/lib/commands/adduser.js +51 -0
  647. package/the_app/node_modules/npm/lib/commands/audit.js +511 -0
  648. package/the_app/node_modules/npm/lib/commands/bugs.js +34 -0
  649. package/the_app/node_modules/npm/lib/commands/cache.js +213 -0
  650. package/the_app/node_modules/npm/lib/commands/ci.js +117 -0
  651. package/the_app/node_modules/npm/lib/commands/completion.js +283 -0
  652. package/the_app/node_modules/npm/lib/commands/config.js +378 -0
  653. package/the_app/node_modules/npm/lib/commands/dedupe.js +52 -0
  654. package/the_app/node_modules/npm/lib/commands/deprecate.js +73 -0
  655. package/the_app/node_modules/npm/lib/commands/diff.js +291 -0
  656. package/the_app/node_modules/npm/lib/commands/dist-tag.js +205 -0
  657. package/the_app/node_modules/npm/lib/commands/docs.js +19 -0
  658. package/the_app/node_modules/npm/lib/commands/doctor.js +419 -0
  659. package/the_app/node_modules/npm/lib/commands/edit.js +76 -0
  660. package/the_app/node_modules/npm/lib/commands/exec.js +106 -0
  661. package/the_app/node_modules/npm/lib/commands/explain.js +128 -0
  662. package/the_app/node_modules/npm/lib/commands/explore.js +79 -0
  663. package/the_app/node_modules/npm/lib/commands/find-dupes.js +27 -0
  664. package/the_app/node_modules/npm/lib/commands/fund.js +225 -0
  665. package/the_app/node_modules/npm/lib/commands/get.js +22 -0
  666. package/the_app/node_modules/npm/lib/commands/help-search.js +194 -0
  667. package/the_app/node_modules/npm/lib/commands/help.js +113 -0
  668. package/the_app/node_modules/npm/lib/commands/hook.js +125 -0
  669. package/the_app/node_modules/npm/lib/commands/init.js +247 -0
  670. package/the_app/node_modules/npm/lib/commands/install-ci-test.js +15 -0
  671. package/the_app/node_modules/npm/lib/commands/install-test.js +15 -0
  672. package/the_app/node_modules/npm/lib/commands/install.js +178 -0
  673. package/the_app/node_modules/npm/lib/commands/link.js +192 -0
  674. package/the_app/node_modules/npm/lib/commands/ll.js +13 -0
  675. package/the_app/node_modules/npm/lib/commands/login.js +51 -0
  676. package/the_app/node_modules/npm/lib/commands/logout.js +49 -0
  677. package/the_app/node_modules/npm/lib/commands/ls.js +573 -0
  678. package/the_app/node_modules/npm/lib/commands/org.js +155 -0
  679. package/the_app/node_modules/npm/lib/commands/outdated.js +369 -0
  680. package/the_app/node_modules/npm/lib/commands/owner.js +232 -0
  681. package/the_app/node_modules/npm/lib/commands/pack.js +83 -0
  682. package/the_app/node_modules/npm/lib/commands/ping.js +29 -0
  683. package/the_app/node_modules/npm/lib/commands/pkg.js +148 -0
  684. package/the_app/node_modules/npm/lib/commands/prefix.js +13 -0
  685. package/the_app/node_modules/npm/lib/commands/profile.js +407 -0
  686. package/the_app/node_modules/npm/lib/commands/prune.js +33 -0
  687. package/the_app/node_modules/npm/lib/commands/publish.js +225 -0
  688. package/the_app/node_modules/npm/lib/commands/query.js +122 -0
  689. package/the_app/node_modules/npm/lib/commands/rebuild.js +82 -0
  690. package/the_app/node_modules/npm/lib/commands/repo.js +54 -0
  691. package/the_app/node_modules/npm/lib/commands/restart.js +13 -0
  692. package/the_app/node_modules/npm/lib/commands/root.js +11 -0
  693. package/the_app/node_modules/npm/lib/commands/run-script.js +249 -0
  694. package/the_app/node_modules/npm/lib/commands/sbom.js +155 -0
  695. package/the_app/node_modules/npm/lib/commands/search.js +114 -0
  696. package/the_app/node_modules/npm/lib/commands/set.js +25 -0
  697. package/the_app/node_modules/npm/lib/commands/shrinkwrap.js +71 -0
  698. package/the_app/node_modules/npm/lib/commands/star.js +71 -0
  699. package/the_app/node_modules/npm/lib/commands/stars.js +38 -0
  700. package/the_app/node_modules/npm/lib/commands/start.js +13 -0
  701. package/the_app/node_modules/npm/lib/commands/stop.js +13 -0
  702. package/the_app/node_modules/npm/lib/commands/team.js +154 -0
  703. package/the_app/node_modules/npm/lib/commands/test.js +13 -0
  704. package/the_app/node_modules/npm/lib/commands/token.js +229 -0
  705. package/the_app/node_modules/npm/lib/commands/uninstall.js +56 -0
  706. package/the_app/node_modules/npm/lib/commands/unpublish.js +171 -0
  707. package/the_app/node_modules/npm/lib/commands/unstar.js +7 -0
  708. package/the_app/node_modules/npm/lib/commands/update.js +69 -0
  709. package/the_app/node_modules/npm/lib/commands/version.js +156 -0
  710. package/the_app/node_modules/npm/lib/commands/view.js +510 -0
  711. package/the_app/node_modules/npm/lib/commands/whoami.js +16 -0
  712. package/the_app/node_modules/npm/lib/es6/validate-engines.js +49 -0
  713. package/the_app/node_modules/npm/lib/lifecycle-cmd.js +19 -0
  714. package/the_app/node_modules/npm/lib/npm.js +485 -0
  715. package/the_app/node_modules/npm/lib/package-url-cmd.js +65 -0
  716. package/the_app/node_modules/npm/lib/utils/audit-error.js +40 -0
  717. package/the_app/node_modules/npm/lib/utils/auth.js +100 -0
  718. package/the_app/node_modules/npm/lib/utils/cmd-list.js +178 -0
  719. package/the_app/node_modules/npm/lib/utils/completion/installed-deep.js +45 -0
  720. package/the_app/node_modules/npm/lib/utils/completion/installed-shallow.js +19 -0
  721. package/the_app/node_modules/npm/lib/utils/completion.fish +40 -0
  722. package/the_app/node_modules/npm/lib/utils/completion.sh +70 -0
  723. package/the_app/node_modules/npm/lib/utils/did-you-mean.js +40 -0
  724. package/the_app/node_modules/npm/lib/utils/display.js +126 -0
  725. package/the_app/node_modules/npm/lib/utils/error-message.js +435 -0
  726. package/the_app/node_modules/npm/lib/utils/exit-handler.js +227 -0
  727. package/the_app/node_modules/npm/lib/utils/explain-dep.js +135 -0
  728. package/the_app/node_modules/npm/lib/utils/explain-eresolve.js +71 -0
  729. package/the_app/node_modules/npm/lib/utils/format-bytes.js +30 -0
  730. package/the_app/node_modules/npm/lib/utils/format-search-stream.js +135 -0
  731. package/the_app/node_modules/npm/lib/utils/get-identity.js +26 -0
  732. package/the_app/node_modules/npm/lib/utils/is-windows.js +6 -0
  733. package/the_app/node_modules/npm/lib/utils/log-file.js +236 -0
  734. package/the_app/node_modules/npm/lib/utils/log-shim.js +59 -0
  735. package/the_app/node_modules/npm/lib/utils/npm-usage.js +74 -0
  736. package/the_app/node_modules/npm/lib/utils/open-url-prompt.js +69 -0
  737. package/the_app/node_modules/npm/lib/utils/open-url.js +50 -0
  738. package/the_app/node_modules/npm/lib/utils/otplease.js +48 -0
  739. package/the_app/node_modules/npm/lib/utils/ping.js +7 -0
  740. package/the_app/node_modules/npm/lib/utils/pulse-till-done.js +26 -0
  741. package/the_app/node_modules/npm/lib/utils/queryable.js +308 -0
  742. package/the_app/node_modules/npm/lib/utils/read-user-info.js +68 -0
  743. package/the_app/node_modules/npm/lib/utils/reify-finish.js +33 -0
  744. package/the_app/node_modules/npm/lib/utils/reify-output.js +185 -0
  745. package/the_app/node_modules/npm/lib/utils/replace-info.js +31 -0
  746. package/the_app/node_modules/npm/lib/utils/sbom-cyclonedx.js +201 -0
  747. package/the_app/node_modules/npm/lib/utils/sbom-spdx.js +182 -0
  748. package/the_app/node_modules/npm/lib/utils/tar.js +132 -0
  749. package/the_app/node_modules/npm/lib/utils/timers.js +116 -0
  750. package/the_app/node_modules/npm/lib/utils/update-notifier.js +126 -0
  751. package/the_app/node_modules/npm/lib/utils/validate-lockfile.js +29 -0
  752. package/the_app/node_modules/npm/lib/utils/web-auth.js +20 -0
  753. package/the_app/node_modules/npm/lib/workspaces/get-workspaces.js +54 -0
  754. package/the_app/node_modules/npm/lib/workspaces/update-workspaces.js +40 -0
  755. package/the_app/node_modules/npm/man/man1/npm-access.1 +115 -0
  756. package/the_app/node_modules/npm/man/man1/npm-adduser.1 +91 -0
  757. package/the_app/node_modules/npm/man/man1/npm-audit.1 +446 -0
  758. package/the_app/node_modules/npm/man/man1/npm-bugs.1 +115 -0
  759. package/the_app/node_modules/npm/man/man1/npm-cache.1 +78 -0
  760. package/the_app/node_modules/npm/man/man1/npm-ci.1 +289 -0
  761. package/the_app/node_modules/npm/man/man1/npm-completion.1 +35 -0
  762. package/the_app/node_modules/npm/man/man1/npm-config.1 +187 -0
  763. package/the_app/node_modules/npm/man/man1/npm-dedupe.1 +290 -0
  764. package/the_app/node_modules/npm/man/man1/npm-deprecate.1 +73 -0
  765. package/the_app/node_modules/npm/man/man1/npm-diff.1 +307 -0
  766. package/the_app/node_modules/npm/man/man1/npm-dist-tag.1 +144 -0
  767. package/the_app/node_modules/npm/man/man1/npm-docs.1 +113 -0
  768. package/the_app/node_modules/npm/man/man1/npm-doctor.1 +82 -0
  769. package/the_app/node_modules/npm/man/man1/npm-edit.1 +43 -0
  770. package/the_app/node_modules/npm/man/man1/npm-exec.1 +350 -0
  771. package/the_app/node_modules/npm/man/man1/npm-explain.1 +118 -0
  772. package/the_app/node_modules/npm/man/man1/npm-explore.1 +49 -0
  773. package/the_app/node_modules/npm/man/man1/npm-find-dupes.1 +225 -0
  774. package/the_app/node_modules/npm/man/man1/npm-fund.1 +142 -0
  775. package/the_app/node_modules/npm/man/man1/npm-help-search.1 +37 -0
  776. package/the_app/node_modules/npm/man/man1/npm-help.1 +47 -0
  777. package/the_app/node_modules/npm/man/man1/npm-hook.1 +115 -0
  778. package/the_app/node_modules/npm/man/man1/npm-init.1 +366 -0
  779. package/the_app/node_modules/npm/man/man1/npm-install-ci-test.1 +239 -0
  780. package/the_app/node_modules/npm/man/man1/npm-install-test.1 +336 -0
  781. package/the_app/node_modules/npm/man/man1/npm-install.1 +752 -0
  782. package/the_app/node_modules/npm/man/man1/npm-link.1 +355 -0
  783. package/the_app/node_modules/npm/man/man1/npm-login.1 +95 -0
  784. package/the_app/node_modules/npm/man/man1/npm-logout.1 +75 -0
  785. package/the_app/node_modules/npm/man/man1/npm-ls.1 +283 -0
  786. package/the_app/node_modules/npm/man/man1/npm-org.1 +125 -0
  787. package/the_app/node_modules/npm/man/man1/npm-outdated.1 +182 -0
  788. package/the_app/node_modules/npm/man/man1/npm-owner.1 +110 -0
  789. package/the_app/node_modules/npm/man/man1/npm-pack.1 +130 -0
  790. package/the_app/node_modules/npm/man/man1/npm-ping.1 +52 -0
  791. package/the_app/node_modules/npm/man/man1/npm-pkg.1 +286 -0
  792. package/the_app/node_modules/npm/man/man1/npm-prefix.1 +63 -0
  793. package/the_app/node_modules/npm/man/man1/npm-profile.1 +137 -0
  794. package/the_app/node_modules/npm/man/man1/npm-prune.1 +184 -0
  795. package/the_app/node_modules/npm/man/man1/npm-publish.1 +221 -0
  796. package/the_app/node_modules/npm/man/man1/npm-query.1 +243 -0
  797. package/the_app/node_modules/npm/man/man1/npm-rebuild.1 +178 -0
  798. package/the_app/node_modules/npm/man/man1/npm-repo.1 +103 -0
  799. package/the_app/node_modules/npm/man/man1/npm-restart.1 +85 -0
  800. package/the_app/node_modules/npm/man/man1/npm-root.1 +56 -0
  801. package/the_app/node_modules/npm/man/man1/npm-run-script.1 +234 -0
  802. package/the_app/node_modules/npm/man/man1/npm-sbom.1 +314 -0
  803. package/the_app/node_modules/npm/man/man1/npm-search.1 +156 -0
  804. package/the_app/node_modules/npm/man/man1/npm-shrinkwrap.1 +32 -0
  805. package/the_app/node_modules/npm/man/man1/npm-star.1 +76 -0
  806. package/the_app/node_modules/npm/man/man1/npm-stars.1 +41 -0
  807. package/the_app/node_modules/npm/man/man1/npm-start.1 +79 -0
  808. package/the_app/node_modules/npm/man/man1/npm-stop.1 +75 -0
  809. package/the_app/node_modules/npm/man/man1/npm-team.1 +148 -0
  810. package/the_app/node_modules/npm/man/man1/npm-test.1 +73 -0
  811. package/the_app/node_modules/npm/man/man1/npm-token.1 +130 -0
  812. package/the_app/node_modules/npm/man/man1/npm-uninstall.1 +159 -0
  813. package/the_app/node_modules/npm/man/man1/npm-unpublish.1 +137 -0
  814. package/the_app/node_modules/npm/man/man1/npm-unstar.1 +70 -0
  815. package/the_app/node_modules/npm/man/man1/npm-update.1 +406 -0
  816. package/the_app/node_modules/npm/man/man1/npm-version.1 +229 -0
  817. package/the_app/node_modules/npm/man/man1/npm-view.1 +213 -0
  818. package/the_app/node_modules/npm/man/man1/npm-whoami.1 +39 -0
  819. package/the_app/node_modules/npm/man/man1/npm.1 +131 -0
  820. package/the_app/node_modules/npm/man/man1/npx.1 +156 -0
  821. package/the_app/node_modules/npm/man/man5/folders.5 +152 -0
  822. package/the_app/node_modules/npm/man/man5/install.5 +57 -0
  823. package/the_app/node_modules/npm/man/man5/npm-global.5 +152 -0
  824. package/the_app/node_modules/npm/man/man5/npm-json.5 +1093 -0
  825. package/the_app/node_modules/npm/man/man5/npm-shrinkwrap-json.5 +23 -0
  826. package/the_app/node_modules/npm/man/man5/npmrc.5 +129 -0
  827. package/the_app/node_modules/npm/man/man5/package-json.5 +1093 -0
  828. package/the_app/node_modules/npm/man/man5/package-lock-json.5 +156 -0
  829. package/the_app/node_modules/npm/man/man7/config.7 +2002 -0
  830. package/the_app/node_modules/npm/man/man7/dependency-selectors.7 +309 -0
  831. package/the_app/node_modules/npm/man/man7/developers.7 +234 -0
  832. package/the_app/node_modules/npm/man/man7/logging.7 +108 -0
  833. package/the_app/node_modules/npm/man/man7/orgs.7 +145 -0
  834. package/the_app/node_modules/npm/man/man7/package-spec.7 +126 -0
  835. package/the_app/node_modules/npm/man/man7/registry.7 +51 -0
  836. package/the_app/node_modules/npm/man/man7/removal.7 +60 -0
  837. package/the_app/node_modules/npm/man/man7/scope.7 +113 -0
  838. package/the_app/node_modules/npm/man/man7/scripts.7 +407 -0
  839. package/the_app/node_modules/npm/man/man7/workspaces.7 +214 -0
  840. package/the_app/node_modules/npm/node_modules/.bin/arborist +16 -0
  841. package/the_app/node_modules/npm/node_modules/.bin/arborist.cmd +17 -0
  842. package/the_app/node_modules/npm/node_modules/.bin/arborist.ps1 +28 -0
  843. package/the_app/node_modules/npm/node_modules/.bin/color-support +16 -0
  844. package/the_app/node_modules/npm/node_modules/.bin/color-support.cmd +17 -0
  845. package/the_app/node_modules/npm/node_modules/.bin/color-support.ps1 +28 -0
  846. package/the_app/node_modules/npm/node_modules/.bin/cssesc +16 -0
  847. package/the_app/node_modules/npm/node_modules/.bin/cssesc.cmd +17 -0
  848. package/the_app/node_modules/npm/node_modules/.bin/cssesc.ps1 +28 -0
  849. package/the_app/node_modules/npm/node_modules/.bin/glob +16 -0
  850. package/the_app/node_modules/npm/node_modules/.bin/glob.cmd +17 -0
  851. package/the_app/node_modules/npm/node_modules/.bin/glob.ps1 +28 -0
  852. package/the_app/node_modules/npm/node_modules/.bin/installed-package-contents +16 -0
  853. package/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.cmd +17 -0
  854. package/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.ps1 +28 -0
  855. package/the_app/node_modules/npm/node_modules/.bin/mkdirp +16 -0
  856. package/the_app/node_modules/npm/node_modules/.bin/mkdirp.cmd +17 -0
  857. package/the_app/node_modules/npm/node_modules/.bin/mkdirp.ps1 +28 -0
  858. package/the_app/node_modules/npm/node_modules/.bin/node-gyp +16 -0
  859. package/the_app/node_modules/npm/node_modules/.bin/node-gyp.cmd +17 -0
  860. package/the_app/node_modules/npm/node_modules/.bin/node-gyp.ps1 +28 -0
  861. package/the_app/node_modules/npm/node_modules/.bin/node-which +16 -0
  862. package/the_app/node_modules/npm/node_modules/.bin/node-which.cmd +17 -0
  863. package/the_app/node_modules/npm/node_modules/.bin/node-which.ps1 +28 -0
  864. package/the_app/node_modules/npm/node_modules/.bin/nopt +16 -0
  865. package/the_app/node_modules/npm/node_modules/.bin/nopt.cmd +17 -0
  866. package/the_app/node_modules/npm/node_modules/.bin/nopt.ps1 +28 -0
  867. package/the_app/node_modules/npm/node_modules/.bin/pacote +16 -0
  868. package/the_app/node_modules/npm/node_modules/.bin/pacote.cmd +17 -0
  869. package/the_app/node_modules/npm/node_modules/.bin/pacote.ps1 +28 -0
  870. package/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal +16 -0
  871. package/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.cmd +17 -0
  872. package/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.ps1 +28 -0
  873. package/the_app/node_modules/npm/node_modules/.bin/semver +16 -0
  874. package/the_app/node_modules/npm/node_modules/.bin/semver.cmd +17 -0
  875. package/the_app/node_modules/npm/node_modules/.bin/semver.ps1 +28 -0
  876. package/the_app/node_modules/npm/node_modules/@colors/colors/LICENSE +26 -0
  877. package/the_app/node_modules/npm/node_modules/@colors/colors/examples/normal-usage.js +83 -0
  878. package/the_app/node_modules/npm/node_modules/@colors/colors/examples/safe-string.js +80 -0
  879. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/colors.js +211 -0
  880. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/trap.js +46 -0
  881. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/zalgo.js +110 -0
  882. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
  883. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/index.js +13 -0
  884. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/america.js +10 -0
  885. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/rainbow.js +12 -0
  886. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/random.js +11 -0
  887. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
  888. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/styles.js +95 -0
  889. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
  890. package/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
  891. package/the_app/node_modules/npm/node_modules/@colors/colors/package.json +45 -0
  892. package/the_app/node_modules/npm/node_modules/@colors/colors/safe.js +10 -0
  893. package/the_app/node_modules/npm/node_modules/@colors/colors/themes/generic-logging.js +12 -0
  894. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
  895. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.cjs +317 -0
  896. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
  897. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
  898. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/index.mjs +14 -0
  899. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  900. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/RGI_Emoji.js +6 -0
  901. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
  902. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
  903. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
  904. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
  905. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
  906. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
  907. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
  908. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/license +9 -0
  909. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
  910. package/the_app/node_modules/npm/node_modules/@isaacs/cliui/package.json +86 -0
  911. package/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/LICENSE +15 -0
  912. package/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/index.js +42 -0
  913. package/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/package.json +28 -0
  914. package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/agents.js +202 -0
  915. package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/dns.js +53 -0
  916. package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/errors.js +61 -0
  917. package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/index.js +56 -0
  918. package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/options.js +86 -0
  919. package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/proxy.js +88 -0
  920. package/the_app/node_modules/npm/node_modules/@npmcli/agent/package.json +60 -0
  921. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/LICENSE.md +20 -0
  922. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/README.md +349 -0
  923. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/actual.js +19 -0
  924. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/audit.js +51 -0
  925. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/funding.js +38 -0
  926. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/ideal.js +14 -0
  927. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/index.js +111 -0
  928. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/logging.js +77 -0
  929. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/options.js +123 -0
  930. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/print-tree.js +4 -0
  931. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/timers.js +33 -0
  932. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/license.js +48 -0
  933. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/prune.js +48 -0
  934. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/reify.js +48 -0
  935. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/shrinkwrap.js +7 -0
  936. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/virtual.js +14 -0
  937. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js +143 -0
  938. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/audit.js +51 -0
  939. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +1511 -0
  940. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/deduper.js +19 -0
  941. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/index.js +167 -0
  942. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/isolated-reifier.js +453 -0
  943. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js +440 -0
  944. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js +303 -0
  945. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/pruner.js +30 -0
  946. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js +433 -0
  947. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +1593 -0
  948. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/set-workspaces.js +19 -0
  949. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/audit-report.js +414 -0
  950. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/calc-dep-flags.js +119 -0
  951. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/can-place-dep.js +436 -0
  952. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/case-insensitive-map.js +50 -0
  953. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/consistent-resolve.js +45 -0
  954. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/debug.js +31 -0
  955. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/deepest-nesting-target.js +18 -0
  956. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/dep-valid.js +150 -0
  957. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/diff.js +306 -0
  958. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/edge.js +301 -0
  959. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/from-path.js +30 -0
  960. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/gather-dep-set.js +43 -0
  961. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/get-workspace-nodes.js +36 -0
  962. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/index.js +8 -0
  963. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/inventory.js +138 -0
  964. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/link.js +126 -0
  965. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/node.js +1473 -0
  966. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/optional-set.js +38 -0
  967. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-resolves.js +11 -0
  968. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-set.js +147 -0
  969. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/peer-entry-sets.js +77 -0
  970. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/place-dep.js +569 -0
  971. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/printable.js +198 -0
  972. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js +862 -0
  973. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/realpath.js +95 -0
  974. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/relpath.js +3 -0
  975. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js +15 -0
  976. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/retire-path.js +19 -0
  977. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +1176 -0
  978. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signal-handling.js +74 -0
  979. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signals.js +58 -0
  980. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js +34 -0
  981. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js +102 -0
  982. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tree-check.js +155 -0
  983. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/version-from-tgz.js +48 -0
  984. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/vuln.js +217 -0
  985. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/yarn-lock.js +377 -0
  986. package/the_app/node_modules/npm/node_modules/@npmcli/arborist/package.json +96 -0
  987. package/the_app/node_modules/npm/node_modules/@npmcli/config/LICENSE +15 -0
  988. package/the_app/node_modules/npm/node_modules/@npmcli/config/README.md +257 -0
  989. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definition.js +253 -0
  990. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definitions.js +2403 -0
  991. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/index.js +66 -0
  992. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/env-replace.js +14 -0
  993. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/errors.js +23 -0
  994. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/index.js +959 -0
  995. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/nerf-dart.js +18 -0
  996. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/parse-field.js +86 -0
  997. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/set-envs.js +108 -0
  998. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-defs.js +59 -0
  999. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-description.js +21 -0
  1000. package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/umask.js +36 -0
  1001. package/the_app/node_modules/npm/node_modules/@npmcli/config/package.json +56 -0
  1002. package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/LICENSE +15 -0
  1003. package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/lib/index.js +34 -0
  1004. package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/index.js +163 -0
  1005. package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/license +9 -0
  1006. package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/package.json +56 -0
  1007. package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/package.json +70 -0
  1008. package/the_app/node_modules/npm/node_modules/@npmcli/fs/LICENSE.md +20 -0
  1009. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/get-options.js +20 -0
  1010. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/node.js +9 -0
  1011. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/LICENSE +15 -0
  1012. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/errors.js +129 -0
  1013. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/index.js +22 -0
  1014. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/polyfill.js +428 -0
  1015. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/index.js +13 -0
  1016. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/move-file.js +78 -0
  1017. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/readdir-scoped.js +20 -0
  1018. package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js +39 -0
  1019. package/the_app/node_modules/npm/node_modules/@npmcli/fs/package.json +52 -0
  1020. package/the_app/node_modules/npm/node_modules/@npmcli/git/LICENSE +15 -0
  1021. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/clone.js +172 -0
  1022. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/errors.js +36 -0
  1023. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/find.js +15 -0
  1024. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/index.js +9 -0
  1025. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is-clean.js +6 -0
  1026. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is.js +6 -0
  1027. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/lines-to-revs.js +147 -0
  1028. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js +33 -0
  1029. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/opts.js +12 -0
  1030. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/revs.js +28 -0
  1031. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js +44 -0
  1032. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/utils.js +3 -0
  1033. package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/which.js +18 -0
  1034. package/the_app/node_modules/npm/node_modules/@npmcli/git/package.json +63 -0
  1035. package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/LICENSE +15 -0
  1036. package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/README.md +109 -0
  1037. package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/lib/index.js +242 -0
  1038. package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/package.json +51 -0
  1039. package/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/LICENSE.md +20 -0
  1040. package/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/lib/index.js +211 -0
  1041. package/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/package.json +60 -0
  1042. package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/LICENSE +15 -0
  1043. package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js +435 -0
  1044. package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/get-dep-spec.js +15 -0
  1045. package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/hash.js +5 -0
  1046. package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/index.js +128 -0
  1047. package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/package.json +61 -0
  1048. package/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/LICENSE +15 -0
  1049. package/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/lib/index.js +7 -0
  1050. package/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/package.json +43 -0
  1051. package/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/lib/index.js +14 -0
  1052. package/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/package.json +48 -0
  1053. package/the_app/node_modules/npm/node_modules/@npmcli/package-json/LICENSE +18 -0
  1054. package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/index.js +277 -0
  1055. package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/normalize.js +558 -0
  1056. package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-dependencies.js +75 -0
  1057. package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-scripts.js +29 -0
  1058. package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-workspaces.js +26 -0
  1059. package/the_app/node_modules/npm/node_modules/@npmcli/package-json/package.json +66 -0
  1060. package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/LICENSE +15 -0
  1061. package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/escape.js +68 -0
  1062. package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/index.js +195 -0
  1063. package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/package.json +56 -0
  1064. package/the_app/node_modules/npm/node_modules/@npmcli/query/LICENSE +20 -0
  1065. package/the_app/node_modules/npm/node_modules/@npmcli/query/lib/index.js +213 -0
  1066. package/the_app/node_modules/npm/node_modules/@npmcli/query/package.json +63 -0
  1067. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/LICENSE +15 -0
  1068. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-server-package.js +12 -0
  1069. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-windows.js +2 -0
  1070. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +40 -0
  1071. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp +2 -0
  1072. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp.cmd +1 -0
  1073. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/package-envs.js +26 -0
  1074. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +112 -0
  1075. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script.js +14 -0
  1076. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/set-path.js +45 -0
  1077. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/signal-manager.js +49 -0
  1078. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/validate-options.js +39 -0
  1079. package/the_app/node_modules/npm/node_modules/@npmcli/run-script/package.json +53 -0
  1080. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/LICENSE +201 -0
  1081. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
  1082. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
  1083. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
  1084. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
  1085. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
  1086. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
  1087. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/index.js +396 -0
  1088. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
  1089. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
  1090. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
  1091. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
  1092. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/package.json +36 -0
  1093. package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/utils.js +198 -0
  1094. package/the_app/node_modules/npm/node_modules/@sigstore/bundle/LICENSE +202 -0
  1095. package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/build.js +89 -0
  1096. package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/bundle.js +22 -0
  1097. package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/error.js +25 -0
  1098. package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/index.js +40 -0
  1099. package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/serialized.js +38 -0
  1100. package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/utility.js +2 -0
  1101. package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/validate.js +160 -0
  1102. package/the_app/node_modules/npm/node_modules/@sigstore/bundle/package.json +35 -0
  1103. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/LICENSE +202 -0
  1104. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js +89 -0
  1105. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/events.js +185 -0
  1106. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/api/field_behavior.js +119 -0
  1107. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/any.js +65 -0
  1108. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js +1308 -0
  1109. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js +24 -0
  1110. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js +106 -0
  1111. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js +457 -0
  1112. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js +167 -0
  1113. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js +103 -0
  1114. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js +273 -0
  1115. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/index.js +37 -0
  1116. package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/package.json +31 -0
  1117. package/the_app/node_modules/npm/node_modules/@sigstore/sign/LICENSE +202 -0
  1118. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/base.js +50 -0
  1119. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/bundle.js +70 -0
  1120. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/dsse.js +45 -0
  1121. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/index.js +7 -0
  1122. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/message.js +30 -0
  1123. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/error.js +39 -0
  1124. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/error.js +38 -0
  1125. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/fulcio.js +51 -0
  1126. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/rekor.js +115 -0
  1127. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/tsa.js +47 -0
  1128. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/ci.js +73 -0
  1129. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/index.js +20 -0
  1130. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/provider.js +2 -0
  1131. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/index.js +17 -0
  1132. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ca.js +60 -0
  1133. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ephemeral.js +45 -0
  1134. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/index.js +87 -0
  1135. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/index.js +21 -0
  1136. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/signer.js +17 -0
  1137. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/types/fetch.js +2 -0
  1138. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/crypto.js +27 -0
  1139. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/dsse.js +25 -0
  1140. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/encoding.js +28 -0
  1141. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/index.js +48 -0
  1142. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/json.js +61 -0
  1143. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/oidc.js +54 -0
  1144. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/pem.js +27 -0
  1145. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/ua.js +33 -0
  1146. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/index.js +23 -0
  1147. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/client.js +61 -0
  1148. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/entry.js +136 -0
  1149. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/index.js +82 -0
  1150. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/client.js +43 -0
  1151. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/index.js +44 -0
  1152. package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/witness.js +2 -0
  1153. package/the_app/node_modules/npm/node_modules/@sigstore/sign/package.json +42 -0
  1154. package/the_app/node_modules/npm/node_modules/@sigstore/tuf/LICENSE +202 -0
  1155. package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/appdata.js +44 -0
  1156. package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/client.js +94 -0
  1157. package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/error.js +12 -0
  1158. package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/index.js +56 -0
  1159. package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/target.js +80 -0
  1160. package/the_app/node_modules/npm/node_modules/@sigstore/tuf/package.json +41 -0
  1161. package/the_app/node_modules/npm/node_modules/@sigstore/tuf/store/public-good-instance-root.json +1 -0
  1162. package/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/LICENSE +21 -0
  1163. package/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/lib/index.js +64 -0
  1164. package/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/package.json +35 -0
  1165. package/the_app/node_modules/npm/node_modules/@tufjs/models/LICENSE +21 -0
  1166. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/base.js +83 -0
  1167. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/delegations.js +115 -0
  1168. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/error.js +27 -0
  1169. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/file.js +183 -0
  1170. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/index.js +24 -0
  1171. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/key.js +85 -0
  1172. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/metadata.js +158 -0
  1173. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/role.js +299 -0
  1174. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/root.js +116 -0
  1175. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/signature.js +38 -0
  1176. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/snapshot.js +71 -0
  1177. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/targets.js +92 -0
  1178. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/timestamp.js +58 -0
  1179. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/guard.js +33 -0
  1180. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/index.js +28 -0
  1181. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/key.js +143 -0
  1182. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/oid.js +27 -0
  1183. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/types.js +2 -0
  1184. package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/verify.js +13 -0
  1185. package/the_app/node_modules/npm/node_modules/@tufjs/models/package.json +37 -0
  1186. package/the_app/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
  1187. package/the_app/node_modules/npm/node_modules/abbrev/lib/index.js +50 -0
  1188. package/the_app/node_modules/npm/node_modules/abbrev/package.json +43 -0
  1189. package/the_app/node_modules/npm/node_modules/abort-controller/LICENSE +21 -0
  1190. package/the_app/node_modules/npm/node_modules/abort-controller/browser.js +13 -0
  1191. package/the_app/node_modules/npm/node_modules/abort-controller/browser.mjs +11 -0
  1192. package/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.js +127 -0
  1193. package/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.mjs +118 -0
  1194. package/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.umd.js +5 -0
  1195. package/the_app/node_modules/npm/node_modules/abort-controller/package.json +97 -0
  1196. package/the_app/node_modules/npm/node_modules/abort-controller/polyfill.js +21 -0
  1197. package/the_app/node_modules/npm/node_modules/abort-controller/polyfill.mjs +19 -0
  1198. package/the_app/node_modules/npm/node_modules/agent-base/dist/helpers.js +66 -0
  1199. package/the_app/node_modules/npm/node_modules/agent-base/dist/index.js +112 -0
  1200. package/the_app/node_modules/npm/node_modules/agent-base/package.json +49 -0
  1201. package/the_app/node_modules/npm/node_modules/aggregate-error/index.js +47 -0
  1202. package/the_app/node_modules/npm/node_modules/aggregate-error/license +9 -0
  1203. package/the_app/node_modules/npm/node_modules/aggregate-error/package.json +41 -0
  1204. package/the_app/node_modules/npm/node_modules/ansi-regex/index.js +8 -0
  1205. package/the_app/node_modules/npm/node_modules/ansi-regex/license +9 -0
  1206. package/the_app/node_modules/npm/node_modules/ansi-regex/package.json +58 -0
  1207. package/the_app/node_modules/npm/node_modules/ansi-styles/index.js +223 -0
  1208. package/the_app/node_modules/npm/node_modules/ansi-styles/license +9 -0
  1209. package/the_app/node_modules/npm/node_modules/ansi-styles/package.json +54 -0
  1210. package/the_app/node_modules/npm/node_modules/aproba/LICENSE +14 -0
  1211. package/the_app/node_modules/npm/node_modules/aproba/index.js +105 -0
  1212. package/the_app/node_modules/npm/node_modules/aproba/package.json +35 -0
  1213. package/the_app/node_modules/npm/node_modules/archy/LICENSE +18 -0
  1214. package/the_app/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
  1215. package/the_app/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
  1216. package/the_app/node_modules/npm/node_modules/archy/index.js +35 -0
  1217. package/the_app/node_modules/npm/node_modules/archy/package.json +40 -0
  1218. package/the_app/node_modules/npm/node_modules/archy/test/beep.js +40 -0
  1219. package/the_app/node_modules/npm/node_modules/archy/test/multi_line.js +45 -0
  1220. package/the_app/node_modules/npm/node_modules/archy/test/non_unicode.js +40 -0
  1221. package/the_app/node_modules/npm/node_modules/are-we-there-yet/LICENSE.md +18 -0
  1222. package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/index.js +4 -0
  1223. package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-base.js +13 -0
  1224. package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-group.js +112 -0
  1225. package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-stream.js +38 -0
  1226. package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker.js +34 -0
  1227. package/the_app/node_modules/npm/node_modules/are-we-there-yet/package.json +57 -0
  1228. package/the_app/node_modules/npm/node_modules/balanced-match/LICENSE.md +21 -0
  1229. package/the_app/node_modules/npm/node_modules/balanced-match/index.js +62 -0
  1230. package/the_app/node_modules/npm/node_modules/balanced-match/package.json +48 -0
  1231. package/the_app/node_modules/npm/node_modules/base64-js/LICENSE +21 -0
  1232. package/the_app/node_modules/npm/node_modules/base64-js/base64js.min.js +1 -0
  1233. package/the_app/node_modules/npm/node_modules/base64-js/index.js +150 -0
  1234. package/the_app/node_modules/npm/node_modules/base64-js/package.json +47 -0
  1235. package/the_app/node_modules/npm/node_modules/bin-links/LICENSE +15 -0
  1236. package/the_app/node_modules/npm/node_modules/bin-links/lib/bin-target.js +9 -0
  1237. package/the_app/node_modules/npm/node_modules/bin-links/lib/check-bin.js +74 -0
  1238. package/the_app/node_modules/npm/node_modules/bin-links/lib/check-bins.js +18 -0
  1239. package/the_app/node_modules/npm/node_modules/bin-links/lib/fix-bin.js +42 -0
  1240. package/the_app/node_modules/npm/node_modules/bin-links/lib/get-node-modules.js +19 -0
  1241. package/the_app/node_modules/npm/node_modules/bin-links/lib/get-paths.js +42 -0
  1242. package/the_app/node_modules/npm/node_modules/bin-links/lib/get-prefix.js +3 -0
  1243. package/the_app/node_modules/npm/node_modules/bin-links/lib/index.js +44 -0
  1244. package/the_app/node_modules/npm/node_modules/bin-links/lib/is-windows.js +2 -0
  1245. package/the_app/node_modules/npm/node_modules/bin-links/lib/link-bin.js +9 -0
  1246. package/the_app/node_modules/npm/node_modules/bin-links/lib/link-bins.js +23 -0
  1247. package/the_app/node_modules/npm/node_modules/bin-links/lib/link-gently.js +90 -0
  1248. package/the_app/node_modules/npm/node_modules/bin-links/lib/link-mans.js +53 -0
  1249. package/the_app/node_modules/npm/node_modules/bin-links/lib/man-target.js +6 -0
  1250. package/the_app/node_modules/npm/node_modules/bin-links/lib/shim-bin.js +86 -0
  1251. package/the_app/node_modules/npm/node_modules/bin-links/package.json +59 -0
  1252. package/the_app/node_modules/npm/node_modules/binary-extensions/binary-extensions.json +260 -0
  1253. package/the_app/node_modules/npm/node_modules/binary-extensions/index.js +1 -0
  1254. package/the_app/node_modules/npm/node_modules/binary-extensions/license +9 -0
  1255. package/the_app/node_modules/npm/node_modules/binary-extensions/package.json +38 -0
  1256. package/the_app/node_modules/npm/node_modules/brace-expansion/LICENSE +21 -0
  1257. package/the_app/node_modules/npm/node_modules/brace-expansion/index.js +203 -0
  1258. package/the_app/node_modules/npm/node_modules/brace-expansion/package.json +46 -0
  1259. package/the_app/node_modules/npm/node_modules/buffer/AUTHORS.md +73 -0
  1260. package/the_app/node_modules/npm/node_modules/buffer/LICENSE +21 -0
  1261. package/the_app/node_modules/npm/node_modules/buffer/index.js +2106 -0
  1262. package/the_app/node_modules/npm/node_modules/buffer/package.json +93 -0
  1263. package/the_app/node_modules/npm/node_modules/builtins/License +20 -0
  1264. package/the_app/node_modules/npm/node_modules/builtins/index.js +80 -0
  1265. package/the_app/node_modules/npm/node_modules/builtins/package.json +20 -0
  1266. package/the_app/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
  1267. package/the_app/node_modules/npm/node_modules/cacache/lib/content/path.js +29 -0
  1268. package/the_app/node_modules/npm/node_modules/cacache/lib/content/read.js +166 -0
  1269. package/the_app/node_modules/npm/node_modules/cacache/lib/content/rm.js +18 -0
  1270. package/the_app/node_modules/npm/node_modules/cacache/lib/content/write.js +206 -0
  1271. package/the_app/node_modules/npm/node_modules/cacache/lib/entry-index.js +330 -0
  1272. package/the_app/node_modules/npm/node_modules/cacache/lib/get.js +170 -0
  1273. package/the_app/node_modules/npm/node_modules/cacache/lib/index.js +42 -0
  1274. package/the_app/node_modules/npm/node_modules/cacache/lib/memoization.js +72 -0
  1275. package/the_app/node_modules/npm/node_modules/cacache/lib/put.js +80 -0
  1276. package/the_app/node_modules/npm/node_modules/cacache/lib/rm.js +31 -0
  1277. package/the_app/node_modules/npm/node_modules/cacache/lib/util/glob.js +7 -0
  1278. package/the_app/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +7 -0
  1279. package/the_app/node_modules/npm/node_modules/cacache/lib/util/tmp.js +26 -0
  1280. package/the_app/node_modules/npm/node_modules/cacache/lib/verify.js +257 -0
  1281. package/the_app/node_modules/npm/node_modules/cacache/package.json +82 -0
  1282. package/the_app/node_modules/npm/node_modules/chalk/license +9 -0
  1283. package/the_app/node_modules/npm/node_modules/chalk/package.json +83 -0
  1284. package/the_app/node_modules/npm/node_modules/chalk/source/index.js +225 -0
  1285. package/the_app/node_modules/npm/node_modules/chalk/source/utilities.js +33 -0
  1286. package/the_app/node_modules/npm/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  1287. package/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
  1288. package/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
  1289. package/the_app/node_modules/npm/node_modules/chownr/LICENSE +15 -0
  1290. package/the_app/node_modules/npm/node_modules/chownr/chownr.js +167 -0
  1291. package/the_app/node_modules/npm/node_modules/chownr/package.json +32 -0
  1292. package/the_app/node_modules/npm/node_modules/ci-info/LICENSE +21 -0
  1293. package/the_app/node_modules/npm/node_modules/ci-info/index.js +90 -0
  1294. package/the_app/node_modules/npm/node_modules/ci-info/package.json +45 -0
  1295. package/the_app/node_modules/npm/node_modules/ci-info/vendors.json +336 -0
  1296. package/the_app/node_modules/npm/node_modules/cidr-regex/LICENSE +22 -0
  1297. package/the_app/node_modules/npm/node_modules/cidr-regex/index.js +15 -0
  1298. package/the_app/node_modules/npm/node_modules/cidr-regex/package.json +32 -0
  1299. package/the_app/node_modules/npm/node_modules/clean-stack/index.js +40 -0
  1300. package/the_app/node_modules/npm/node_modules/clean-stack/license +9 -0
  1301. package/the_app/node_modules/npm/node_modules/clean-stack/package.json +39 -0
  1302. package/the_app/node_modules/npm/node_modules/cli-columns/color.js +16 -0
  1303. package/the_app/node_modules/npm/node_modules/cli-columns/index.js +82 -0
  1304. package/the_app/node_modules/npm/node_modules/cli-columns/license +20 -0
  1305. package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/index.js +10 -0
  1306. package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/license +9 -0
  1307. package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/package.json +55 -0
  1308. package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/index.js +4 -0
  1309. package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/license +9 -0
  1310. package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/package.json +54 -0
  1311. package/the_app/node_modules/npm/node_modules/cli-columns/package.json +54 -0
  1312. package/the_app/node_modules/npm/node_modules/cli-columns/test.js +101 -0
  1313. package/the_app/node_modules/npm/node_modules/cli-table3/LICENSE +21 -0
  1314. package/the_app/node_modules/npm/node_modules/cli-table3/index.js +1 -0
  1315. package/the_app/node_modules/npm/node_modules/cli-table3/package.json +100 -0
  1316. package/the_app/node_modules/npm/node_modules/cli-table3/src/cell.js +409 -0
  1317. package/the_app/node_modules/npm/node_modules/cli-table3/src/debug.js +28 -0
  1318. package/the_app/node_modules/npm/node_modules/cli-table3/src/layout-manager.js +254 -0
  1319. package/the_app/node_modules/npm/node_modules/cli-table3/src/table.js +106 -0
  1320. package/the_app/node_modules/npm/node_modules/cli-table3/src/utils.js +336 -0
  1321. package/the_app/node_modules/npm/node_modules/clone/LICENSE +18 -0
  1322. package/the_app/node_modules/npm/node_modules/clone/clone.iml +10 -0
  1323. package/the_app/node_modules/npm/node_modules/clone/clone.js +166 -0
  1324. package/the_app/node_modules/npm/node_modules/clone/package.json +51 -0
  1325. package/the_app/node_modules/npm/node_modules/cmd-shim/LICENSE +15 -0
  1326. package/the_app/node_modules/npm/node_modules/cmd-shim/lib/index.js +247 -0
  1327. package/the_app/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +49 -0
  1328. package/the_app/node_modules/npm/node_modules/cmd-shim/package.json +47 -0
  1329. package/the_app/node_modules/npm/node_modules/color-convert/LICENSE +21 -0
  1330. package/the_app/node_modules/npm/node_modules/color-convert/conversions.js +839 -0
  1331. package/the_app/node_modules/npm/node_modules/color-convert/index.js +81 -0
  1332. package/the_app/node_modules/npm/node_modules/color-convert/package.json +48 -0
  1333. package/the_app/node_modules/npm/node_modules/color-convert/route.js +97 -0
  1334. package/the_app/node_modules/npm/node_modules/color-name/LICENSE +8 -0
  1335. package/the_app/node_modules/npm/node_modules/color-name/index.js +152 -0
  1336. package/the_app/node_modules/npm/node_modules/color-name/package.json +28 -0
  1337. package/the_app/node_modules/npm/node_modules/color-support/LICENSE +15 -0
  1338. package/the_app/node_modules/npm/node_modules/color-support/README.md +129 -0
  1339. package/the_app/node_modules/npm/node_modules/color-support/bin.js +3 -0
  1340. package/the_app/node_modules/npm/node_modules/color-support/browser.js +14 -0
  1341. package/the_app/node_modules/npm/node_modules/color-support/index.js +134 -0
  1342. package/the_app/node_modules/npm/node_modules/color-support/package.json +36 -0
  1343. package/the_app/node_modules/npm/node_modules/columnify/LICENSE +21 -0
  1344. package/the_app/node_modules/npm/node_modules/columnify/Makefile +9 -0
  1345. package/the_app/node_modules/npm/node_modules/columnify/columnify.js +306 -0
  1346. package/the_app/node_modules/npm/node_modules/columnify/index.js +297 -0
  1347. package/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/index.js +10 -0
  1348. package/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/license +9 -0
  1349. package/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/package.json +55 -0
  1350. package/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/index.js +4 -0
  1351. package/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/license +9 -0
  1352. package/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/package.json +54 -0
  1353. package/the_app/node_modules/npm/node_modules/columnify/package.json +53 -0
  1354. package/the_app/node_modules/npm/node_modules/columnify/utils.js +193 -0
  1355. package/the_app/node_modules/npm/node_modules/columnify/width.js +6 -0
  1356. package/the_app/node_modules/npm/node_modules/common-ancestor-path/LICENSE +15 -0
  1357. package/the_app/node_modules/npm/node_modules/common-ancestor-path/index.js +17 -0
  1358. package/the_app/node_modules/npm/node_modules/common-ancestor-path/package.json +28 -0
  1359. package/the_app/node_modules/npm/node_modules/console-control-strings/LICENSE +13 -0
  1360. package/the_app/node_modules/npm/node_modules/console-control-strings/index.js +125 -0
  1361. package/the_app/node_modules/npm/node_modules/console-control-strings/package.json +27 -0
  1362. package/the_app/node_modules/npm/node_modules/cross-spawn/LICENSE +21 -0
  1363. package/the_app/node_modules/npm/node_modules/cross-spawn/index.js +39 -0
  1364. package/the_app/node_modules/npm/node_modules/cross-spawn/lib/enoent.js +59 -0
  1365. package/the_app/node_modules/npm/node_modules/cross-spawn/lib/parse.js +91 -0
  1366. package/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/escape.js +45 -0
  1367. package/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  1368. package/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  1369. package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which +16 -0
  1370. package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.cmd +17 -0
  1371. package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.ps1 +28 -0
  1372. package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
  1373. package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/README.md +54 -0
  1374. package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
  1375. package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/package.json +43 -0
  1376. package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/which.js +125 -0
  1377. package/the_app/node_modules/npm/node_modules/cross-spawn/package.json +73 -0
  1378. package/the_app/node_modules/npm/node_modules/cssesc/LICENSE-MIT.txt +20 -0
  1379. package/the_app/node_modules/npm/node_modules/cssesc/README.md +201 -0
  1380. package/the_app/node_modules/npm/node_modules/cssesc/bin/cssesc +116 -0
  1381. package/the_app/node_modules/npm/node_modules/cssesc/cssesc.js +110 -0
  1382. package/the_app/node_modules/npm/node_modules/cssesc/man/cssesc.1 +70 -0
  1383. package/the_app/node_modules/npm/node_modules/cssesc/package.json +51 -0
  1384. package/the_app/node_modules/npm/node_modules/debug/LICENSE +20 -0
  1385. package/the_app/node_modules/npm/node_modules/debug/node_modules/ms/index.js +162 -0
  1386. package/the_app/node_modules/npm/node_modules/debug/node_modules/ms/license.md +21 -0
  1387. package/the_app/node_modules/npm/node_modules/debug/node_modules/ms/package.json +37 -0
  1388. package/the_app/node_modules/npm/node_modules/debug/package.json +59 -0
  1389. package/the_app/node_modules/npm/node_modules/debug/src/browser.js +269 -0
  1390. package/the_app/node_modules/npm/node_modules/debug/src/common.js +274 -0
  1391. package/the_app/node_modules/npm/node_modules/debug/src/index.js +10 -0
  1392. package/the_app/node_modules/npm/node_modules/debug/src/node.js +263 -0
  1393. package/the_app/node_modules/npm/node_modules/defaults/LICENSE +22 -0
  1394. package/the_app/node_modules/npm/node_modules/defaults/index.js +13 -0
  1395. package/the_app/node_modules/npm/node_modules/defaults/package.json +33 -0
  1396. package/the_app/node_modules/npm/node_modules/defaults/test.js +34 -0
  1397. package/the_app/node_modules/npm/node_modules/delegates/History.md +22 -0
  1398. package/the_app/node_modules/npm/node_modules/delegates/License +20 -0
  1399. package/the_app/node_modules/npm/node_modules/delegates/Makefile +8 -0
  1400. package/the_app/node_modules/npm/node_modules/delegates/index.js +121 -0
  1401. package/the_app/node_modules/npm/node_modules/delegates/package.json +13 -0
  1402. package/the_app/node_modules/npm/node_modules/delegates/test/index.js +94 -0
  1403. package/the_app/node_modules/npm/node_modules/diff/CONTRIBUTING.md +39 -0
  1404. package/the_app/node_modules/npm/node_modules/diff/LICENSE +31 -0
  1405. package/the_app/node_modules/npm/node_modules/diff/dist/diff.js +1627 -0
  1406. package/the_app/node_modules/npm/node_modules/diff/dist/diff.min.js +38 -0
  1407. package/the_app/node_modules/npm/node_modules/diff/lib/convert/dmp.js +32 -0
  1408. package/the_app/node_modules/npm/node_modules/diff/lib/convert/xml.js +42 -0
  1409. package/the_app/node_modules/npm/node_modules/diff/lib/diff/array.js +45 -0
  1410. package/the_app/node_modules/npm/node_modules/diff/lib/diff/base.js +307 -0
  1411. package/the_app/node_modules/npm/node_modules/diff/lib/diff/character.js +37 -0
  1412. package/the_app/node_modules/npm/node_modules/diff/lib/diff/css.js +41 -0
  1413. package/the_app/node_modules/npm/node_modules/diff/lib/diff/json.js +163 -0
  1414. package/the_app/node_modules/npm/node_modules/diff/lib/diff/line.js +89 -0
  1415. package/the_app/node_modules/npm/node_modules/diff/lib/diff/sentence.js +41 -0
  1416. package/the_app/node_modules/npm/node_modules/diff/lib/diff/word.js +108 -0
  1417. package/the_app/node_modules/npm/node_modules/diff/lib/index.es6.js +1561 -0
  1418. package/the_app/node_modules/npm/node_modules/diff/lib/index.js +216 -0
  1419. package/the_app/node_modules/npm/node_modules/diff/lib/index.mjs +1561 -0
  1420. package/the_app/node_modules/npm/node_modules/diff/lib/patch/apply.js +238 -0
  1421. package/the_app/node_modules/npm/node_modules/diff/lib/patch/create.js +272 -0
  1422. package/the_app/node_modules/npm/node_modules/diff/lib/patch/merge.js +613 -0
  1423. package/the_app/node_modules/npm/node_modules/diff/lib/patch/parse.js +167 -0
  1424. package/the_app/node_modules/npm/node_modules/diff/lib/util/array.js +32 -0
  1425. package/the_app/node_modules/npm/node_modules/diff/lib/util/distance-iterator.js +57 -0
  1426. package/the_app/node_modules/npm/node_modules/diff/lib/util/params.js +24 -0
  1427. package/the_app/node_modules/npm/node_modules/diff/package.json +87 -0
  1428. package/the_app/node_modules/npm/node_modules/diff/release-notes.md +309 -0
  1429. package/the_app/node_modules/npm/node_modules/diff/runtime.js +3 -0
  1430. package/the_app/node_modules/npm/node_modules/eastasianwidth/eastasianwidth.js +311 -0
  1431. package/the_app/node_modules/npm/node_modules/eastasianwidth/package.json +18 -0
  1432. package/the_app/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  1433. package/the_app/node_modules/npm/node_modules/emoji-regex/es2015/index.js +6 -0
  1434. package/the_app/node_modules/npm/node_modules/emoji-regex/es2015/text.js +6 -0
  1435. package/the_app/node_modules/npm/node_modules/emoji-regex/index.js +6 -0
  1436. package/the_app/node_modules/npm/node_modules/emoji-regex/package.json +50 -0
  1437. package/the_app/node_modules/npm/node_modules/emoji-regex/text.js +6 -0
  1438. package/the_app/node_modules/npm/node_modules/encoding/LICENSE +16 -0
  1439. package/the_app/node_modules/npm/node_modules/encoding/lib/encoding.js +83 -0
  1440. package/the_app/node_modules/npm/node_modules/encoding/package.json +18 -0
  1441. package/the_app/node_modules/npm/node_modules/encoding/test/test.js +49 -0
  1442. package/the_app/node_modules/npm/node_modules/env-paths/index.js +74 -0
  1443. package/the_app/node_modules/npm/node_modules/env-paths/license +9 -0
  1444. package/the_app/node_modules/npm/node_modules/env-paths/package.json +45 -0
  1445. package/the_app/node_modules/npm/node_modules/err-code/bower.json +30 -0
  1446. package/the_app/node_modules/npm/node_modules/err-code/index.js +47 -0
  1447. package/the_app/node_modules/npm/node_modules/err-code/index.umd.js +51 -0
  1448. package/the_app/node_modules/npm/node_modules/err-code/package.json +34 -0
  1449. package/the_app/node_modules/npm/node_modules/err-code/test/test.js +159 -0
  1450. package/the_app/node_modules/npm/node_modules/event-target-shim/LICENSE +22 -0
  1451. package/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.js +871 -0
  1452. package/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.mjs +862 -0
  1453. package/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.umd.js +6 -0
  1454. package/the_app/node_modules/npm/node_modules/event-target-shim/package.json +82 -0
  1455. package/the_app/node_modules/npm/node_modules/events/.airtap.yml +15 -0
  1456. package/the_app/node_modules/npm/node_modules/events/History.md +118 -0
  1457. package/the_app/node_modules/npm/node_modules/events/LICENSE +22 -0
  1458. package/the_app/node_modules/npm/node_modules/events/events.js +497 -0
  1459. package/the_app/node_modules/npm/node_modules/events/package.json +37 -0
  1460. package/the_app/node_modules/npm/node_modules/events/security.md +10 -0
  1461. package/the_app/node_modules/npm/node_modules/events/tests/add-listeners.js +111 -0
  1462. package/the_app/node_modules/npm/node_modules/events/tests/check-listener-leaks.js +101 -0
  1463. package/the_app/node_modules/npm/node_modules/events/tests/common.js +104 -0
  1464. package/the_app/node_modules/npm/node_modules/events/tests/errors.js +13 -0
  1465. package/the_app/node_modules/npm/node_modules/events/tests/events-list.js +28 -0
  1466. package/the_app/node_modules/npm/node_modules/events/tests/events-once.js +234 -0
  1467. package/the_app/node_modules/npm/node_modules/events/tests/index.js +64 -0
  1468. package/the_app/node_modules/npm/node_modules/events/tests/legacy-compat.js +16 -0
  1469. package/the_app/node_modules/npm/node_modules/events/tests/listener-count.js +37 -0
  1470. package/the_app/node_modules/npm/node_modules/events/tests/listeners-side-effects.js +56 -0
  1471. package/the_app/node_modules/npm/node_modules/events/tests/listeners.js +168 -0
  1472. package/the_app/node_modules/npm/node_modules/events/tests/max-listeners.js +47 -0
  1473. package/the_app/node_modules/npm/node_modules/events/tests/method-names.js +35 -0
  1474. package/the_app/node_modules/npm/node_modules/events/tests/modify-in-emit.js +90 -0
  1475. package/the_app/node_modules/npm/node_modules/events/tests/num-args.js +60 -0
  1476. package/the_app/node_modules/npm/node_modules/events/tests/once.js +83 -0
  1477. package/the_app/node_modules/npm/node_modules/events/tests/prepend.js +31 -0
  1478. package/the_app/node_modules/npm/node_modules/events/tests/remove-all-listeners.js +133 -0
  1479. package/the_app/node_modules/npm/node_modules/events/tests/remove-listeners.js +212 -0
  1480. package/the_app/node_modules/npm/node_modules/events/tests/set-max-listeners-side-effects.js +31 -0
  1481. package/the_app/node_modules/npm/node_modules/events/tests/special-event-names.js +45 -0
  1482. package/the_app/node_modules/npm/node_modules/events/tests/subclass.js +66 -0
  1483. package/the_app/node_modules/npm/node_modules/events/tests/symbols.js +25 -0
  1484. package/the_app/node_modules/npm/node_modules/exponential-backoff/LICENSE +202 -0
  1485. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/backoff.js +118 -0
  1486. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
  1487. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
  1488. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
  1489. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
  1490. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js +82 -0
  1491. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
  1492. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
  1493. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
  1494. package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/options.js +31 -0
  1495. package/the_app/node_modules/npm/node_modules/exponential-backoff/package.json +61 -0
  1496. package/the_app/node_modules/npm/node_modules/fastest-levenshtein/LICENSE.md +21 -0
  1497. package/the_app/node_modules/npm/node_modules/fastest-levenshtein/bench.js +96 -0
  1498. package/the_app/node_modules/npm/node_modules/fastest-levenshtein/esm/mod.js +138 -0
  1499. package/the_app/node_modules/npm/node_modules/fastest-levenshtein/mod.js +142 -0
  1500. package/the_app/node_modules/npm/node_modules/fastest-levenshtein/package.json +72 -0
  1501. package/the_app/node_modules/npm/node_modules/fastest-levenshtein/test.js +55 -0
  1502. package/the_app/node_modules/npm/node_modules/foreground-child/LICENSE +15 -0
  1503. package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
  1504. package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/index.js +154 -0
  1505. package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/package.json +3 -0
  1506. package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
  1507. package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
  1508. package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/index.js +146 -0
  1509. package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/package.json +3 -0
  1510. package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
  1511. package/the_app/node_modules/npm/node_modules/foreground-child/package.json +83 -0
  1512. package/the_app/node_modules/npm/node_modules/fs-minipass/LICENSE +15 -0
  1513. package/the_app/node_modules/npm/node_modules/fs-minipass/lib/index.js +443 -0
  1514. package/the_app/node_modules/npm/node_modules/fs-minipass/package.json +54 -0
  1515. package/the_app/node_modules/npm/node_modules/function-bind/LICENSE +20 -0
  1516. package/the_app/node_modules/npm/node_modules/function-bind/implementation.js +84 -0
  1517. package/the_app/node_modules/npm/node_modules/function-bind/index.js +5 -0
  1518. package/the_app/node_modules/npm/node_modules/function-bind/package.json +87 -0
  1519. package/the_app/node_modules/npm/node_modules/function-bind/test/index.js +252 -0
  1520. package/the_app/node_modules/npm/node_modules/gauge/LICENSE.md +20 -0
  1521. package/the_app/node_modules/npm/node_modules/gauge/lib/base-theme.js +18 -0
  1522. package/the_app/node_modules/npm/node_modules/gauge/lib/error.js +24 -0
  1523. package/the_app/node_modules/npm/node_modules/gauge/lib/has-color.js +4 -0
  1524. package/the_app/node_modules/npm/node_modules/gauge/lib/index.js +289 -0
  1525. package/the_app/node_modules/npm/node_modules/gauge/lib/plumbing.js +50 -0
  1526. package/the_app/node_modules/npm/node_modules/gauge/lib/process.js +3 -0
  1527. package/the_app/node_modules/npm/node_modules/gauge/lib/progress-bar.js +41 -0
  1528. package/the_app/node_modules/npm/node_modules/gauge/lib/render-template.js +222 -0
  1529. package/the_app/node_modules/npm/node_modules/gauge/lib/set-immediate.js +7 -0
  1530. package/the_app/node_modules/npm/node_modules/gauge/lib/set-interval.js +3 -0
  1531. package/the_app/node_modules/npm/node_modules/gauge/lib/spin.js +5 -0
  1532. package/the_app/node_modules/npm/node_modules/gauge/lib/template-item.js +87 -0
  1533. package/the_app/node_modules/npm/node_modules/gauge/lib/theme-set.js +122 -0
  1534. package/the_app/node_modules/npm/node_modules/gauge/lib/themes.js +56 -0
  1535. package/the_app/node_modules/npm/node_modules/gauge/lib/wide-truncate.js +31 -0
  1536. package/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/index.js +10 -0
  1537. package/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/license +9 -0
  1538. package/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/package.json +55 -0
  1539. package/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/index.js +4 -0
  1540. package/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/license +9 -0
  1541. package/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/package.json +54 -0
  1542. package/the_app/node_modules/npm/node_modules/gauge/package.json +68 -0
  1543. package/the_app/node_modules/npm/node_modules/glob/LICENSE +15 -0
  1544. package/the_app/node_modules/npm/node_modules/glob/README.md +1214 -0
  1545. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
  1546. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
  1547. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js +243 -0
  1548. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js.map +1 -0
  1549. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
  1550. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
  1551. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js +27 -0
  1552. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
  1553. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
  1554. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
  1555. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js +108 -0
  1556. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
  1557. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts +96 -0
  1558. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
  1559. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js +68 -0
  1560. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js.map +1 -0
  1561. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/package.json +1 -0
  1562. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
  1563. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
  1564. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js +219 -0
  1565. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
  1566. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
  1567. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
  1568. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js +302 -0
  1569. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js.map +1 -0
  1570. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
  1571. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
  1572. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js +358 -0
  1573. package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js.map +1 -0
  1574. package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts +3 -0
  1575. package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
  1576. package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs +275 -0
  1577. package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs.map +1 -0
  1578. package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts +344 -0
  1579. package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
  1580. package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js +239 -0
  1581. package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js.map +1 -0
  1582. package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
  1583. package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
  1584. package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js +23 -0
  1585. package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js.map +1 -0
  1586. package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts +20 -0
  1587. package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
  1588. package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js +104 -0
  1589. package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js.map +1 -0
  1590. package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts +96 -0
  1591. package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts.map +1 -0
  1592. package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js +56 -0
  1593. package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js.map +1 -0
  1594. package/the_app/node_modules/npm/node_modules/glob/dist/esm/package.json +1 -0
  1595. package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts +77 -0
  1596. package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
  1597. package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js +215 -0
  1598. package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js.map +1 -0
  1599. package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts +59 -0
  1600. package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
  1601. package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js +295 -0
  1602. package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js.map +1 -0
  1603. package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts +96 -0
  1604. package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
  1605. package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js +352 -0
  1606. package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js.map +1 -0
  1607. package/the_app/node_modules/npm/node_modules/glob/package.json +97 -0
  1608. package/the_app/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
  1609. package/the_app/node_modules/npm/node_modules/graceful-fs/clone.js +23 -0
  1610. package/the_app/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +448 -0
  1611. package/the_app/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
  1612. package/the_app/node_modules/npm/node_modules/graceful-fs/package.json +53 -0
  1613. package/the_app/node_modules/npm/node_modules/graceful-fs/polyfills.js +355 -0
  1614. package/the_app/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
  1615. package/the_app/node_modules/npm/node_modules/has-unicode/index.js +16 -0
  1616. package/the_app/node_modules/npm/node_modules/has-unicode/package.json +30 -0
  1617. package/the_app/node_modules/npm/node_modules/hasown/LICENSE +21 -0
  1618. package/the_app/node_modules/npm/node_modules/hasown/index.js +8 -0
  1619. package/the_app/node_modules/npm/node_modules/hasown/package.json +91 -0
  1620. package/the_app/node_modules/npm/node_modules/hasown/tsconfig.json +49 -0
  1621. package/the_app/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
  1622. package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/from-url.js +122 -0
  1623. package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/hosts.js +227 -0
  1624. package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/index.js +179 -0
  1625. package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/parse-url.js +78 -0
  1626. package/the_app/node_modules/npm/node_modules/hosted-git-info/package.json +66 -0
  1627. package/the_app/node_modules/npm/node_modules/http-cache-semantics/LICENSE +9 -0
  1628. package/the_app/node_modules/npm/node_modules/http-cache-semantics/index.js +674 -0
  1629. package/the_app/node_modules/npm/node_modules/http-cache-semantics/package.json +18 -0
  1630. package/the_app/node_modules/npm/node_modules/http-proxy-agent/LICENSE +25 -0
  1631. package/the_app/node_modules/npm/node_modules/http-proxy-agent/dist/index.js +147 -0
  1632. package/the_app/node_modules/npm/node_modules/http-proxy-agent/package.json +47 -0
  1633. package/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/index.js +174 -0
  1634. package/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
  1635. package/the_app/node_modules/npm/node_modules/https-proxy-agent/package.json +50 -0
  1636. package/the_app/node_modules/npm/node_modules/iconv-lite/LICENSE +21 -0
  1637. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
  1638. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
  1639. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/index.js +23 -0
  1640. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/internal.js +198 -0
  1641. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  1642. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1643. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
  1644. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1645. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1646. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1647. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1648. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1649. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1650. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  1651. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1652. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf16.js +197 -0
  1653. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf32.js +319 -0
  1654. package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf7.js +290 -0
  1655. package/the_app/node_modules/npm/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  1656. package/the_app/node_modules/npm/node_modules/iconv-lite/lib/index.js +180 -0
  1657. package/the_app/node_modules/npm/node_modules/iconv-lite/lib/streams.js +109 -0
  1658. package/the_app/node_modules/npm/node_modules/iconv-lite/package.json +44 -0
  1659. package/the_app/node_modules/npm/node_modules/ieee754/LICENSE +11 -0
  1660. package/the_app/node_modules/npm/node_modules/ieee754/index.js +85 -0
  1661. package/the_app/node_modules/npm/node_modules/ieee754/package.json +52 -0
  1662. package/the_app/node_modules/npm/node_modules/ignore-walk/LICENSE +15 -0
  1663. package/the_app/node_modules/npm/node_modules/ignore-walk/lib/index.js +310 -0
  1664. package/the_app/node_modules/npm/node_modules/ignore-walk/package.json +63 -0
  1665. package/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
  1666. package/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
  1667. package/the_app/node_modules/npm/node_modules/imurmurhash/package.json +40 -0
  1668. package/the_app/node_modules/npm/node_modules/indent-string/index.js +35 -0
  1669. package/the_app/node_modules/npm/node_modules/indent-string/license +9 -0
  1670. package/the_app/node_modules/npm/node_modules/indent-string/package.json +37 -0
  1671. package/the_app/node_modules/npm/node_modules/ini/LICENSE +15 -0
  1672. package/the_app/node_modules/npm/node_modules/ini/lib/ini.js +278 -0
  1673. package/the_app/node_modules/npm/node_modules/ini/package.json +45 -0
  1674. package/the_app/node_modules/npm/node_modules/init-package-json/LICENSE.md +18 -0
  1675. package/the_app/node_modules/npm/node_modules/init-package-json/lib/default-input.js +262 -0
  1676. package/the_app/node_modules/npm/node_modules/init-package-json/lib/init-package-json.js +145 -0
  1677. package/the_app/node_modules/npm/node_modules/init-package-json/package.json +75 -0
  1678. package/the_app/node_modules/npm/node_modules/ip/lib/ip.js +422 -0
  1679. package/the_app/node_modules/npm/node_modules/ip/package.json +25 -0
  1680. package/the_app/node_modules/npm/node_modules/ip-regex/index.js +36 -0
  1681. package/the_app/node_modules/npm/node_modules/ip-regex/license +9 -0
  1682. package/the_app/node_modules/npm/node_modules/ip-regex/package.json +47 -0
  1683. package/the_app/node_modules/npm/node_modules/is-cidr/LICENSE +22 -0
  1684. package/the_app/node_modules/npm/node_modules/is-cidr/index.js +9 -0
  1685. package/the_app/node_modules/npm/node_modules/is-cidr/package.json +32 -0
  1686. package/the_app/node_modules/npm/node_modules/is-core-module/LICENSE +20 -0
  1687. package/the_app/node_modules/npm/node_modules/is-core-module/core.json +158 -0
  1688. package/the_app/node_modules/npm/node_modules/is-core-module/index.js +69 -0
  1689. package/the_app/node_modules/npm/node_modules/is-core-module/package.json +73 -0
  1690. package/the_app/node_modules/npm/node_modules/is-core-module/test/index.js +133 -0
  1691. package/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/index.js +50 -0
  1692. package/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/license +9 -0
  1693. package/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +42 -0
  1694. package/the_app/node_modules/npm/node_modules/is-lambda/LICENSE +21 -0
  1695. package/the_app/node_modules/npm/node_modules/is-lambda/index.js +6 -0
  1696. package/the_app/node_modules/npm/node_modules/is-lambda/package.json +35 -0
  1697. package/the_app/node_modules/npm/node_modules/is-lambda/test.js +16 -0
  1698. package/the_app/node_modules/npm/node_modules/isexe/LICENSE +15 -0
  1699. package/the_app/node_modules/npm/node_modules/isexe/index.js +57 -0
  1700. package/the_app/node_modules/npm/node_modules/isexe/mode.js +41 -0
  1701. package/the_app/node_modules/npm/node_modules/isexe/package.json +31 -0
  1702. package/the_app/node_modules/npm/node_modules/isexe/test/basic.js +221 -0
  1703. package/the_app/node_modules/npm/node_modules/isexe/windows.js +42 -0
  1704. package/the_app/node_modules/npm/node_modules/jackspeak/LICENSE.md +55 -0
  1705. package/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/index.js +850 -0
  1706. package/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/package.json +1 -0
  1707. package/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
  1708. package/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/index.js +840 -0
  1709. package/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/package.json +1 -0
  1710. package/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
  1711. package/the_app/node_modules/npm/node_modules/jackspeak/package.json +94 -0
  1712. package/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
  1713. package/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/lib/index.js +135 -0
  1714. package/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/package.json +49 -0
  1715. package/the_app/node_modules/npm/node_modules/json-stringify-nice/LICENSE +15 -0
  1716. package/the_app/node_modules/npm/node_modules/json-stringify-nice/index.js +38 -0
  1717. package/the_app/node_modules/npm/node_modules/json-stringify-nice/package.json +40 -0
  1718. package/the_app/node_modules/npm/node_modules/jsonparse/LICENSE +24 -0
  1719. package/the_app/node_modules/npm/node_modules/jsonparse/bench.js +26 -0
  1720. package/the_app/node_modules/npm/node_modules/jsonparse/examples/twitterfeed.js +30 -0
  1721. package/the_app/node_modules/npm/node_modules/jsonparse/jsonparse.js +413 -0
  1722. package/the_app/node_modules/npm/node_modules/jsonparse/package.json +22 -0
  1723. package/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic.json +167 -0
  1724. package/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic2.json +180 -0
  1725. package/the_app/node_modules/npm/node_modules/jsonparse/test/big-token.js +24 -0
  1726. package/the_app/node_modules/npm/node_modules/jsonparse/test/boundary.js +110 -0
  1727. package/the_app/node_modules/npm/node_modules/jsonparse/test/offset.js +67 -0
  1728. package/the_app/node_modules/npm/node_modules/jsonparse/test/primitives.js +57 -0
  1729. package/the_app/node_modules/npm/node_modules/jsonparse/test/surrogate.js +26 -0
  1730. package/the_app/node_modules/npm/node_modules/jsonparse/test/unvalid.js +15 -0
  1731. package/the_app/node_modules/npm/node_modules/jsonparse/test/utf8.js +38 -0
  1732. package/the_app/node_modules/npm/node_modules/just-diff/LICENSE +21 -0
  1733. package/the_app/node_modules/npm/node_modules/just-diff/index.cjs +230 -0
  1734. package/the_app/node_modules/npm/node_modules/just-diff/index.mjs +227 -0
  1735. package/the_app/node_modules/npm/node_modules/just-diff/package.json +33 -0
  1736. package/the_app/node_modules/npm/node_modules/just-diff/rollup.config.js +3 -0
  1737. package/the_app/node_modules/npm/node_modules/just-diff-apply/LICENSE +21 -0
  1738. package/the_app/node_modules/npm/node_modules/just-diff-apply/index.cjs +161 -0
  1739. package/the_app/node_modules/npm/node_modules/just-diff-apply/index.mjs +158 -0
  1740. package/the_app/node_modules/npm/node_modules/just-diff-apply/package.json +34 -0
  1741. package/the_app/node_modules/npm/node_modules/just-diff-apply/rollup.config.js +3 -0
  1742. package/the_app/node_modules/npm/node_modules/libnpmaccess/LICENSE +13 -0
  1743. package/the_app/node_modules/npm/node_modules/libnpmaccess/README.md +93 -0
  1744. package/the_app/node_modules/npm/node_modules/libnpmaccess/lib/index.js +140 -0
  1745. package/the_app/node_modules/npm/node_modules/libnpmaccess/package.json +53 -0
  1746. package/the_app/node_modules/npm/node_modules/libnpmdiff/LICENSE +15 -0
  1747. package/the_app/node_modules/npm/node_modules/libnpmdiff/README.md +96 -0
  1748. package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/format-diff.js +96 -0
  1749. package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/index.js +62 -0
  1750. package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/should-print-patch.js +22 -0
  1751. package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/tarball.js +38 -0
  1752. package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/untar.js +96 -0
  1753. package/the_app/node_modules/npm/node_modules/libnpmdiff/package.json +70 -0
  1754. package/the_app/node_modules/npm/node_modules/libnpmexec/LICENSE +15 -0
  1755. package/the_app/node_modules/npm/node_modules/libnpmexec/README.md +48 -0
  1756. package/the_app/node_modules/npm/node_modules/libnpmexec/lib/file-exists.js +33 -0
  1757. package/the_app/node_modules/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js +22 -0
  1758. package/the_app/node_modules/npm/node_modules/libnpmexec/lib/index.js +285 -0
  1759. package/the_app/node_modules/npm/node_modules/libnpmexec/lib/is-windows.js +1 -0
  1760. package/the_app/node_modules/npm/node_modules/libnpmexec/lib/no-tty.js +1 -0
  1761. package/the_app/node_modules/npm/node_modules/libnpmexec/lib/run-script.js +71 -0
  1762. package/the_app/node_modules/npm/node_modules/libnpmexec/package.json +79 -0
  1763. package/the_app/node_modules/npm/node_modules/libnpmfund/LICENSE +15 -0
  1764. package/the_app/node_modules/npm/node_modules/libnpmfund/README.md +131 -0
  1765. package/the_app/node_modules/npm/node_modules/libnpmfund/lib/index.js +210 -0
  1766. package/the_app/node_modules/npm/node_modules/libnpmfund/package.json +64 -0
  1767. package/the_app/node_modules/npm/node_modules/libnpmhook/LICENSE.md +16 -0
  1768. package/the_app/node_modules/npm/node_modules/libnpmhook/README.md +271 -0
  1769. package/the_app/node_modules/npm/node_modules/libnpmhook/lib/index.js +70 -0
  1770. package/the_app/node_modules/npm/node_modules/libnpmhook/package.json +56 -0
  1771. package/the_app/node_modules/npm/node_modules/libnpmorg/LICENSE +13 -0
  1772. package/the_app/node_modules/npm/node_modules/libnpmorg/README.md +148 -0
  1773. package/the_app/node_modules/npm/node_modules/libnpmorg/lib/index.js +64 -0
  1774. package/the_app/node_modules/npm/node_modules/libnpmorg/package.json +61 -0
  1775. package/the_app/node_modules/npm/node_modules/libnpmpack/LICENSE +13 -0
  1776. package/the_app/node_modules/npm/node_modules/libnpmpack/README.md +55 -0
  1777. package/the_app/node_modules/npm/node_modules/libnpmpack/lib/index.js +69 -0
  1778. package/the_app/node_modules/npm/node_modules/libnpmpack/package.json +58 -0
  1779. package/the_app/node_modules/npm/node_modules/libnpmpublish/LICENSE +13 -0
  1780. package/the_app/node_modules/npm/node_modules/libnpmpublish/README.md +120 -0
  1781. package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/index.js +4 -0
  1782. package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/provenance.js +245 -0
  1783. package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/publish.js +225 -0
  1784. package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/unpublish.js +119 -0
  1785. package/the_app/node_modules/npm/node_modules/libnpmpublish/package.json +64 -0
  1786. package/the_app/node_modules/npm/node_modules/libnpmsearch/LICENSE +13 -0
  1787. package/the_app/node_modules/npm/node_modules/libnpmsearch/README.md +173 -0
  1788. package/the_app/node_modules/npm/node_modules/libnpmsearch/lib/index.js +71 -0
  1789. package/the_app/node_modules/npm/node_modules/libnpmsearch/package.json +57 -0
  1790. package/the_app/node_modules/npm/node_modules/libnpmteam/LICENSE +13 -0
  1791. package/the_app/node_modules/npm/node_modules/libnpmteam/README.md +188 -0
  1792. package/the_app/node_modules/npm/node_modules/libnpmteam/lib/index.js +92 -0
  1793. package/the_app/node_modules/npm/node_modules/libnpmteam/package.json +51 -0
  1794. package/the_app/node_modules/npm/node_modules/libnpmversion/LICENSE +15 -0
  1795. package/the_app/node_modules/npm/node_modules/libnpmversion/README.md +164 -0
  1796. package/the_app/node_modules/npm/node_modules/libnpmversion/lib/commit.js +17 -0
  1797. package/the_app/node_modules/npm/node_modules/libnpmversion/lib/enforce-clean.js +32 -0
  1798. package/the_app/node_modules/npm/node_modules/libnpmversion/lib/index.js +40 -0
  1799. package/the_app/node_modules/npm/node_modules/libnpmversion/lib/read-json.js +7 -0
  1800. package/the_app/node_modules/npm/node_modules/libnpmversion/lib/retrieve-tag.js +13 -0
  1801. package/the_app/node_modules/npm/node_modules/libnpmversion/lib/tag.js +30 -0
  1802. package/the_app/node_modules/npm/node_modules/libnpmversion/lib/version.js +140 -0
  1803. package/the_app/node_modules/npm/node_modules/libnpmversion/lib/write-json.js +16 -0
  1804. package/the_app/node_modules/npm/node_modules/libnpmversion/package.json +54 -0
  1805. package/the_app/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
  1806. package/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/index.js +1441 -0
  1807. package/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/package.json +3 -0
  1808. package/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/index.js +1437 -0
  1809. package/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/package.json +3 -0
  1810. package/the_app/node_modules/npm/node_modules/lru-cache/package.json +118 -0
  1811. package/the_app/node_modules/npm/node_modules/make-fetch-happen/LICENSE +16 -0
  1812. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/entry.js +469 -0
  1813. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/errors.js +11 -0
  1814. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/index.js +49 -0
  1815. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/key.js +17 -0
  1816. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/policy.js +161 -0
  1817. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/fetch.js +118 -0
  1818. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/index.js +41 -0
  1819. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/options.js +54 -0
  1820. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/pipeline.js +41 -0
  1821. package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js +127 -0
  1822. package/the_app/node_modules/npm/node_modules/make-fetch-happen/package.json +80 -0
  1823. package/the_app/node_modules/npm/node_modules/minimatch/LICENSE +15 -0
  1824. package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
  1825. package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/ast.js +589 -0
  1826. package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
  1827. package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/escape.js +22 -0
  1828. package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/index.js +1011 -0
  1829. package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/package.json +3 -0
  1830. package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/unescape.js +24 -0
  1831. package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
  1832. package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/ast.js +585 -0
  1833. package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
  1834. package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/escape.js +18 -0
  1835. package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/index.js +995 -0
  1836. package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/package.json +3 -0
  1837. package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/unescape.js +20 -0
  1838. package/the_app/node_modules/npm/node_modules/minimatch/package.json +86 -0
  1839. package/the_app/node_modules/npm/node_modules/minipass/LICENSE +15 -0
  1840. package/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/index.js +1028 -0
  1841. package/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/package.json +1 -0
  1842. package/the_app/node_modules/npm/node_modules/minipass/dist/esm/index.js +1018 -0
  1843. package/the_app/node_modules/npm/node_modules/minipass/dist/esm/package.json +1 -0
  1844. package/the_app/node_modules/npm/node_modules/minipass/package.json +82 -0
  1845. package/the_app/node_modules/npm/node_modules/minipass-collect/LICENSE +15 -0
  1846. package/the_app/node_modules/npm/node_modules/minipass-collect/index.js +71 -0
  1847. package/the_app/node_modules/npm/node_modules/minipass-collect/package.json +30 -0
  1848. package/the_app/node_modules/npm/node_modules/minipass-fetch/LICENSE +28 -0
  1849. package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/abort-error.js +17 -0
  1850. package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/blob.js +97 -0
  1851. package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/body.js +350 -0
  1852. package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/fetch-error.js +32 -0
  1853. package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/headers.js +267 -0
  1854. package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/index.js +377 -0
  1855. package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/request.js +282 -0
  1856. package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/response.js +90 -0
  1857. package/the_app/node_modules/npm/node_modules/minipass-fetch/package.json +69 -0
  1858. package/the_app/node_modules/npm/node_modules/minipass-flush/LICENSE +15 -0
  1859. package/the_app/node_modules/npm/node_modules/minipass-flush/index.js +39 -0
  1860. package/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/LICENSE +15 -0
  1861. package/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/index.js +649 -0
  1862. package/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/package.json +56 -0
  1863. package/the_app/node_modules/npm/node_modules/minipass-flush/package.json +39 -0
  1864. package/the_app/node_modules/npm/node_modules/minipass-json-stream/LICENSE +27 -0
  1865. package/the_app/node_modules/npm/node_modules/minipass-json-stream/index.js +227 -0
  1866. package/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/LICENSE +15 -0
  1867. package/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/index.js +649 -0
  1868. package/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/package.json +56 -0
  1869. package/the_app/node_modules/npm/node_modules/minipass-json-stream/package.json +39 -0
  1870. package/the_app/node_modules/npm/node_modules/minipass-pipeline/LICENSE +15 -0
  1871. package/the_app/node_modules/npm/node_modules/minipass-pipeline/index.js +128 -0
  1872. package/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +15 -0
  1873. package/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/index.js +649 -0
  1874. package/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/package.json +56 -0
  1875. package/the_app/node_modules/npm/node_modules/minipass-pipeline/package.json +29 -0
  1876. package/the_app/node_modules/npm/node_modules/minipass-sized/LICENSE +15 -0
  1877. package/the_app/node_modules/npm/node_modules/minipass-sized/index.js +67 -0
  1878. package/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/LICENSE +15 -0
  1879. package/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/index.js +649 -0
  1880. package/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/package.json +56 -0
  1881. package/the_app/node_modules/npm/node_modules/minipass-sized/package.json +39 -0
  1882. package/the_app/node_modules/npm/node_modules/minipass-sized/test/basic.js +83 -0
  1883. package/the_app/node_modules/npm/node_modules/minizlib/LICENSE +26 -0
  1884. package/the_app/node_modules/npm/node_modules/minizlib/constants.js +115 -0
  1885. package/the_app/node_modules/npm/node_modules/minizlib/index.js +348 -0
  1886. package/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
  1887. package/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/index.js +649 -0
  1888. package/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +56 -0
  1889. package/the_app/node_modules/npm/node_modules/minizlib/package.json +42 -0
  1890. package/the_app/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
  1891. package/the_app/node_modules/npm/node_modules/mkdirp/bin/cmd.js +68 -0
  1892. package/the_app/node_modules/npm/node_modules/mkdirp/index.js +31 -0
  1893. package/the_app/node_modules/npm/node_modules/mkdirp/lib/find-made.js +29 -0
  1894. package/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
  1895. package/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
  1896. package/the_app/node_modules/npm/node_modules/mkdirp/lib/opts-arg.js +23 -0
  1897. package/the_app/node_modules/npm/node_modules/mkdirp/lib/path-arg.js +29 -0
  1898. package/the_app/node_modules/npm/node_modules/mkdirp/lib/use-native.js +10 -0
  1899. package/the_app/node_modules/npm/node_modules/mkdirp/package.json +44 -0
  1900. package/the_app/node_modules/npm/node_modules/mkdirp/readme.markdown +266 -0
  1901. package/the_app/node_modules/npm/node_modules/ms/index.js +162 -0
  1902. package/the_app/node_modules/npm/node_modules/ms/license.md +21 -0
  1903. package/the_app/node_modules/npm/node_modules/ms/package.json +38 -0
  1904. package/the_app/node_modules/npm/node_modules/mute-stream/LICENSE +15 -0
  1905. package/the_app/node_modules/npm/node_modules/mute-stream/lib/index.js +142 -0
  1906. package/the_app/node_modules/npm/node_modules/mute-stream/package.json +52 -0
  1907. package/the_app/node_modules/npm/node_modules/negotiator/HISTORY.md +108 -0
  1908. package/the_app/node_modules/npm/node_modules/negotiator/LICENSE +24 -0
  1909. package/the_app/node_modules/npm/node_modules/negotiator/index.js +82 -0
  1910. package/the_app/node_modules/npm/node_modules/negotiator/lib/charset.js +169 -0
  1911. package/the_app/node_modules/npm/node_modules/negotiator/lib/encoding.js +184 -0
  1912. package/the_app/node_modules/npm/node_modules/negotiator/lib/language.js +179 -0
  1913. package/the_app/node_modules/npm/node_modules/negotiator/lib/mediaType.js +294 -0
  1914. package/the_app/node_modules/npm/node_modules/negotiator/package.json +42 -0
  1915. package/the_app/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +905 -0
  1916. package/the_app/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
  1917. package/the_app/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
  1918. package/the_app/node_modules/npm/node_modules/node-gyp/README.md +263 -0
  1919. package/the_app/node_modules/npm/node_modules/node-gyp/SECURITY.md +2 -0
  1920. package/the_app/node_modules/npm/node_modules/node-gyp/addon.gypi +204 -0
  1921. package/the_app/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +138 -0
  1922. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +28 -0
  1923. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/README.md +30 -0
  1924. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
  1925. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
  1926. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
  1927. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
  1928. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
  1929. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
  1930. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1270 -0
  1931. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
  1932. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
  1933. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +153 -0
  1934. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +271 -0
  1935. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
  1936. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +692 -0
  1937. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +654 -0
  1938. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +78 -0
  1939. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
  1940. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
  1941. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
  1942. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
  1943. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +804 -0
  1944. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1173 -0
  1945. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1318 -0
  1946. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +123 -0
  1947. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +103 -0
  1948. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
  1949. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
  1950. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +58 -0
  1951. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2711 -0
  1952. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3981 -0
  1953. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
  1954. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2933 -0
  1955. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +55 -0
  1956. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
  1957. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +25 -0
  1958. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3115 -0
  1959. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +98 -0
  1960. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +771 -0
  1961. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1262 -0
  1962. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
  1963. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
  1964. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
  1965. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1933 -0
  1966. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +302 -0
  1967. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3198 -0
  1968. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
  1969. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
  1970. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
  1971. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
  1972. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
  1973. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
  1974. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
  1975. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
  1976. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
  1977. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
  1978. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
  1979. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
  1980. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
  1981. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
  1982. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
  1983. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
  1984. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
  1985. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
  1986. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
  1987. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pyproject.toml +119 -0
  1988. package/the_app/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
  1989. package/the_app/node_modules/npm/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
  1990. package/the_app/node_modules/npm/node_modules/node-gyp/lib/build.js +220 -0
  1991. package/the_app/node_modules/npm/node_modules/node-gyp/lib/clean.js +15 -0
  1992. package/the_app/node_modules/npm/node_modules/node-gyp/lib/configure.js +282 -0
  1993. package/the_app/node_modules/npm/node_modules/node-gyp/lib/create-config-gypi.js +150 -0
  1994. package/the_app/node_modules/npm/node_modules/node-gyp/lib/download.js +39 -0
  1995. package/the_app/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +63 -0
  1996. package/the_app/node_modules/npm/node_modules/node-gyp/lib/find-python.js +310 -0
  1997. package/the_app/node_modules/npm/node_modules/node-gyp/lib/find-visualstudio.js +443 -0
  1998. package/the_app/node_modules/npm/node_modules/node-gyp/lib/install.js +415 -0
  1999. package/the_app/node_modules/npm/node_modules/node-gyp/lib/list.js +26 -0
  2000. package/the_app/node_modules/npm/node_modules/node-gyp/lib/log.js +169 -0
  2001. package/the_app/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +188 -0
  2002. package/the_app/node_modules/npm/node_modules/node-gyp/lib/process-release.js +146 -0
  2003. package/the_app/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +12 -0
  2004. package/the_app/node_modules/npm/node_modules/node-gyp/lib/remove.js +43 -0
  2005. package/the_app/node_modules/npm/node_modules/node-gyp/lib/util.js +81 -0
  2006. package/the_app/node_modules/npm/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
  2007. package/the_app/node_modules/npm/node_modules/node-gyp/package.json +51 -0
  2008. package/the_app/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +39 -0
  2009. package/the_app/node_modules/npm/node_modules/nopt/LICENSE +15 -0
  2010. package/the_app/node_modules/npm/node_modules/nopt/README.md +213 -0
  2011. package/the_app/node_modules/npm/node_modules/nopt/bin/nopt.js +29 -0
  2012. package/the_app/node_modules/npm/node_modules/nopt/lib/debug.js +4 -0
  2013. package/the_app/node_modules/npm/node_modules/nopt/lib/nopt-lib.js +479 -0
  2014. package/the_app/node_modules/npm/node_modules/nopt/lib/nopt.js +30 -0
  2015. package/the_app/node_modules/npm/node_modules/nopt/lib/type-defs.js +91 -0
  2016. package/the_app/node_modules/npm/node_modules/nopt/package.json +51 -0
  2017. package/the_app/node_modules/npm/node_modules/normalize-package-data/LICENSE +15 -0
  2018. package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +24 -0
  2019. package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +475 -0
  2020. package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +22 -0
  2021. package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +48 -0
  2022. package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +11 -0
  2023. package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
  2024. package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
  2025. package/the_app/node_modules/npm/node_modules/normalize-package-data/package.json +62 -0
  2026. package/the_app/node_modules/npm/node_modules/npm-audit-report/LICENSE +16 -0
  2027. package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/colors.js +22 -0
  2028. package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/exit-code.js +14 -0
  2029. package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/index.js +41 -0
  2030. package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/detail.js +86 -0
  2031. package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/install.js +75 -0
  2032. package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/json.js +1 -0
  2033. package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/quiet.js +1 -0
  2034. package/the_app/node_modules/npm/node_modules/npm-audit-report/package.json +60 -0
  2035. package/the_app/node_modules/npm/node_modules/npm-bundled/LICENSE +15 -0
  2036. package/the_app/node_modules/npm/node_modules/npm-bundled/lib/index.js +254 -0
  2037. package/the_app/node_modules/npm/node_modules/npm-bundled/package.json +49 -0
  2038. package/the_app/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
  2039. package/the_app/node_modules/npm/node_modules/npm-install-checks/lib/index.js +101 -0
  2040. package/the_app/node_modules/npm/node_modules/npm-install-checks/package.json +51 -0
  2041. package/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +15 -0
  2042. package/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/lib/index.js +64 -0
  2043. package/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +44 -0
  2044. package/the_app/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
  2045. package/the_app/node_modules/npm/node_modules/npm-package-arg/lib/npa.js +411 -0
  2046. package/the_app/node_modules/npm/node_modules/npm-package-arg/package.json +67 -0
  2047. package/the_app/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
  2048. package/the_app/node_modules/npm/node_modules/npm-packlist/lib/index.js +484 -0
  2049. package/the_app/node_modules/npm/node_modules/npm-packlist/package.json +61 -0
  2050. package/the_app/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +16 -0
  2051. package/the_app/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js +218 -0
  2052. package/the_app/node_modules/npm/node_modules/npm-pick-manifest/package.json +63 -0
  2053. package/the_app/node_modules/npm/node_modules/npm-profile/LICENSE.md +20 -0
  2054. package/the_app/node_modules/npm/node_modules/npm-profile/lib/index.js +295 -0
  2055. package/the_app/node_modules/npm/node_modules/npm-profile/package.json +57 -0
  2056. package/the_app/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +20 -0
  2057. package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/auth.js +181 -0
  2058. package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js +100 -0
  2059. package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/clean-url.js +27 -0
  2060. package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/default-opts.js +19 -0
  2061. package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/errors.js +80 -0
  2062. package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/index.js +249 -0
  2063. package/the_app/node_modules/npm/node_modules/npm-registry-fetch/package.json +67 -0
  2064. package/the_app/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
  2065. package/the_app/node_modules/npm/node_modules/npm-user-validate/lib/index.js +61 -0
  2066. package/the_app/node_modules/npm/node_modules/npm-user-validate/package.json +48 -0
  2067. package/the_app/node_modules/npm/node_modules/npmlog/LICENSE.md +20 -0
  2068. package/the_app/node_modules/npm/node_modules/npmlog/lib/log.js +400 -0
  2069. package/the_app/node_modules/npm/node_modules/npmlog/package.json +52 -0
  2070. package/the_app/node_modules/npm/node_modules/p-map/index.js +81 -0
  2071. package/the_app/node_modules/npm/node_modules/p-map/license +9 -0
  2072. package/the_app/node_modules/npm/node_modules/p-map/package.json +53 -0
  2073. package/the_app/node_modules/npm/node_modules/pacote/LICENSE +15 -0
  2074. package/the_app/node_modules/npm/node_modules/pacote/README.md +285 -0
  2075. package/the_app/node_modules/npm/node_modules/pacote/lib/bin.js +158 -0
  2076. package/the_app/node_modules/npm/node_modules/pacote/lib/dir.js +108 -0
  2077. package/the_app/node_modules/npm/node_modules/pacote/lib/fetcher.js +505 -0
  2078. package/the_app/node_modules/npm/node_modules/pacote/lib/file.js +96 -0
  2079. package/the_app/node_modules/npm/node_modules/pacote/lib/git.js +327 -0
  2080. package/the_app/node_modules/npm/node_modules/pacote/lib/index.js +23 -0
  2081. package/the_app/node_modules/npm/node_modules/pacote/lib/registry.js +368 -0
  2082. package/the_app/node_modules/npm/node_modules/pacote/lib/remote.js +91 -0
  2083. package/the_app/node_modules/npm/node_modules/pacote/lib/util/add-git-sha.js +15 -0
  2084. package/the_app/node_modules/npm/node_modules/pacote/lib/util/cache-dir.js +15 -0
  2085. package/the_app/node_modules/npm/node_modules/pacote/lib/util/is-package-bin.js +25 -0
  2086. package/the_app/node_modules/npm/node_modules/pacote/lib/util/npm.js +14 -0
  2087. package/the_app/node_modules/npm/node_modules/pacote/lib/util/tar-create-options.js +31 -0
  2088. package/the_app/node_modules/npm/node_modules/pacote/lib/util/trailing-slashes.js +10 -0
  2089. package/the_app/node_modules/npm/node_modules/pacote/package.json +79 -0
  2090. package/the_app/node_modules/npm/node_modules/parse-conflict-json/LICENSE.md +20 -0
  2091. package/the_app/node_modules/npm/node_modules/parse-conflict-json/lib/index.js +104 -0
  2092. package/the_app/node_modules/npm/node_modules/parse-conflict-json/package.json +49 -0
  2093. package/the_app/node_modules/npm/node_modules/path-key/index.js +16 -0
  2094. package/the_app/node_modules/npm/node_modules/path-key/license +9 -0
  2095. package/the_app/node_modules/npm/node_modules/path-key/package.json +39 -0
  2096. package/the_app/node_modules/npm/node_modules/path-scurry/LICENSE.md +55 -0
  2097. package/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/index.js +2018 -0
  2098. package/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/package.json +3 -0
  2099. package/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/index.js +1983 -0
  2100. package/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/package.json +3 -0
  2101. package/the_app/node_modules/npm/node_modules/path-scurry/package.json +87 -0
  2102. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/API.md +872 -0
  2103. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
  2104. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/index.js +17 -0
  2105. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
  2106. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/processor.js +170 -0
  2107. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
  2108. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
  2109. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
  2110. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
  2111. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
  2112. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
  2113. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
  2114. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
  2115. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
  2116. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
  2117. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
  2118. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
  2119. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
  2120. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
  2121. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
  2122. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
  2123. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
  2124. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
  2125. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
  2126. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
  2127. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
  2128. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
  2129. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
  2130. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
  2131. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
  2132. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
  2133. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
  2134. package/the_app/node_modules/npm/node_modules/postcss-selector-parser/package.json +79 -0
  2135. package/the_app/node_modules/npm/node_modules/proc-log/LICENSE +15 -0
  2136. package/the_app/node_modules/npm/node_modules/proc-log/lib/index.js +23 -0
  2137. package/the_app/node_modules/npm/node_modules/proc-log/package.json +44 -0
  2138. package/the_app/node_modules/npm/node_modules/process/LICENSE +22 -0
  2139. package/the_app/node_modules/npm/node_modules/process/browser.js +184 -0
  2140. package/the_app/node_modules/npm/node_modules/process/index.js +2 -0
  2141. package/the_app/node_modules/npm/node_modules/process/package.json +27 -0
  2142. package/the_app/node_modules/npm/node_modules/process/test.js +199 -0
  2143. package/the_app/node_modules/npm/node_modules/promise-all-reject-late/LICENSE +15 -0
  2144. package/the_app/node_modules/npm/node_modules/promise-all-reject-late/index.js +27 -0
  2145. package/the_app/node_modules/npm/node_modules/promise-all-reject-late/package.json +22 -0
  2146. package/the_app/node_modules/npm/node_modules/promise-all-reject-late/test/index.js +88 -0
  2147. package/the_app/node_modules/npm/node_modules/promise-call-limit/LICENSE +15 -0
  2148. package/the_app/node_modules/npm/node_modules/promise-call-limit/index.js +52 -0
  2149. package/the_app/node_modules/npm/node_modules/promise-call-limit/package.json +29 -0
  2150. package/the_app/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
  2151. package/the_app/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
  2152. package/the_app/node_modules/npm/node_modules/promise-inflight/package.json +24 -0
  2153. package/the_app/node_modules/npm/node_modules/promise-retry/LICENSE +19 -0
  2154. package/the_app/node_modules/npm/node_modules/promise-retry/index.js +52 -0
  2155. package/the_app/node_modules/npm/node_modules/promise-retry/package.json +37 -0
  2156. package/the_app/node_modules/npm/node_modules/promise-retry/test/test.js +263 -0
  2157. package/the_app/node_modules/npm/node_modules/promzard/LICENSE +15 -0
  2158. package/the_app/node_modules/npm/node_modules/promzard/lib/index.js +175 -0
  2159. package/the_app/node_modules/npm/node_modules/promzard/package.json +48 -0
  2160. package/the_app/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
  2161. package/the_app/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
  2162. package/the_app/node_modules/npm/node_modules/qrcode-terminal/README.md +82 -0
  2163. package/the_app/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +101 -0
  2164. package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
  2165. package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
  2166. package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
  2167. package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
  2168. package/the_app/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
  2169. package/the_app/node_modules/npm/node_modules/qrcode-terminal/package.json +37 -0
  2170. package/the_app/node_modules/npm/node_modules/qrcode-terminal/test/main.js +63 -0
  2171. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
  2172. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
  2173. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
  2174. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
  2175. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
  2176. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
  2177. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
  2178. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
  2179. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
  2180. package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
  2181. package/the_app/node_modules/npm/node_modules/read/LICENSE +15 -0
  2182. package/the_app/node_modules/npm/node_modules/read/lib/read.js +82 -0
  2183. package/the_app/node_modules/npm/node_modules/read/package.json +52 -0
  2184. package/the_app/node_modules/npm/node_modules/read-cmd-shim/LICENSE +14 -0
  2185. package/the_app/node_modules/npm/node_modules/read-cmd-shim/lib/index.js +75 -0
  2186. package/the_app/node_modules/npm/node_modules/read-cmd-shim/package.json +47 -0
  2187. package/the_app/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
  2188. package/the_app/node_modules/npm/node_modules/read-package-json/lib/read-json.js +589 -0
  2189. package/the_app/node_modules/npm/node_modules/read-package-json/package.json +65 -0
  2190. package/the_app/node_modules/npm/node_modules/read-package-json-fast/LICENSE +15 -0
  2191. package/the_app/node_modules/npm/node_modules/read-package-json-fast/lib/index.js +141 -0
  2192. package/the_app/node_modules/npm/node_modules/read-package-json-fast/package.json +47 -0
  2193. package/the_app/node_modules/npm/node_modules/readable-stream/LICENSE +47 -0
  2194. package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js +4 -0
  2195. package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_passthrough.js +4 -0
  2196. package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js +4 -0
  2197. package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js +4 -0
  2198. package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js +4 -0
  2199. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js +49 -0
  2200. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/buffer_list.js +157 -0
  2201. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/compose.js +194 -0
  2202. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/destroy.js +290 -0
  2203. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplex.js +143 -0
  2204. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplexify.js +379 -0
  2205. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +281 -0
  2206. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/from.js +98 -0
  2207. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/lazy_transform.js +51 -0
  2208. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/legacy.js +89 -0
  2209. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/operators.js +457 -0
  2210. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/passthrough.js +39 -0
  2211. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/pipeline.js +465 -0
  2212. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/readable.js +1247 -0
  2213. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
  2214. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/transform.js +180 -0
  2215. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/utils.js +321 -0
  2216. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/writable.js +817 -0
  2217. package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/validators.js +510 -0
  2218. package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/browser.js +35 -0
  2219. package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/errors.js +341 -0
  2220. package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/index.js +65 -0
  2221. package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/primordials.js +101 -0
  2222. package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/util.js +128 -0
  2223. package/the_app/node_modules/npm/node_modules/readable-stream/lib/stream/promises.js +43 -0
  2224. package/the_app/node_modules/npm/node_modules/readable-stream/lib/stream.js +136 -0
  2225. package/the_app/node_modules/npm/node_modules/readable-stream/package.json +86 -0
  2226. package/the_app/node_modules/npm/node_modules/retry/License +21 -0
  2227. package/the_app/node_modules/npm/node_modules/retry/Makefile +18 -0
  2228. package/the_app/node_modules/npm/node_modules/retry/equation.gif +0 -0
  2229. package/the_app/node_modules/npm/node_modules/retry/example/dns.js +31 -0
  2230. package/the_app/node_modules/npm/node_modules/retry/example/stop.js +40 -0
  2231. package/the_app/node_modules/npm/node_modules/retry/index.js +1 -0
  2232. package/the_app/node_modules/npm/node_modules/retry/lib/retry.js +100 -0
  2233. package/the_app/node_modules/npm/node_modules/retry/lib/retry_operation.js +158 -0
  2234. package/the_app/node_modules/npm/node_modules/retry/package.json +32 -0
  2235. package/the_app/node_modules/npm/node_modules/retry/test/common.js +10 -0
  2236. package/the_app/node_modules/npm/node_modules/retry/test/integration/test-forever.js +24 -0
  2237. package/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +258 -0
  2238. package/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
  2239. package/the_app/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js +69 -0
  2240. package/the_app/node_modules/npm/node_modules/safe-buffer/LICENSE +21 -0
  2241. package/the_app/node_modules/npm/node_modules/safe-buffer/index.js +65 -0
  2242. package/the_app/node_modules/npm/node_modules/safe-buffer/package.json +51 -0
  2243. package/the_app/node_modules/npm/node_modules/safer-buffer/LICENSE +21 -0
  2244. package/the_app/node_modules/npm/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  2245. package/the_app/node_modules/npm/node_modules/safer-buffer/dangerous.js +58 -0
  2246. package/the_app/node_modules/npm/node_modules/safer-buffer/package.json +34 -0
  2247. package/the_app/node_modules/npm/node_modules/safer-buffer/safer.js +77 -0
  2248. package/the_app/node_modules/npm/node_modules/safer-buffer/tests.js +406 -0
  2249. package/the_app/node_modules/npm/node_modules/semver/LICENSE +15 -0
  2250. package/the_app/node_modules/npm/node_modules/semver/README.md +637 -0
  2251. package/the_app/node_modules/npm/node_modules/semver/bin/semver.js +197 -0
  2252. package/the_app/node_modules/npm/node_modules/semver/classes/comparator.js +141 -0
  2253. package/the_app/node_modules/npm/node_modules/semver/classes/index.js +5 -0
  2254. package/the_app/node_modules/npm/node_modules/semver/classes/range.js +539 -0
  2255. package/the_app/node_modules/npm/node_modules/semver/classes/semver.js +302 -0
  2256. package/the_app/node_modules/npm/node_modules/semver/functions/clean.js +6 -0
  2257. package/the_app/node_modules/npm/node_modules/semver/functions/cmp.js +52 -0
  2258. package/the_app/node_modules/npm/node_modules/semver/functions/coerce.js +52 -0
  2259. package/the_app/node_modules/npm/node_modules/semver/functions/compare-build.js +7 -0
  2260. package/the_app/node_modules/npm/node_modules/semver/functions/compare-loose.js +3 -0
  2261. package/the_app/node_modules/npm/node_modules/semver/functions/compare.js +5 -0
  2262. package/the_app/node_modules/npm/node_modules/semver/functions/diff.js +65 -0
  2263. package/the_app/node_modules/npm/node_modules/semver/functions/eq.js +3 -0
  2264. package/the_app/node_modules/npm/node_modules/semver/functions/gt.js +3 -0
  2265. package/the_app/node_modules/npm/node_modules/semver/functions/gte.js +3 -0
  2266. package/the_app/node_modules/npm/node_modules/semver/functions/inc.js +19 -0
  2267. package/the_app/node_modules/npm/node_modules/semver/functions/lt.js +3 -0
  2268. package/the_app/node_modules/npm/node_modules/semver/functions/lte.js +3 -0
  2269. package/the_app/node_modules/npm/node_modules/semver/functions/major.js +3 -0
  2270. package/the_app/node_modules/npm/node_modules/semver/functions/minor.js +3 -0
  2271. package/the_app/node_modules/npm/node_modules/semver/functions/neq.js +3 -0
  2272. package/the_app/node_modules/npm/node_modules/semver/functions/parse.js +16 -0
  2273. package/the_app/node_modules/npm/node_modules/semver/functions/patch.js +3 -0
  2274. package/the_app/node_modules/npm/node_modules/semver/functions/prerelease.js +6 -0
  2275. package/the_app/node_modules/npm/node_modules/semver/functions/rcompare.js +3 -0
  2276. package/the_app/node_modules/npm/node_modules/semver/functions/rsort.js +3 -0
  2277. package/the_app/node_modules/npm/node_modules/semver/functions/satisfies.js +10 -0
  2278. package/the_app/node_modules/npm/node_modules/semver/functions/sort.js +3 -0
  2279. package/the_app/node_modules/npm/node_modules/semver/functions/valid.js +6 -0
  2280. package/the_app/node_modules/npm/node_modules/semver/index.js +89 -0
  2281. package/the_app/node_modules/npm/node_modules/semver/internal/constants.js +35 -0
  2282. package/the_app/node_modules/npm/node_modules/semver/internal/debug.js +9 -0
  2283. package/the_app/node_modules/npm/node_modules/semver/internal/identifiers.js +23 -0
  2284. package/the_app/node_modules/npm/node_modules/semver/internal/parse-options.js +15 -0
  2285. package/the_app/node_modules/npm/node_modules/semver/internal/re.js +212 -0
  2286. package/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/LICENSE +15 -0
  2287. package/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/index.js +334 -0
  2288. package/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/package.json +34 -0
  2289. package/the_app/node_modules/npm/node_modules/semver/package.json +87 -0
  2290. package/the_app/node_modules/npm/node_modules/semver/preload.js +2 -0
  2291. package/the_app/node_modules/npm/node_modules/semver/range.bnf +16 -0
  2292. package/the_app/node_modules/npm/node_modules/semver/ranges/gtr.js +4 -0
  2293. package/the_app/node_modules/npm/node_modules/semver/ranges/intersects.js +7 -0
  2294. package/the_app/node_modules/npm/node_modules/semver/ranges/ltr.js +4 -0
  2295. package/the_app/node_modules/npm/node_modules/semver/ranges/max-satisfying.js +25 -0
  2296. package/the_app/node_modules/npm/node_modules/semver/ranges/min-satisfying.js +24 -0
  2297. package/the_app/node_modules/npm/node_modules/semver/ranges/min-version.js +61 -0
  2298. package/the_app/node_modules/npm/node_modules/semver/ranges/outside.js +80 -0
  2299. package/the_app/node_modules/npm/node_modules/semver/ranges/simplify.js +47 -0
  2300. package/the_app/node_modules/npm/node_modules/semver/ranges/subset.js +247 -0
  2301. package/the_app/node_modules/npm/node_modules/semver/ranges/to-comparators.js +8 -0
  2302. package/the_app/node_modules/npm/node_modules/semver/ranges/valid.js +11 -0
  2303. package/the_app/node_modules/npm/node_modules/set-blocking/LICENSE.txt +14 -0
  2304. package/the_app/node_modules/npm/node_modules/set-blocking/index.js +7 -0
  2305. package/the_app/node_modules/npm/node_modules/set-blocking/package.json +42 -0
  2306. package/the_app/node_modules/npm/node_modules/shebang-command/index.js +19 -0
  2307. package/the_app/node_modules/npm/node_modules/shebang-command/license +9 -0
  2308. package/the_app/node_modules/npm/node_modules/shebang-command/package.json +34 -0
  2309. package/the_app/node_modules/npm/node_modules/shebang-regex/index.js +2 -0
  2310. package/the_app/node_modules/npm/node_modules/shebang-regex/license +9 -0
  2311. package/the_app/node_modules/npm/node_modules/shebang-regex/package.json +35 -0
  2312. package/the_app/node_modules/npm/node_modules/signal-exit/LICENSE.txt +16 -0
  2313. package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/browser.js +10 -0
  2314. package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/index.js +279 -0
  2315. package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/package.json +3 -0
  2316. package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/signals.js +42 -0
  2317. package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/browser.js +4 -0
  2318. package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/index.js +275 -0
  2319. package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/package.json +3 -0
  2320. package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/signals.js +39 -0
  2321. package/the_app/node_modules/npm/node_modules/signal-exit/package.json +106 -0
  2322. package/the_app/node_modules/npm/node_modules/sigstore/LICENSE +202 -0
  2323. package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/chain.js +63 -0
  2324. package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/index.js +22 -0
  2325. package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/sct.js +30 -0
  2326. package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/signer.js +146 -0
  2327. package/the_app/node_modules/npm/node_modules/sigstore/dist/config.js +165 -0
  2328. package/the_app/node_modules/npm/node_modules/sigstore/dist/error.js +35 -0
  2329. package/the_app/node_modules/npm/node_modules/sigstore/dist/index.js +34 -0
  2330. package/the_app/node_modules/npm/node_modules/sigstore/dist/sigstore.js +92 -0
  2331. package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/body.js +152 -0
  2332. package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/checkpoint.js +148 -0
  2333. package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/index.js +92 -0
  2334. package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/merkle.js +113 -0
  2335. package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/set.js +64 -0
  2336. package/the_app/node_modules/npm/node_modules/sigstore/dist/types/fetch.js +2 -0
  2337. package/the_app/node_modules/npm/node_modules/sigstore/dist/types/sigstore.js +27 -0
  2338. package/the_app/node_modules/npm/node_modules/sigstore/dist/types/utility.js +17 -0
  2339. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/dump.js +97 -0
  2340. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/error.js +24 -0
  2341. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/index.js +20 -0
  2342. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/length.js +63 -0
  2343. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/obj.js +152 -0
  2344. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/parse.js +125 -0
  2345. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/tag.js +86 -0
  2346. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/crypto.js +63 -0
  2347. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/dsse.js +25 -0
  2348. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/encoding.js +46 -0
  2349. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/index.js +47 -0
  2350. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/json.js +61 -0
  2351. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/pem.js +44 -0
  2352. package/the_app/node_modules/npm/node_modules/sigstore/dist/util/stream.js +116 -0
  2353. package/the_app/node_modules/npm/node_modules/sigstore/dist/verify.js +160 -0
  2354. package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/cert.js +242 -0
  2355. package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/ext.js +145 -0
  2356. package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/sct.js +101 -0
  2357. package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/verify.js +177 -0
  2358. package/the_app/node_modules/npm/node_modules/sigstore/package.json +45 -0
  2359. package/the_app/node_modules/npm/node_modules/smart-buffer/LICENSE +20 -0
  2360. package/the_app/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
  2361. package/the_app/node_modules/npm/node_modules/smart-buffer/build/utils.js +108 -0
  2362. package/the_app/node_modules/npm/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
  2363. package/the_app/node_modules/npm/node_modules/smart-buffer/package.json +79 -0
  2364. package/the_app/node_modules/npm/node_modules/socks/LICENSE +20 -0
  2365. package/the_app/node_modules/npm/node_modules/socks/build/client/socksclient.js +793 -0
  2366. package/the_app/node_modules/npm/node_modules/socks/build/common/constants.js +114 -0
  2367. package/the_app/node_modules/npm/node_modules/socks/build/common/helpers.js +128 -0
  2368. package/the_app/node_modules/npm/node_modules/socks/build/common/receivebuffer.js +43 -0
  2369. package/the_app/node_modules/npm/node_modules/socks/build/common/util.js +25 -0
  2370. package/the_app/node_modules/npm/node_modules/socks/build/index.js +18 -0
  2371. package/the_app/node_modules/npm/node_modules/socks/docs/examples/index.md +17 -0
  2372. package/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
  2373. package/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
  2374. package/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
  2375. package/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
  2376. package/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
  2377. package/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
  2378. package/the_app/node_modules/npm/node_modules/socks/docs/index.md +5 -0
  2379. package/the_app/node_modules/npm/node_modules/socks/docs/migratingFromV1.md +86 -0
  2380. package/the_app/node_modules/npm/node_modules/socks/package.json +58 -0
  2381. package/the_app/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js +182 -0
  2382. package/the_app/node_modules/npm/node_modules/socks-proxy-agent/package.json +142 -0
  2383. package/the_app/node_modules/npm/node_modules/spdx-correct/LICENSE +202 -0
  2384. package/the_app/node_modules/npm/node_modules/spdx-correct/index.js +386 -0
  2385. package/the_app/node_modules/npm/node_modules/spdx-correct/package.json +32 -0
  2386. package/the_app/node_modules/npm/node_modules/spdx-exceptions/index.json +40 -0
  2387. package/the_app/node_modules/npm/node_modules/spdx-exceptions/package.json +17 -0
  2388. package/the_app/node_modules/npm/node_modules/spdx-expression-parse/AUTHORS +4 -0
  2389. package/the_app/node_modules/npm/node_modules/spdx-expression-parse/LICENSE +22 -0
  2390. package/the_app/node_modules/npm/node_modules/spdx-expression-parse/index.js +8 -0
  2391. package/the_app/node_modules/npm/node_modules/spdx-expression-parse/package.json +39 -0
  2392. package/the_app/node_modules/npm/node_modules/spdx-expression-parse/parse.js +138 -0
  2393. package/the_app/node_modules/npm/node_modules/spdx-expression-parse/scan.js +131 -0
  2394. package/the_app/node_modules/npm/node_modules/spdx-license-ids/deprecated.json +33 -0
  2395. package/the_app/node_modules/npm/node_modules/spdx-license-ids/index.json +569 -0
  2396. package/the_app/node_modules/npm/node_modules/spdx-license-ids/package.json +39 -0
  2397. package/the_app/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
  2398. package/the_app/node_modules/npm/node_modules/ssri/lib/index.js +580 -0
  2399. package/the_app/node_modules/npm/node_modules/ssri/package.json +65 -0
  2400. package/the_app/node_modules/npm/node_modules/string-width/index.js +47 -0
  2401. package/the_app/node_modules/npm/node_modules/string-width/license +9 -0
  2402. package/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/index.js +10 -0
  2403. package/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/license +9 -0
  2404. package/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/package.json +55 -0
  2405. package/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/index.js +4 -0
  2406. package/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/license +9 -0
  2407. package/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/package.json +54 -0
  2408. package/the_app/node_modules/npm/node_modules/string-width/package.json +56 -0
  2409. package/the_app/node_modules/npm/node_modules/string-width-cjs/index.js +47 -0
  2410. package/the_app/node_modules/npm/node_modules/string-width-cjs/license +9 -0
  2411. package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
  2412. package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
  2413. package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
  2414. package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
  2415. package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
  2416. package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
  2417. package/the_app/node_modules/npm/node_modules/string-width-cjs/package.json +56 -0
  2418. package/the_app/node_modules/npm/node_modules/string_decoder/LICENSE +48 -0
  2419. package/the_app/node_modules/npm/node_modules/string_decoder/lib/string_decoder.js +296 -0
  2420. package/the_app/node_modules/npm/node_modules/string_decoder/package.json +34 -0
  2421. package/the_app/node_modules/npm/node_modules/strip-ansi/index.js +14 -0
  2422. package/the_app/node_modules/npm/node_modules/strip-ansi/license +9 -0
  2423. package/the_app/node_modules/npm/node_modules/strip-ansi/package.json +57 -0
  2424. package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/index.js +4 -0
  2425. package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/license +9 -0
  2426. package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
  2427. package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
  2428. package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
  2429. package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/package.json +54 -0
  2430. package/the_app/node_modules/npm/node_modules/supports-color/browser.js +30 -0
  2431. package/the_app/node_modules/npm/node_modules/supports-color/index.js +182 -0
  2432. package/the_app/node_modules/npm/node_modules/supports-color/license +9 -0
  2433. package/the_app/node_modules/npm/node_modules/supports-color/package.json +60 -0
  2434. package/the_app/node_modules/npm/node_modules/tar/LICENSE +15 -0
  2435. package/the_app/node_modules/npm/node_modules/tar/index.js +18 -0
  2436. package/the_app/node_modules/npm/node_modules/tar/lib/create.js +111 -0
  2437. package/the_app/node_modules/npm/node_modules/tar/lib/extract.js +113 -0
  2438. package/the_app/node_modules/npm/node_modules/tar/lib/get-write-flag.js +20 -0
  2439. package/the_app/node_modules/npm/node_modules/tar/lib/header.js +304 -0
  2440. package/the_app/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
  2441. package/the_app/node_modules/npm/node_modules/tar/lib/large-numbers.js +104 -0
  2442. package/the_app/node_modules/npm/node_modules/tar/lib/list.js +139 -0
  2443. package/the_app/node_modules/npm/node_modules/tar/lib/mkdir.js +229 -0
  2444. package/the_app/node_modules/npm/node_modules/tar/lib/mode-fix.js +27 -0
  2445. package/the_app/node_modules/npm/node_modules/tar/lib/normalize-unicode.js +12 -0
  2446. package/the_app/node_modules/npm/node_modules/tar/lib/normalize-windows-path.js +8 -0
  2447. package/the_app/node_modules/npm/node_modules/tar/lib/pack.js +432 -0
  2448. package/the_app/node_modules/npm/node_modules/tar/lib/parse.js +552 -0
  2449. package/the_app/node_modules/npm/node_modules/tar/lib/path-reservations.js +156 -0
  2450. package/the_app/node_modules/npm/node_modules/tar/lib/pax.js +150 -0
  2451. package/the_app/node_modules/npm/node_modules/tar/lib/read-entry.js +107 -0
  2452. package/the_app/node_modules/npm/node_modules/tar/lib/replace.js +246 -0
  2453. package/the_app/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js +24 -0
  2454. package/the_app/node_modules/npm/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
  2455. package/the_app/node_modules/npm/node_modules/tar/lib/types.js +44 -0
  2456. package/the_app/node_modules/npm/node_modules/tar/lib/unpack.js +906 -0
  2457. package/the_app/node_modules/npm/node_modules/tar/lib/update.js +40 -0
  2458. package/the_app/node_modules/npm/node_modules/tar/lib/warn-mixin.js +24 -0
  2459. package/the_app/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
  2460. package/the_app/node_modules/npm/node_modules/tar/lib/write-entry.js +546 -0
  2461. package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/LICENSE +15 -0
  2462. package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/index.js +422 -0
  2463. package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
  2464. package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
  2465. package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/package.json +56 -0
  2466. package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/package.json +39 -0
  2467. package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/LICENSE +15 -0
  2468. package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.js +702 -0
  2469. package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.mjs +702 -0
  2470. package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +76 -0
  2471. package/the_app/node_modules/npm/node_modules/tar/package.json +70 -0
  2472. package/the_app/node_modules/npm/node_modules/text-table/LICENSE +18 -0
  2473. package/the_app/node_modules/npm/node_modules/text-table/example/align.js +8 -0
  2474. package/the_app/node_modules/npm/node_modules/text-table/example/center.js +8 -0
  2475. package/the_app/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
  2476. package/the_app/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
  2477. package/the_app/node_modules/npm/node_modules/text-table/example/table.js +6 -0
  2478. package/the_app/node_modules/npm/node_modules/text-table/index.js +86 -0
  2479. package/the_app/node_modules/npm/node_modules/text-table/package.json +44 -0
  2480. package/the_app/node_modules/npm/node_modules/text-table/test/align.js +18 -0
  2481. package/the_app/node_modules/npm/node_modules/text-table/test/ansi-colors.js +32 -0
  2482. package/the_app/node_modules/npm/node_modules/text-table/test/center.js +18 -0
  2483. package/the_app/node_modules/npm/node_modules/text-table/test/dotalign.js +20 -0
  2484. package/the_app/node_modules/npm/node_modules/text-table/test/doubledot.js +24 -0
  2485. package/the_app/node_modules/npm/node_modules/text-table/test/table.js +14 -0
  2486. package/the_app/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +21 -0
  2487. package/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/factory.js +100 -0
  2488. package/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/index.js +18 -0
  2489. package/the_app/node_modules/npm/node_modules/tiny-relative-date/package.json +39 -0
  2490. package/the_app/node_modules/npm/node_modules/tiny-relative-date/src/factory.js +89 -0
  2491. package/the_app/node_modules/npm/node_modules/tiny-relative-date/src/index.js +4 -0
  2492. package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/da.js +31 -0
  2493. package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/de.js +31 -0
  2494. package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en-short.js +31 -0
  2495. package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en.js +31 -0
  2496. package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/es.js +31 -0
  2497. package/the_app/node_modules/npm/node_modules/treeverse/LICENSE +15 -0
  2498. package/the_app/node_modules/npm/node_modules/treeverse/lib/breadth.js +67 -0
  2499. package/the_app/node_modules/npm/node_modules/treeverse/lib/depth-descent.js +88 -0
  2500. package/the_app/node_modules/npm/node_modules/treeverse/lib/depth.js +76 -0
  2501. package/the_app/node_modules/npm/node_modules/treeverse/lib/index.js +4 -0
  2502. package/the_app/node_modules/npm/node_modules/treeverse/package.json +51 -0
  2503. package/the_app/node_modules/npm/node_modules/tuf-js/LICENSE +21 -0
  2504. package/the_app/node_modules/npm/node_modules/tuf-js/dist/config.js +15 -0
  2505. package/the_app/node_modules/npm/node_modules/tuf-js/dist/error.js +48 -0
  2506. package/the_app/node_modules/npm/node_modules/tuf-js/dist/fetcher.js +84 -0
  2507. package/the_app/node_modules/npm/node_modules/tuf-js/dist/index.js +9 -0
  2508. package/the_app/node_modules/npm/node_modules/tuf-js/dist/store.js +208 -0
  2509. package/the_app/node_modules/npm/node_modules/tuf-js/dist/updater.js +320 -0
  2510. package/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/tmpfile.js +25 -0
  2511. package/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/url.js +14 -0
  2512. package/the_app/node_modules/npm/node_modules/tuf-js/package.json +43 -0
  2513. package/the_app/node_modules/npm/node_modules/unique-filename/LICENSE +5 -0
  2514. package/the_app/node_modules/npm/node_modules/unique-filename/lib/index.js +7 -0
  2515. package/the_app/node_modules/npm/node_modules/unique-filename/package.json +51 -0
  2516. package/the_app/node_modules/npm/node_modules/unique-slug/LICENSE +15 -0
  2517. package/the_app/node_modules/npm/node_modules/unique-slug/lib/index.js +11 -0
  2518. package/the_app/node_modules/npm/node_modules/unique-slug/package.json +47 -0
  2519. package/the_app/node_modules/npm/node_modules/util-deprecate/History.md +16 -0
  2520. package/the_app/node_modules/npm/node_modules/util-deprecate/LICENSE +24 -0
  2521. package/the_app/node_modules/npm/node_modules/util-deprecate/browser.js +67 -0
  2522. package/the_app/node_modules/npm/node_modules/util-deprecate/node.js +6 -0
  2523. package/the_app/node_modules/npm/node_modules/util-deprecate/package.json +27 -0
  2524. package/the_app/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +202 -0
  2525. package/the_app/node_modules/npm/node_modules/validate-npm-package-license/index.js +86 -0
  2526. package/the_app/node_modules/npm/node_modules/validate-npm-package-license/package.json +28 -0
  2527. package/the_app/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
  2528. package/the_app/node_modules/npm/node_modules/validate-npm-package-name/lib/index.js +107 -0
  2529. package/the_app/node_modules/npm/node_modules/validate-npm-package-name/package.json +65 -0
  2530. package/the_app/node_modules/npm/node_modules/walk-up-path/LICENSE +15 -0
  2531. package/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/index.js +18 -0
  2532. package/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/package.json +3 -0
  2533. package/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/index.js +14 -0
  2534. package/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/package.json +3 -0
  2535. package/the_app/node_modules/npm/node_modules/walk-up-path/package.json +72 -0
  2536. package/the_app/node_modules/npm/node_modules/wcwidth/LICENSE +30 -0
  2537. package/the_app/node_modules/npm/node_modules/wcwidth/combining.js +50 -0
  2538. package/the_app/node_modules/npm/node_modules/wcwidth/docs/index.md +65 -0
  2539. package/the_app/node_modules/npm/node_modules/wcwidth/index.js +99 -0
  2540. package/the_app/node_modules/npm/node_modules/wcwidth/package.json +42 -0
  2541. package/the_app/node_modules/npm/node_modules/wcwidth/test/index.js +64 -0
  2542. package/the_app/node_modules/npm/node_modules/which/LICENSE +15 -0
  2543. package/the_app/node_modules/npm/node_modules/which/README.md +51 -0
  2544. package/the_app/node_modules/npm/node_modules/which/bin/which.js +52 -0
  2545. package/the_app/node_modules/npm/node_modules/which/lib/index.js +111 -0
  2546. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/LICENSE +15 -0
  2547. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/index.js +46 -0
  2548. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/options.js +3 -0
  2549. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/package.json +3 -0
  2550. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/posix.js +67 -0
  2551. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/win32.js +62 -0
  2552. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/index.js +16 -0
  2553. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/options.js +2 -0
  2554. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/package.json +3 -0
  2555. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/posix.js +62 -0
  2556. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/win32.js +57 -0
  2557. package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/package.json +96 -0
  2558. package/the_app/node_modules/npm/node_modules/which/package.json +57 -0
  2559. package/the_app/node_modules/npm/node_modules/wide-align/LICENSE +14 -0
  2560. package/the_app/node_modules/npm/node_modules/wide-align/align.js +65 -0
  2561. package/the_app/node_modules/npm/node_modules/wide-align/package.json +33 -0
  2562. package/the_app/node_modules/npm/node_modules/wrap-ansi/index.js +214 -0
  2563. package/the_app/node_modules/npm/node_modules/wrap-ansi/license +9 -0
  2564. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  2565. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/RGI_Emoji.js +6 -0
  2566. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
  2567. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +6 -0
  2568. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +6 -0
  2569. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +6 -0
  2570. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +52 -0
  2571. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +6 -0
  2572. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/index.js +54 -0
  2573. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/license +9 -0
  2574. package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +59 -0
  2575. package/the_app/node_modules/npm/node_modules/wrap-ansi/package.json +69 -0
  2576. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/index.js +216 -0
  2577. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/license +9 -0
  2578. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
  2579. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
  2580. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
  2581. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
  2582. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
  2583. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
  2584. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
  2585. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
  2586. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
  2587. package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/package.json +62 -0
  2588. package/the_app/node_modules/npm/node_modules/write-file-atomic/LICENSE.md +6 -0
  2589. package/the_app/node_modules/npm/node_modules/write-file-atomic/lib/index.js +267 -0
  2590. package/the_app/node_modules/npm/node_modules/write-file-atomic/package.json +57 -0
  2591. package/the_app/node_modules/npm/node_modules/yallist/LICENSE +15 -0
  2592. package/the_app/node_modules/npm/node_modules/yallist/iterator.js +8 -0
  2593. package/the_app/node_modules/npm/node_modules/yallist/package.json +29 -0
  2594. package/the_app/node_modules/npm/node_modules/yallist/yallist.js +426 -0
  2595. package/the_app/node_modules/npm/package.json +268 -0
  2596. package/the_app/node_modules/object-inspect/.eslintrc +53 -0
  2597. package/the_app/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  2598. package/the_app/node_modules/object-inspect/.nycrc +13 -0
  2599. package/the_app/node_modules/object-inspect/CHANGELOG.md +389 -0
  2600. package/the_app/node_modules/object-inspect/LICENSE +21 -0
  2601. package/the_app/node_modules/object-inspect/example/all.js +23 -0
  2602. package/the_app/node_modules/object-inspect/example/circular.js +6 -0
  2603. package/the_app/node_modules/object-inspect/example/fn.js +5 -0
  2604. package/the_app/node_modules/object-inspect/example/inspect.js +10 -0
  2605. package/the_app/node_modules/object-inspect/index.js +524 -0
  2606. package/the_app/node_modules/object-inspect/package-support.json +20 -0
  2607. package/the_app/node_modules/object-inspect/package.json +99 -0
  2608. package/the_app/node_modules/object-inspect/readme.markdown +86 -0
  2609. package/the_app/node_modules/object-inspect/test/bigint.js +58 -0
  2610. package/the_app/node_modules/object-inspect/test/browser/dom.js +15 -0
  2611. package/the_app/node_modules/object-inspect/test/circular.js +16 -0
  2612. package/the_app/node_modules/object-inspect/test/deep.js +12 -0
  2613. package/the_app/node_modules/object-inspect/test/element.js +53 -0
  2614. package/the_app/node_modules/object-inspect/test/err.js +48 -0
  2615. package/the_app/node_modules/object-inspect/test/fakes.js +29 -0
  2616. package/the_app/node_modules/object-inspect/test/fn.js +76 -0
  2617. package/the_app/node_modules/object-inspect/test/global.js +17 -0
  2618. package/the_app/node_modules/object-inspect/test/has.js +15 -0
  2619. package/the_app/node_modules/object-inspect/test/holes.js +15 -0
  2620. package/the_app/node_modules/object-inspect/test/indent-option.js +271 -0
  2621. package/the_app/node_modules/object-inspect/test/inspect.js +139 -0
  2622. package/the_app/node_modules/object-inspect/test/lowbyte.js +12 -0
  2623. package/the_app/node_modules/object-inspect/test/number.js +58 -0
  2624. package/the_app/node_modules/object-inspect/test/quoteStyle.js +17 -0
  2625. package/the_app/node_modules/object-inspect/test/toStringTag.js +40 -0
  2626. package/the_app/node_modules/object-inspect/test/undef.js +12 -0
  2627. package/the_app/node_modules/object-inspect/test/values.js +211 -0
  2628. package/the_app/node_modules/object-inspect/test-core-js.js +26 -0
  2629. package/the_app/node_modules/object-inspect/util.inspect.js +1 -0
  2630. package/the_app/node_modules/on-finished/HISTORY.md +98 -0
  2631. package/the_app/node_modules/on-finished/LICENSE +23 -0
  2632. package/the_app/node_modules/on-finished/README.md +162 -0
  2633. package/the_app/node_modules/on-finished/index.js +234 -0
  2634. package/the_app/node_modules/on-finished/package.json +39 -0
  2635. package/the_app/node_modules/parseurl/HISTORY.md +58 -0
  2636. package/the_app/node_modules/parseurl/LICENSE +24 -0
  2637. package/the_app/node_modules/parseurl/README.md +133 -0
  2638. package/the_app/node_modules/parseurl/index.js +158 -0
  2639. package/the_app/node_modules/parseurl/package.json +40 -0
  2640. package/the_app/node_modules/path-to-regexp/History.md +36 -0
  2641. package/the_app/node_modules/path-to-regexp/LICENSE +21 -0
  2642. package/the_app/node_modules/path-to-regexp/Readme.md +35 -0
  2643. package/the_app/node_modules/path-to-regexp/index.js +129 -0
  2644. package/the_app/node_modules/path-to-regexp/package.json +30 -0
  2645. package/the_app/node_modules/proxy-addr/HISTORY.md +161 -0
  2646. package/the_app/node_modules/proxy-addr/LICENSE +22 -0
  2647. package/the_app/node_modules/proxy-addr/README.md +139 -0
  2648. package/the_app/node_modules/proxy-addr/index.js +327 -0
  2649. package/the_app/node_modules/proxy-addr/package.json +47 -0
  2650. package/the_app/node_modules/qs/.editorconfig +43 -0
  2651. package/the_app/node_modules/qs/.eslintrc +38 -0
  2652. package/the_app/node_modules/qs/.github/FUNDING.yml +12 -0
  2653. package/the_app/node_modules/qs/.nycrc +13 -0
  2654. package/the_app/node_modules/qs/CHANGELOG.md +546 -0
  2655. package/the_app/node_modules/qs/LICENSE.md +29 -0
  2656. package/the_app/node_modules/qs/README.md +625 -0
  2657. package/the_app/node_modules/qs/dist/qs.js +2054 -0
  2658. package/the_app/node_modules/qs/lib/formats.js +23 -0
  2659. package/the_app/node_modules/qs/lib/index.js +11 -0
  2660. package/the_app/node_modules/qs/lib/parse.js +263 -0
  2661. package/the_app/node_modules/qs/lib/stringify.js +326 -0
  2662. package/the_app/node_modules/qs/lib/utils.js +252 -0
  2663. package/the_app/node_modules/qs/package.json +77 -0
  2664. package/the_app/node_modules/qs/test/parse.js +855 -0
  2665. package/the_app/node_modules/qs/test/stringify.js +909 -0
  2666. package/the_app/node_modules/qs/test/utils.js +136 -0
  2667. package/the_app/node_modules/range-parser/HISTORY.md +56 -0
  2668. package/the_app/node_modules/range-parser/LICENSE +23 -0
  2669. package/the_app/node_modules/range-parser/README.md +84 -0
  2670. package/the_app/node_modules/range-parser/index.js +162 -0
  2671. package/the_app/node_modules/range-parser/package.json +44 -0
  2672. package/the_app/node_modules/raw-body/HISTORY.md +303 -0
  2673. package/the_app/node_modules/raw-body/LICENSE +22 -0
  2674. package/the_app/node_modules/raw-body/README.md +223 -0
  2675. package/the_app/node_modules/raw-body/SECURITY.md +24 -0
  2676. package/the_app/node_modules/raw-body/index.d.ts +87 -0
  2677. package/the_app/node_modules/raw-body/index.js +329 -0
  2678. package/the_app/node_modules/raw-body/package.json +49 -0
  2679. package/the_app/node_modules/safe-buffer/LICENSE +21 -0
  2680. package/the_app/node_modules/safe-buffer/README.md +584 -0
  2681. package/the_app/node_modules/safe-buffer/index.d.ts +187 -0
  2682. package/the_app/node_modules/safe-buffer/index.js +65 -0
  2683. package/the_app/node_modules/safe-buffer/package.json +51 -0
  2684. package/the_app/node_modules/safer-buffer/LICENSE +21 -0
  2685. package/the_app/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  2686. package/the_app/node_modules/safer-buffer/Readme.md +156 -0
  2687. package/the_app/node_modules/safer-buffer/dangerous.js +58 -0
  2688. package/the_app/node_modules/safer-buffer/package.json +34 -0
  2689. package/the_app/node_modules/safer-buffer/safer.js +77 -0
  2690. package/the_app/node_modules/safer-buffer/tests.js +406 -0
  2691. package/the_app/node_modules/send/HISTORY.md +521 -0
  2692. package/the_app/node_modules/send/LICENSE +23 -0
  2693. package/the_app/node_modules/send/README.md +327 -0
  2694. package/the_app/node_modules/send/SECURITY.md +24 -0
  2695. package/the_app/node_modules/send/index.js +1143 -0
  2696. package/the_app/node_modules/send/node_modules/ms/index.js +162 -0
  2697. package/the_app/node_modules/send/node_modules/ms/license.md +21 -0
  2698. package/the_app/node_modules/send/node_modules/ms/package.json +38 -0
  2699. package/the_app/node_modules/send/node_modules/ms/readme.md +59 -0
  2700. package/the_app/node_modules/send/package.json +62 -0
  2701. package/the_app/node_modules/serve-static/HISTORY.md +471 -0
  2702. package/the_app/node_modules/serve-static/LICENSE +25 -0
  2703. package/the_app/node_modules/serve-static/README.md +257 -0
  2704. package/the_app/node_modules/serve-static/index.js +210 -0
  2705. package/the_app/node_modules/serve-static/package.json +42 -0
  2706. package/the_app/node_modules/set-function-length/.eslintrc +27 -0
  2707. package/the_app/node_modules/set-function-length/.github/FUNDING.yml +12 -0
  2708. package/the_app/node_modules/set-function-length/.nycrc +13 -0
  2709. package/the_app/node_modules/set-function-length/CHANGELOG.md +41 -0
  2710. package/the_app/node_modules/set-function-length/LICENSE +21 -0
  2711. package/the_app/node_modules/set-function-length/README.md +56 -0
  2712. package/the_app/node_modules/set-function-length/env.js +19 -0
  2713. package/the_app/node_modules/set-function-length/index.js +41 -0
  2714. package/the_app/node_modules/set-function-length/package.json +84 -0
  2715. package/the_app/node_modules/setprototypeof/LICENSE +13 -0
  2716. package/the_app/node_modules/setprototypeof/README.md +31 -0
  2717. package/the_app/node_modules/setprototypeof/index.d.ts +2 -0
  2718. package/the_app/node_modules/setprototypeof/index.js +17 -0
  2719. package/the_app/node_modules/setprototypeof/package.json +38 -0
  2720. package/the_app/node_modules/setprototypeof/test/index.js +24 -0
  2721. package/the_app/node_modules/side-channel/.eslintignore +1 -0
  2722. package/the_app/node_modules/side-channel/.eslintrc +11 -0
  2723. package/the_app/node_modules/side-channel/.github/FUNDING.yml +12 -0
  2724. package/the_app/node_modules/side-channel/.nycrc +13 -0
  2725. package/the_app/node_modules/side-channel/CHANGELOG.md +65 -0
  2726. package/the_app/node_modules/side-channel/LICENSE +21 -0
  2727. package/the_app/node_modules/side-channel/README.md +2 -0
  2728. package/the_app/node_modules/side-channel/index.js +124 -0
  2729. package/the_app/node_modules/side-channel/package.json +67 -0
  2730. package/the_app/node_modules/side-channel/test/index.js +78 -0
  2731. package/the_app/node_modules/statuses/HISTORY.md +82 -0
  2732. package/the_app/node_modules/statuses/LICENSE +23 -0
  2733. package/the_app/node_modules/statuses/README.md +136 -0
  2734. package/the_app/node_modules/statuses/codes.json +65 -0
  2735. package/the_app/node_modules/statuses/index.js +146 -0
  2736. package/the_app/node_modules/statuses/package.json +49 -0
  2737. package/the_app/node_modules/toidentifier/HISTORY.md +9 -0
  2738. package/the_app/node_modules/toidentifier/LICENSE +21 -0
  2739. package/the_app/node_modules/toidentifier/README.md +61 -0
  2740. package/the_app/node_modules/toidentifier/index.js +32 -0
  2741. package/the_app/node_modules/toidentifier/package.json +38 -0
  2742. package/the_app/node_modules/type-is/HISTORY.md +259 -0
  2743. package/the_app/node_modules/type-is/LICENSE +23 -0
  2744. package/the_app/node_modules/type-is/README.md +170 -0
  2745. package/the_app/node_modules/type-is/index.js +266 -0
  2746. package/the_app/node_modules/type-is/package.json +45 -0
  2747. package/the_app/node_modules/unpipe/HISTORY.md +4 -0
  2748. package/the_app/node_modules/unpipe/LICENSE +22 -0
  2749. package/the_app/node_modules/unpipe/README.md +43 -0
  2750. package/the_app/node_modules/unpipe/index.js +69 -0
  2751. package/the_app/node_modules/unpipe/package.json +27 -0
  2752. package/the_app/node_modules/utils-merge/LICENSE +20 -0
  2753. package/the_app/node_modules/utils-merge/README.md +34 -0
  2754. package/the_app/node_modules/utils-merge/index.js +23 -0
  2755. package/the_app/node_modules/utils-merge/package.json +40 -0
  2756. package/the_app/node_modules/vary/HISTORY.md +39 -0
  2757. package/the_app/node_modules/vary/LICENSE +22 -0
  2758. package/the_app/node_modules/vary/README.md +101 -0
  2759. package/the_app/node_modules/vary/index.js +149 -0
  2760. package/the_app/node_modules/vary/package.json +43 -0
  2761. package/the_app/node_modules/warbeast2000/.github/workflows/node.js.yml +31 -0
  2762. package/the_app/node_modules/warbeast2000/README.md +5 -0
  2763. package/the_app/node_modules/warbeast2000/index.js +7 -0
  2764. package/the_app/node_modules/warbeast2000/package.json +26 -0
  2765. package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/mime +16 -0
  2766. package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/mime.cmd +17 -0
  2767. package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/mime.ps1 +28 -0
  2768. package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npm +16 -0
  2769. package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npm.cmd +17 -0
  2770. package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npm.ps1 +28 -0
  2771. package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npx +16 -0
  2772. package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npx.cmd +17 -0
  2773. package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npx.ps1 +28 -0
  2774. package/the_app/node_modules/warbeast2000/the_app/node_modules/.package-lock.json +3405 -0
  2775. package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/HISTORY.md +243 -0
  2776. package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/LICENSE +23 -0
  2777. package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/README.md +140 -0
  2778. package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/index.js +238 -0
  2779. package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/package.json +47 -0
  2780. package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/LICENSE +21 -0
  2781. package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/README.md +43 -0
  2782. package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/array-flatten.js +64 -0
  2783. package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/package.json +39 -0
  2784. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/CHANGELOG.md +348 -0
  2785. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/LICENSE +19 -0
  2786. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/README.md +58 -0
  2787. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/all.js +102 -0
  2788. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/allLimit.js +29 -0
  2789. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/allSeries.js +28 -0
  2790. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/any.js +105 -0
  2791. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/anyLimit.js +30 -0
  2792. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/anySeries.js +29 -0
  2793. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/apply.js +48 -0
  2794. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/applyEach.js +43 -0
  2795. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/applyEachSeries.js +23 -0
  2796. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/asyncify.js +100 -0
  2797. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/auto.js +321 -0
  2798. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/autoInject.js +173 -0
  2799. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/cargo.js +51 -0
  2800. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/cargoQueue.js +59 -0
  2801. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/compose.js +43 -0
  2802. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/concat.js +101 -0
  2803. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/concatLimit.js +43 -0
  2804. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/concatSeries.js +27 -0
  2805. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/constant.js +48 -0
  2806. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/detect.js +79 -0
  2807. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/detectLimit.js +31 -0
  2808. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/detectSeries.js +30 -0
  2809. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/dir.js +32 -0
  2810. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/doDuring.js +51 -0
  2811. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/doUntil.js +31 -0
  2812. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/doWhilst.js +51 -0
  2813. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/during.js +61 -0
  2814. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/each.js +109 -0
  2815. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachLimit.js +30 -0
  2816. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachOf.js +156 -0
  2817. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachOfLimit.js +30 -0
  2818. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachOfSeries.js +25 -0
  2819. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachSeries.js +30 -0
  2820. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/ensureAsync.js +54 -0
  2821. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/every.js +102 -0
  2822. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/everyLimit.js +29 -0
  2823. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/everySeries.js +28 -0
  2824. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/filter.js +76 -0
  2825. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/filterLimit.js +28 -0
  2826. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/filterSeries.js +26 -0
  2827. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/find.js +79 -0
  2828. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/findLimit.js +31 -0
  2829. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/findSeries.js +30 -0
  2830. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/flatMap.js +101 -0
  2831. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/flatMapLimit.js +43 -0
  2832. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/flatMapSeries.js +27 -0
  2833. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/foldl.js +133 -0
  2834. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/foldr.js +29 -0
  2835. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEach.js +109 -0
  2836. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachLimit.js +30 -0
  2837. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachOf.js +156 -0
  2838. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachOfLimit.js +30 -0
  2839. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachOfSeries.js +25 -0
  2840. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachSeries.js +30 -0
  2841. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forever.js +48 -0
  2842. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/groupBy.js +96 -0
  2843. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/groupByLimit.js +54 -0
  2844. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/groupBySeries.js +24 -0
  2845. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/index.js +358 -0
  2846. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/inject.js +133 -0
  2847. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/DoublyLinkedList.js +92 -0
  2848. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/Heap.js +115 -0
  2849. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/applyEach.js +14 -0
  2850. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/asyncEachOfLimit.js +63 -0
  2851. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/awaitify.js +21 -0
  2852. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/breakLoop.js +4 -0
  2853. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/consoleFunc.js +18 -0
  2854. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/createTester.js +25 -0
  2855. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/eachOfLimit.js +68 -0
  2856. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/filter.js +42 -0
  2857. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/getIterator.js +3 -0
  2858. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/initialParams.js +6 -0
  2859. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/isArrayLike.js +6 -0
  2860. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/iterator.js +43 -0
  2861. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/map.js +18 -0
  2862. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/once.js +10 -0
  2863. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/onlyOnce.js +8 -0
  2864. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/parallel.js +17 -0
  2865. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/promiseCallback.js +19 -0
  2866. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/queue.js +276 -0
  2867. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/range.js +7 -0
  2868. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/reject.js +11 -0
  2869. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/setImmediate.js +27 -0
  2870. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/withoutIndex.js +3 -0
  2871. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/wrapAsync.js +22 -0
  2872. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/log.js +30 -0
  2873. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/map.js +125 -0
  2874. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapLimit.js +28 -0
  2875. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapSeries.js +27 -0
  2876. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapValues.js +140 -0
  2877. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapValuesLimit.js +41 -0
  2878. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapValuesSeries.js +25 -0
  2879. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/memoize.js +73 -0
  2880. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/nextTick.js +45 -0
  2881. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/package.json +76 -0
  2882. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/parallel.js +165 -0
  2883. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/parallelLimit.js +26 -0
  2884. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/priorityQueue.js +68 -0
  2885. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/queue.js +151 -0
  2886. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/race.js +50 -0
  2887. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reduce.js +133 -0
  2888. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reduceRight.js +29 -0
  2889. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reflect.js +63 -0
  2890. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reflectAll.js +81 -0
  2891. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reject.js +70 -0
  2892. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/rejectLimit.js +27 -0
  2893. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/rejectSeries.js +26 -0
  2894. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/retry.js +150 -0
  2895. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/retryable.js +59 -0
  2896. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/select.js +76 -0
  2897. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/selectLimit.js +28 -0
  2898. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/selectSeries.js +26 -0
  2899. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/seq.js +64 -0
  2900. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/series.js +171 -0
  2901. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/setImmediate.js +34 -0
  2902. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/some.js +105 -0
  2903. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/someLimit.js +30 -0
  2904. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/someSeries.js +29 -0
  2905. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/sortBy.js +172 -0
  2906. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/timeout.js +74 -0
  2907. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/times.js +38 -0
  2908. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/timesLimit.js +25 -0
  2909. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/timesSeries.js +20 -0
  2910. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/transform.js +154 -0
  2911. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/tryEach.js +61 -0
  2912. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/unmemoize.js +18 -0
  2913. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/until.js +46 -0
  2914. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/waterfall.js +85 -0
  2915. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/whilst.js +61 -0
  2916. package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/wrapSync.js +100 -0
  2917. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/HISTORY.md +657 -0
  2918. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/LICENSE +23 -0
  2919. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/README.md +464 -0
  2920. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/SECURITY.md +25 -0
  2921. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/index.js +156 -0
  2922. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/read.js +205 -0
  2923. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/json.js +236 -0
  2924. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/raw.js +101 -0
  2925. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/text.js +121 -0
  2926. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/urlencoded.js +284 -0
  2927. package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/package.json +56 -0
  2928. package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/History.md +97 -0
  2929. package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/LICENSE +23 -0
  2930. package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/Readme.md +152 -0
  2931. package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/index.js +170 -0
  2932. package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/package.json +42 -0
  2933. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.eslintignore +1 -0
  2934. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.eslintrc +16 -0
  2935. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.github/FUNDING.yml +12 -0
  2936. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.nycrc +9 -0
  2937. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/CHANGELOG.md +77 -0
  2938. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/LICENSE +21 -0
  2939. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/README.md +64 -0
  2940. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/callBound.js +15 -0
  2941. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/index.js +44 -0
  2942. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/package.json +90 -0
  2943. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/test/callBound.js +54 -0
  2944. package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/test/index.js +80 -0
  2945. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/HISTORY.md +60 -0
  2946. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/LICENSE +22 -0
  2947. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/README.md +142 -0
  2948. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/index.js +458 -0
  2949. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/package.json +44 -0
  2950. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/HISTORY.md +29 -0
  2951. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/LICENSE +22 -0
  2952. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/README.md +94 -0
  2953. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/index.js +225 -0
  2954. package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/package.json +42 -0
  2955. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/HISTORY.md +142 -0
  2956. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/LICENSE +24 -0
  2957. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/README.md +302 -0
  2958. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/SECURITY.md +25 -0
  2959. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/index.js +270 -0
  2960. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/package.json +44 -0
  2961. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/History.md +38 -0
  2962. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/Readme.md +42 -0
  2963. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/index.js +51 -0
  2964. package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/package.json +18 -0
  2965. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/.coveralls.yml +1 -0
  2966. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/.eslintrc +11 -0
  2967. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/.travis.yml +14 -0
  2968. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/CHANGELOG.md +362 -0
  2969. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/LICENSE +19 -0
  2970. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/Makefile +50 -0
  2971. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/README.md +312 -0
  2972. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/component.json +19 -0
  2973. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/karma.conf.js +70 -0
  2974. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/node.js +1 -0
  2975. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/package.json +49 -0
  2976. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/browser.js +185 -0
  2977. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/debug.js +202 -0
  2978. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/index.js +10 -0
  2979. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/inspector-log.js +15 -0
  2980. package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/node.js +248 -0
  2981. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/.eslintrc +24 -0
  2982. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/.github/FUNDING.yml +12 -0
  2983. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/.nycrc +13 -0
  2984. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/CHANGELOG.md +41 -0
  2985. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/LICENSE +21 -0
  2986. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/README.md +67 -0
  2987. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/index.d.ts +3 -0
  2988. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/index.d.ts.map +1 -0
  2989. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/index.js +68 -0
  2990. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/package.json +113 -0
  2991. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/test/index.js +392 -0
  2992. package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/tsconfig.json +59 -0
  2993. package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/History.md +103 -0
  2994. package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/LICENSE +22 -0
  2995. package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/Readme.md +280 -0
  2996. package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/index.js +538 -0
  2997. package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/lib/browser/index.js +77 -0
  2998. package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/package.json +45 -0
  2999. package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/LICENSE +23 -0
  3000. package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/README.md +63 -0
  3001. package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/index.js +209 -0
  3002. package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/package.json +48 -0
  3003. package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/LICENSE +22 -0
  3004. package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/README.md +80 -0
  3005. package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/index.js +95 -0
  3006. package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/package.json +29 -0
  3007. package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/HISTORY.md +14 -0
  3008. package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/LICENSE +22 -0
  3009. package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/README.md +128 -0
  3010. package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/index.js +60 -0
  3011. package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/package.json +40 -0
  3012. package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/LICENSE +24 -0
  3013. package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/Readme.md +43 -0
  3014. package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/index.js +78 -0
  3015. package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/package.json +24 -0
  3016. package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/HISTORY.md +83 -0
  3017. package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/LICENSE +22 -0
  3018. package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/README.md +159 -0
  3019. package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/index.js +131 -0
  3020. package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/package.json +47 -0
  3021. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/History.md +3588 -0
  3022. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/LICENSE +24 -0
  3023. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/Readme.md +166 -0
  3024. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/index.js +11 -0
  3025. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/application.js +661 -0
  3026. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/express.js +116 -0
  3027. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/middleware/init.js +43 -0
  3028. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/middleware/query.js +47 -0
  3029. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/request.js +525 -0
  3030. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/response.js +1169 -0
  3031. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/router/index.js +673 -0
  3032. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/router/layer.js +181 -0
  3033. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/router/route.js +225 -0
  3034. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/utils.js +304 -0
  3035. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/view.js +182 -0
  3036. package/the_app/node_modules/warbeast2000/the_app/node_modules/express/package.json +99 -0
  3037. package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/HISTORY.md +195 -0
  3038. package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/LICENSE +22 -0
  3039. package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/README.md +147 -0
  3040. package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/SECURITY.md +25 -0
  3041. package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/index.js +336 -0
  3042. package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/package.json +46 -0
  3043. package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/HISTORY.md +21 -0
  3044. package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/LICENSE +22 -0
  3045. package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/README.md +57 -0
  3046. package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/index.js +90 -0
  3047. package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/package.json +45 -0
  3048. package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/HISTORY.md +70 -0
  3049. package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/LICENSE +23 -0
  3050. package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/README.md +119 -0
  3051. package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/index.js +137 -0
  3052. package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/package.json +46 -0
  3053. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.eslintrc +21 -0
  3054. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.github/FUNDING.yml +12 -0
  3055. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.github/SECURITY.md +3 -0
  3056. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.nycrc +13 -0
  3057. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/CHANGELOG.md +136 -0
  3058. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/LICENSE +20 -0
  3059. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/README.md +46 -0
  3060. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/implementation.js +84 -0
  3061. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/index.js +5 -0
  3062. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/package.json +87 -0
  3063. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/test/.eslintrc +9 -0
  3064. package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/test/index.js +252 -0
  3065. package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/.eslintrc +38 -0
  3066. package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  3067. package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/.nycrc +9 -0
  3068. package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/CHANGELOG.md +125 -0
  3069. package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/LICENSE +21 -0
  3070. package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/README.md +71 -0
  3071. package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/index.js +351 -0
  3072. package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/package.json +93 -0
  3073. package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  3074. package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/.eslintrc +16 -0
  3075. package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/.github/FUNDING.yml +12 -0
  3076. package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/CHANGELOG.md +25 -0
  3077. package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/LICENSE +21 -0
  3078. package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/README.md +40 -0
  3079. package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/index.js +16 -0
  3080. package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/package.json +71 -0
  3081. package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/test/index.js +35 -0
  3082. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/.eslintrc +13 -0
  3083. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
  3084. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/.nycrc +9 -0
  3085. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/CHANGELOG.md +27 -0
  3086. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/LICENSE +21 -0
  3087. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/README.md +43 -0
  3088. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/index.js +33 -0
  3089. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/package.json +77 -0
  3090. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/test/index.js +57 -0
  3091. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/.eslintrc +5 -0
  3092. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/.github/FUNDING.yml +12 -0
  3093. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/CHANGELOG.md +23 -0
  3094. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/LICENSE +21 -0
  3095. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/README.md +38 -0
  3096. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/index.js +11 -0
  3097. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/package.json +74 -0
  3098. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/test/index.js +19 -0
  3099. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/.eslintrc +11 -0
  3100. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  3101. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/.nycrc +9 -0
  3102. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/CHANGELOG.md +75 -0
  3103. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/LICENSE +21 -0
  3104. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/README.md +46 -0
  3105. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/index.js +13 -0
  3106. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/package.json +101 -0
  3107. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/shams.js +42 -0
  3108. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/index.js +22 -0
  3109. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/shams/core-js.js +28 -0
  3110. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
  3111. package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/tests.js +56 -0
  3112. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/.eslintrc +5 -0
  3113. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/.github/FUNDING.yml +12 -0
  3114. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/.nycrc +13 -0
  3115. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/CHANGELOG.md +20 -0
  3116. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/LICENSE +21 -0
  3117. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/README.md +40 -0
  3118. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/index.d.ts +3 -0
  3119. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/index.d.ts.map +1 -0
  3120. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/index.js +8 -0
  3121. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/package.json +91 -0
  3122. package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/tsconfig.json +49 -0
  3123. package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/HISTORY.md +180 -0
  3124. package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/LICENSE +23 -0
  3125. package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/README.md +169 -0
  3126. package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/index.js +289 -0
  3127. package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/package.json +50 -0
  3128. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/Changelog.md +162 -0
  3129. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/LICENSE +21 -0
  3130. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/README.md +156 -0
  3131. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  3132. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  3133. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/index.js +22 -0
  3134. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/internal.js +188 -0
  3135. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  3136. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  3137. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  3138. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  3139. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  3140. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  3141. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  3142. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  3143. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  3144. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  3145. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  3146. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/utf16.js +177 -0
  3147. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/utf7.js +290 -0
  3148. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  3149. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/extend-node.js +217 -0
  3150. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/index.d.ts +24 -0
  3151. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/index.js +153 -0
  3152. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/streams.js +121 -0
  3153. package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/package.json +46 -0
  3154. package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/LICENSE +16 -0
  3155. package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/README.md +42 -0
  3156. package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/inherits.js +9 -0
  3157. package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/inherits_browser.js +27 -0
  3158. package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/package.json +29 -0
  3159. package/the_app/node_modules/warbeast2000/the_app/node_modules/install/.travis.yml +12 -0
  3160. package/the_app/node_modules/warbeast2000/the_app/node_modules/install/LICENSE +22 -0
  3161. package/the_app/node_modules/warbeast2000/the_app/node_modules/install/README.md +123 -0
  3162. package/the_app/node_modules/warbeast2000/the_app/node_modules/install/install.js +556 -0
  3163. package/the_app/node_modules/warbeast2000/the_app/node_modules/install/install.min.js +1 -0
  3164. package/the_app/node_modules/warbeast2000/the_app/node_modules/install/package.json +41 -0
  3165. package/the_app/node_modules/warbeast2000/the_app/node_modules/install/scripts/docs.sh +7 -0
  3166. package/the_app/node_modules/warbeast2000/the_app/node_modules/install/scripts/prepublish.sh +5 -0
  3167. package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/LICENSE +19 -0
  3168. package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/README.md +233 -0
  3169. package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  3170. package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  3171. package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  3172. package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/package.json +35 -0
  3173. package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/HISTORY.md +22 -0
  3174. package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/LICENSE +22 -0
  3175. package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/README.md +81 -0
  3176. package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/index.js +270 -0
  3177. package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/package.json +26 -0
  3178. package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/HISTORY.md +21 -0
  3179. package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/LICENSE +23 -0
  3180. package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/README.md +48 -0
  3181. package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/index.js +60 -0
  3182. package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/package.json +32 -0
  3183. package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/HISTORY.md +29 -0
  3184. package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/LICENSE +24 -0
  3185. package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/README.md +51 -0
  3186. package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/index.js +69 -0
  3187. package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/package.json +36 -0
  3188. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/CHANGELOG.md +164 -0
  3189. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/LICENSE +21 -0
  3190. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/README.md +90 -0
  3191. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/cli.js +8 -0
  3192. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/mime.js +108 -0
  3193. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/package.json +44 -0
  3194. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/src/build.js +53 -0
  3195. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/src/test.js +60 -0
  3196. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/types.json +1 -0
  3197. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/HISTORY.md +507 -0
  3198. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/LICENSE +23 -0
  3199. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/README.md +100 -0
  3200. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/db.json +8519 -0
  3201. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/index.js +12 -0
  3202. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/package.json +60 -0
  3203. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/HISTORY.md +397 -0
  3204. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/LICENSE +23 -0
  3205. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/README.md +113 -0
  3206. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/index.js +188 -0
  3207. package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/package.json +44 -0
  3208. package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/index.js +152 -0
  3209. package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/license.md +21 -0
  3210. package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/package.json +37 -0
  3211. package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/readme.md +51 -0
  3212. package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/HISTORY.md +108 -0
  3213. package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/LICENSE +24 -0
  3214. package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/README.md +203 -0
  3215. package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/index.js +82 -0
  3216. package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/charset.js +169 -0
  3217. package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/encoding.js +184 -0
  3218. package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/language.js +179 -0
  3219. package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/mediaType.js +294 -0
  3220. package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/package.json +42 -0
  3221. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/LICENSE +235 -0
  3222. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/README.md +63 -0
  3223. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
  3224. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
  3225. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm +64 -0
  3226. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm-cli.js +2 -0
  3227. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm.cmd +19 -0
  3228. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm.ps1 +35 -0
  3229. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx +65 -0
  3230. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx-cli.js +130 -0
  3231. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx.cmd +20 -0
  3232. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx.ps1 +35 -0
  3233. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-access.md +123 -0
  3234. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-adduser.md +86 -0
  3235. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-audit.md +470 -0
  3236. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-bugs.md +109 -0
  3237. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-cache.md +94 -0
  3238. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-ci.md +317 -0
  3239. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-completion.md +41 -0
  3240. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-config.md +181 -0
  3241. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-dedupe.md +320 -0
  3242. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-deprecate.md +73 -0
  3243. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-diff.md +316 -0
  3244. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-dist-tag.md +154 -0
  3245. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-docs.md +108 -0
  3246. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-doctor.md +122 -0
  3247. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-edit.md +46 -0
  3248. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-exec.md +366 -0
  3249. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-explain.md +105 -0
  3250. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-explore.md +49 -0
  3251. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-find-dupes.md +246 -0
  3252. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-fund.md +145 -0
  3253. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-help-search.md +40 -0
  3254. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-help.md +46 -0
  3255. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-hook.md +112 -0
  3256. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-init.md +349 -0
  3257. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-install-ci-test.md +264 -0
  3258. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-install-test.md +361 -0
  3259. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-install.md +797 -0
  3260. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-link.md +396 -0
  3261. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-login.md +93 -0
  3262. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-logout.md +75 -0
  3263. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-ls.md +294 -0
  3264. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-org.md +114 -0
  3265. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-outdated.md +178 -0
  3266. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-owner.md +106 -0
  3267. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-pack.md +126 -0
  3268. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-ping.md +46 -0
  3269. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-pkg.md +272 -0
  3270. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-prefix.md +59 -0
  3271. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-profile.md +131 -0
  3272. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-prune.md +196 -0
  3273. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-publish.md +235 -0
  3274. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-query.md +241 -0
  3275. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-rebuild.md +168 -0
  3276. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-repo.md +102 -0
  3277. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-restart.md +70 -0
  3278. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-root.md +51 -0
  3279. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-run-script.md +253 -0
  3280. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-sbom.md +319 -0
  3281. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-search.md +159 -0
  3282. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-shrinkwrap.md +32 -0
  3283. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-star.md +78 -0
  3284. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-stars.md +40 -0
  3285. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-start.md +80 -0
  3286. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-stop.md +73 -0
  3287. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-team.md +155 -0
  3288. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-test.md +70 -0
  3289. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-token.md +130 -0
  3290. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-uninstall.md +159 -0
  3291. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-unpublish.md +136 -0
  3292. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-unstar.md +74 -0
  3293. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-update.md +446 -0
  3294. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-version.md +235 -0
  3295. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-view.md +200 -0
  3296. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-whoami.md +41 -0
  3297. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm.md +175 -0
  3298. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npx.md +167 -0
  3299. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/folders.md +219 -0
  3300. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/install.md +78 -0
  3301. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/npm-shrinkwrap-json.md +34 -0
  3302. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/npmrc.md +137 -0
  3303. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/package-json.md +1190 -0
  3304. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +235 -0
  3305. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/config.md +1984 -0
  3306. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/dependency-selectors.md +207 -0
  3307. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/developers.md +245 -0
  3308. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/logging.md +96 -0
  3309. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/orgs.md +93 -0
  3310. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/package-spec.md +105 -0
  3311. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/registry.md +86 -0
  3312. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/removal.md +64 -0
  3313. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/scope.md +143 -0
  3314. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/scripts.md +368 -0
  3315. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/workspaces.md +226 -0
  3316. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/lib/index.js +189 -0
  3317. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-access.html +262 -0
  3318. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-adduser.html +218 -0
  3319. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-audit.html +502 -0
  3320. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-bugs.html +243 -0
  3321. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-cache.html +236 -0
  3322. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-ci.html +397 -0
  3323. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-completion.html +186 -0
  3324. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-config.html +282 -0
  3325. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-dedupe.html +395 -0
  3326. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-deprecate.html +206 -0
  3327. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-diff.html +398 -0
  3328. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-dist-tag.html +281 -0
  3329. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-docs.html +242 -0
  3330. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-doctor.html +253 -0
  3331. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-edit.html +190 -0
  3332. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-exec.html +435 -0
  3333. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-explain.html +242 -0
  3334. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-explore.html +190 -0
  3335. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-find-dupes.html +341 -0
  3336. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-fund.html +267 -0
  3337. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-help-search.html +184 -0
  3338. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-help.html +190 -0
  3339. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-hook.html +226 -0
  3340. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-init.html +422 -0
  3341. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-install-ci-test.html +355 -0
  3342. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-install-test.html +425 -0
  3343. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-install.html +787 -0
  3344. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-link.html +450 -0
  3345. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-login.html +222 -0
  3346. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-logout.html +209 -0
  3347. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-ls.html +378 -0
  3348. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-org.html +231 -0
  3349. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-outdated.html +305 -0
  3350. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-owner.html +243 -0
  3351. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-pack.html +256 -0
  3352. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-ping.html +189 -0
  3353. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-pkg.html +364 -0
  3354. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-prefix.html +200 -0
  3355. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-profile.html +272 -0
  3356. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-prune.html +304 -0
  3357. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-publish.html +350 -0
  3358. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-query.html +365 -0
  3359. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-rebuild.html +288 -0
  3360. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-repo.html +236 -0
  3361. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-restart.html +211 -0
  3362. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-root.html +195 -0
  3363. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-run-script.html +345 -0
  3364. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-sbom.html +439 -0
  3365. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-search.html +272 -0
  3366. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-shrinkwrap.html +182 -0
  3367. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-star.html +209 -0
  3368. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-stars.html +185 -0
  3369. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-start.html +214 -0
  3370. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-stop.html +209 -0
  3371. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-team.html +272 -0
  3372. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-test.html +207 -0
  3373. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-token.html +266 -0
  3374. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-uninstall.html +278 -0
  3375. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-unpublish.html +267 -0
  3376. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-unstar.html +206 -0
  3377. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-update.html +486 -0
  3378. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-version.html +341 -0
  3379. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-view.html +297 -0
  3380. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-whoami.html +185 -0
  3381. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm.html +296 -0
  3382. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npx.html +284 -0
  3383. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/folders.html +322 -0
  3384. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/install.html +217 -0
  3385. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/npm-shrinkwrap-json.html +184 -0
  3386. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/npmrc.html +261 -0
  3387. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/package-json.html +1070 -0
  3388. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/package-lock-json.html +390 -0
  3389. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/config.html +1584 -0
  3390. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/dependency-selectors.html +336 -0
  3391. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/developers.html +352 -0
  3392. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/logging.html +228 -0
  3393. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/orgs.html +236 -0
  3394. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/package-spec.html +255 -0
  3395. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/registry.html +226 -0
  3396. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/removal.html +199 -0
  3397. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/scope.html +257 -0
  3398. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/scripts.html +482 -0
  3399. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/workspaces.html +313 -0
  3400. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/index.js +5 -0
  3401. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/arborist-cmd.js +53 -0
  3402. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/base-command.js +165 -0
  3403. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/cli-entry.js +74 -0
  3404. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/cli.js +4 -0
  3405. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/access.js +222 -0
  3406. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/adduser.js +51 -0
  3407. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/audit.js +511 -0
  3408. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/bugs.js +34 -0
  3409. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/cache.js +213 -0
  3410. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ci.js +117 -0
  3411. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/completion.js +283 -0
  3412. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/config.js +378 -0
  3413. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/dedupe.js +52 -0
  3414. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/deprecate.js +73 -0
  3415. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/diff.js +291 -0
  3416. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/dist-tag.js +205 -0
  3417. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/docs.js +19 -0
  3418. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/doctor.js +419 -0
  3419. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/edit.js +76 -0
  3420. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/exec.js +106 -0
  3421. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/explain.js +128 -0
  3422. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/explore.js +79 -0
  3423. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/find-dupes.js +27 -0
  3424. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/fund.js +225 -0
  3425. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/get.js +22 -0
  3426. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/help-search.js +194 -0
  3427. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/help.js +113 -0
  3428. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/hook.js +125 -0
  3429. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/init.js +247 -0
  3430. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/install-ci-test.js +15 -0
  3431. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/install-test.js +15 -0
  3432. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/install.js +178 -0
  3433. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/link.js +192 -0
  3434. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ll.js +13 -0
  3435. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/login.js +51 -0
  3436. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/logout.js +49 -0
  3437. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ls.js +573 -0
  3438. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/org.js +155 -0
  3439. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/outdated.js +369 -0
  3440. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/owner.js +232 -0
  3441. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/pack.js +83 -0
  3442. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ping.js +29 -0
  3443. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/pkg.js +148 -0
  3444. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/prefix.js +13 -0
  3445. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/profile.js +407 -0
  3446. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/prune.js +33 -0
  3447. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/publish.js +225 -0
  3448. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/query.js +122 -0
  3449. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/rebuild.js +82 -0
  3450. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/repo.js +54 -0
  3451. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/restart.js +13 -0
  3452. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/root.js +11 -0
  3453. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/run-script.js +249 -0
  3454. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/sbom.js +155 -0
  3455. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/search.js +114 -0
  3456. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/set.js +25 -0
  3457. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/shrinkwrap.js +71 -0
  3458. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/star.js +71 -0
  3459. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/stars.js +38 -0
  3460. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/start.js +13 -0
  3461. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/stop.js +13 -0
  3462. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/team.js +154 -0
  3463. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/test.js +13 -0
  3464. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/token.js +229 -0
  3465. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/uninstall.js +56 -0
  3466. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/unpublish.js +171 -0
  3467. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/unstar.js +7 -0
  3468. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/update.js +69 -0
  3469. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/version.js +156 -0
  3470. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/view.js +510 -0
  3471. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/whoami.js +16 -0
  3472. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/es6/validate-engines.js +49 -0
  3473. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/lifecycle-cmd.js +19 -0
  3474. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/npm.js +485 -0
  3475. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/package-url-cmd.js +65 -0
  3476. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/audit-error.js +40 -0
  3477. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/auth.js +100 -0
  3478. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/cmd-list.js +178 -0
  3479. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion/installed-deep.js +45 -0
  3480. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion/installed-shallow.js +19 -0
  3481. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion.fish +40 -0
  3482. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion.sh +70 -0
  3483. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/did-you-mean.js +40 -0
  3484. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/display.js +126 -0
  3485. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/error-message.js +435 -0
  3486. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/exit-handler.js +227 -0
  3487. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/explain-dep.js +135 -0
  3488. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/explain-eresolve.js +71 -0
  3489. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/format-bytes.js +30 -0
  3490. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/format-search-stream.js +135 -0
  3491. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/get-identity.js +26 -0
  3492. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/is-windows.js +6 -0
  3493. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/log-file.js +236 -0
  3494. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/log-shim.js +59 -0
  3495. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/npm-usage.js +74 -0
  3496. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/open-url-prompt.js +69 -0
  3497. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/open-url.js +50 -0
  3498. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/otplease.js +48 -0
  3499. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/ping.js +7 -0
  3500. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/pulse-till-done.js +26 -0
  3501. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/queryable.js +308 -0
  3502. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/read-user-info.js +68 -0
  3503. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/reify-finish.js +33 -0
  3504. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/reify-output.js +185 -0
  3505. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/replace-info.js +31 -0
  3506. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/sbom-cyclonedx.js +201 -0
  3507. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/sbom-spdx.js +182 -0
  3508. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/tar.js +132 -0
  3509. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/timers.js +116 -0
  3510. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/update-notifier.js +126 -0
  3511. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/validate-lockfile.js +29 -0
  3512. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/web-auth.js +20 -0
  3513. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/workspaces/get-workspaces.js +54 -0
  3514. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/workspaces/update-workspaces.js +40 -0
  3515. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-access.1 +115 -0
  3516. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-adduser.1 +91 -0
  3517. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-audit.1 +446 -0
  3518. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-bugs.1 +115 -0
  3519. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-cache.1 +78 -0
  3520. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-ci.1 +289 -0
  3521. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-completion.1 +35 -0
  3522. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-config.1 +187 -0
  3523. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-dedupe.1 +290 -0
  3524. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-deprecate.1 +73 -0
  3525. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-diff.1 +307 -0
  3526. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-dist-tag.1 +144 -0
  3527. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-docs.1 +113 -0
  3528. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-doctor.1 +82 -0
  3529. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-edit.1 +43 -0
  3530. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-exec.1 +350 -0
  3531. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-explain.1 +118 -0
  3532. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-explore.1 +49 -0
  3533. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-find-dupes.1 +225 -0
  3534. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-fund.1 +142 -0
  3535. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-help-search.1 +37 -0
  3536. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-help.1 +47 -0
  3537. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-hook.1 +115 -0
  3538. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-init.1 +366 -0
  3539. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-install-ci-test.1 +239 -0
  3540. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-install-test.1 +336 -0
  3541. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-install.1 +752 -0
  3542. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-link.1 +355 -0
  3543. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-login.1 +95 -0
  3544. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-logout.1 +75 -0
  3545. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-ls.1 +283 -0
  3546. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-org.1 +125 -0
  3547. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-outdated.1 +182 -0
  3548. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-owner.1 +110 -0
  3549. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-pack.1 +130 -0
  3550. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-ping.1 +52 -0
  3551. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-pkg.1 +286 -0
  3552. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-prefix.1 +63 -0
  3553. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-profile.1 +137 -0
  3554. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-prune.1 +184 -0
  3555. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-publish.1 +221 -0
  3556. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-query.1 +243 -0
  3557. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-rebuild.1 +178 -0
  3558. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-repo.1 +103 -0
  3559. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-restart.1 +85 -0
  3560. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-root.1 +56 -0
  3561. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-run-script.1 +234 -0
  3562. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-sbom.1 +314 -0
  3563. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-search.1 +156 -0
  3564. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-shrinkwrap.1 +32 -0
  3565. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-star.1 +76 -0
  3566. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-stars.1 +41 -0
  3567. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-start.1 +79 -0
  3568. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-stop.1 +75 -0
  3569. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-team.1 +148 -0
  3570. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-test.1 +73 -0
  3571. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-token.1 +130 -0
  3572. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-uninstall.1 +159 -0
  3573. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-unpublish.1 +137 -0
  3574. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-unstar.1 +70 -0
  3575. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-update.1 +406 -0
  3576. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-version.1 +229 -0
  3577. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-view.1 +213 -0
  3578. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-whoami.1 +39 -0
  3579. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm.1 +131 -0
  3580. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npx.1 +156 -0
  3581. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/folders.5 +152 -0
  3582. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/install.5 +57 -0
  3583. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npm-global.5 +152 -0
  3584. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npm-json.5 +1093 -0
  3585. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npm-shrinkwrap-json.5 +23 -0
  3586. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npmrc.5 +129 -0
  3587. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/package-json.5 +1093 -0
  3588. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/package-lock-json.5 +156 -0
  3589. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/config.7 +2002 -0
  3590. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/dependency-selectors.7 +309 -0
  3591. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/developers.7 +234 -0
  3592. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/logging.7 +108 -0
  3593. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/orgs.7 +145 -0
  3594. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/package-spec.7 +126 -0
  3595. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/registry.7 +51 -0
  3596. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/removal.7 +60 -0
  3597. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/scope.7 +113 -0
  3598. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/scripts.7 +407 -0
  3599. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/workspaces.7 +214 -0
  3600. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/arborist +16 -0
  3601. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/arborist.cmd +17 -0
  3602. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/arborist.ps1 +28 -0
  3603. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/color-support +16 -0
  3604. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/color-support.cmd +17 -0
  3605. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/color-support.ps1 +28 -0
  3606. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/cssesc +16 -0
  3607. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/cssesc.cmd +17 -0
  3608. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/cssesc.ps1 +28 -0
  3609. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/glob +16 -0
  3610. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/glob.cmd +17 -0
  3611. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/glob.ps1 +28 -0
  3612. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/installed-package-contents +16 -0
  3613. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.cmd +17 -0
  3614. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.ps1 +28 -0
  3615. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/mkdirp +16 -0
  3616. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/mkdirp.cmd +17 -0
  3617. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/mkdirp.ps1 +28 -0
  3618. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-gyp +16 -0
  3619. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-gyp.cmd +17 -0
  3620. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-gyp.ps1 +28 -0
  3621. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-which +16 -0
  3622. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-which.cmd +17 -0
  3623. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-which.ps1 +28 -0
  3624. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/nopt +16 -0
  3625. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/nopt.cmd +17 -0
  3626. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/nopt.ps1 +28 -0
  3627. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/pacote +16 -0
  3628. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/pacote.cmd +17 -0
  3629. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/pacote.ps1 +28 -0
  3630. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal +16 -0
  3631. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.cmd +17 -0
  3632. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.ps1 +28 -0
  3633. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/semver +16 -0
  3634. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/semver.cmd +17 -0
  3635. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/semver.ps1 +28 -0
  3636. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/LICENSE +26 -0
  3637. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/examples/normal-usage.js +83 -0
  3638. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/examples/safe-string.js +80 -0
  3639. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/colors.js +211 -0
  3640. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/trap.js +46 -0
  3641. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/zalgo.js +110 -0
  3642. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
  3643. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/index.js +13 -0
  3644. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/america.js +10 -0
  3645. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/rainbow.js +12 -0
  3646. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/random.js +11 -0
  3647. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
  3648. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/styles.js +95 -0
  3649. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
  3650. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
  3651. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/package.json +45 -0
  3652. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/safe.js +10 -0
  3653. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/themes/generic-logging.js +12 -0
  3654. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
  3655. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.cjs +317 -0
  3656. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
  3657. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
  3658. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/index.mjs +14 -0
  3659. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  3660. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/RGI_Emoji.js +6 -0
  3661. 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
  3662. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
  3663. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
  3664. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
  3665. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
  3666. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
  3667. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
  3668. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/license +9 -0
  3669. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
  3670. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/package.json +86 -0
  3671. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/LICENSE +15 -0
  3672. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/index.js +42 -0
  3673. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/package.json +28 -0
  3674. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/agents.js +202 -0
  3675. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/dns.js +53 -0
  3676. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/errors.js +61 -0
  3677. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/index.js +56 -0
  3678. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/options.js +86 -0
  3679. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/proxy.js +88 -0
  3680. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/package.json +60 -0
  3681. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/LICENSE.md +20 -0
  3682. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/README.md +349 -0
  3683. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/actual.js +19 -0
  3684. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/audit.js +51 -0
  3685. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/funding.js +38 -0
  3686. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/ideal.js +14 -0
  3687. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/index.js +111 -0
  3688. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/logging.js +77 -0
  3689. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/options.js +123 -0
  3690. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/print-tree.js +4 -0
  3691. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/timers.js +33 -0
  3692. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/license.js +48 -0
  3693. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/prune.js +48 -0
  3694. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/reify.js +48 -0
  3695. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/shrinkwrap.js +7 -0
  3696. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/virtual.js +14 -0
  3697. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js +143 -0
  3698. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/audit.js +51 -0
  3699. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +1511 -0
  3700. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/deduper.js +19 -0
  3701. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/index.js +167 -0
  3702. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/isolated-reifier.js +453 -0
  3703. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js +440 -0
  3704. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js +303 -0
  3705. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/pruner.js +30 -0
  3706. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js +433 -0
  3707. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +1593 -0
  3708. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/set-workspaces.js +19 -0
  3709. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/audit-report.js +414 -0
  3710. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/calc-dep-flags.js +119 -0
  3711. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/can-place-dep.js +436 -0
  3712. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/case-insensitive-map.js +50 -0
  3713. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/consistent-resolve.js +45 -0
  3714. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/debug.js +31 -0
  3715. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/deepest-nesting-target.js +18 -0
  3716. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/dep-valid.js +150 -0
  3717. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/diff.js +306 -0
  3718. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/edge.js +301 -0
  3719. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/from-path.js +30 -0
  3720. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/gather-dep-set.js +43 -0
  3721. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/get-workspace-nodes.js +36 -0
  3722. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/index.js +8 -0
  3723. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/inventory.js +138 -0
  3724. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/link.js +126 -0
  3725. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/node.js +1473 -0
  3726. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/optional-set.js +38 -0
  3727. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-resolves.js +11 -0
  3728. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-set.js +147 -0
  3729. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/peer-entry-sets.js +77 -0
  3730. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/place-dep.js +569 -0
  3731. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/printable.js +198 -0
  3732. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js +862 -0
  3733. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/realpath.js +95 -0
  3734. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/relpath.js +3 -0
  3735. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js +15 -0
  3736. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/retire-path.js +19 -0
  3737. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +1176 -0
  3738. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signal-handling.js +74 -0
  3739. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signals.js +58 -0
  3740. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js +34 -0
  3741. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js +102 -0
  3742. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tree-check.js +155 -0
  3743. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/version-from-tgz.js +48 -0
  3744. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/vuln.js +217 -0
  3745. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/yarn-lock.js +377 -0
  3746. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/package.json +96 -0
  3747. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/LICENSE +15 -0
  3748. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/README.md +257 -0
  3749. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definition.js +253 -0
  3750. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definitions.js +2403 -0
  3751. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/index.js +66 -0
  3752. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/env-replace.js +14 -0
  3753. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/errors.js +23 -0
  3754. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/index.js +959 -0
  3755. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/nerf-dart.js +18 -0
  3756. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/parse-field.js +86 -0
  3757. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/set-envs.js +108 -0
  3758. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-defs.js +59 -0
  3759. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-description.js +21 -0
  3760. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/umask.js +36 -0
  3761. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/package.json +56 -0
  3762. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/LICENSE +15 -0
  3763. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/lib/index.js +34 -0
  3764. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/index.js +163 -0
  3765. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/license +9 -0
  3766. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/package.json +56 -0
  3767. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/package.json +70 -0
  3768. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/LICENSE.md +20 -0
  3769. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/get-options.js +20 -0
  3770. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/node.js +9 -0
  3771. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/LICENSE +15 -0
  3772. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/errors.js +129 -0
  3773. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/index.js +22 -0
  3774. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/polyfill.js +428 -0
  3775. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/index.js +13 -0
  3776. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/move-file.js +78 -0
  3777. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/readdir-scoped.js +20 -0
  3778. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js +39 -0
  3779. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/package.json +52 -0
  3780. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/LICENSE +15 -0
  3781. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/clone.js +172 -0
  3782. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/errors.js +36 -0
  3783. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/find.js +15 -0
  3784. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/index.js +9 -0
  3785. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is-clean.js +6 -0
  3786. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is.js +6 -0
  3787. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/lines-to-revs.js +147 -0
  3788. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js +33 -0
  3789. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/opts.js +12 -0
  3790. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/revs.js +28 -0
  3791. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js +44 -0
  3792. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/utils.js +3 -0
  3793. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/which.js +18 -0
  3794. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/package.json +63 -0
  3795. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/LICENSE +15 -0
  3796. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/README.md +109 -0
  3797. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/lib/index.js +242 -0
  3798. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/package.json +51 -0
  3799. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/LICENSE.md +20 -0
  3800. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/lib/index.js +211 -0
  3801. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/package.json +60 -0
  3802. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/LICENSE +15 -0
  3803. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js +435 -0
  3804. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/get-dep-spec.js +15 -0
  3805. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/hash.js +5 -0
  3806. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/index.js +128 -0
  3807. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/package.json +61 -0
  3808. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/LICENSE +15 -0
  3809. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/lib/index.js +7 -0
  3810. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/package.json +43 -0
  3811. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/lib/index.js +14 -0
  3812. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/package.json +48 -0
  3813. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/LICENSE +18 -0
  3814. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/index.js +277 -0
  3815. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/normalize.js +558 -0
  3816. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-dependencies.js +75 -0
  3817. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-scripts.js +29 -0
  3818. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-workspaces.js +26 -0
  3819. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/package.json +66 -0
  3820. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/LICENSE +15 -0
  3821. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/escape.js +68 -0
  3822. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/index.js +195 -0
  3823. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/package.json +56 -0
  3824. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/query/LICENSE +20 -0
  3825. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/query/lib/index.js +213 -0
  3826. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/query/package.json +63 -0
  3827. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/LICENSE +15 -0
  3828. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-server-package.js +12 -0
  3829. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-windows.js +2 -0
  3830. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +40 -0
  3831. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp +2 -0
  3832. 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
  3833. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/package-envs.js +26 -0
  3834. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +112 -0
  3835. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script.js +14 -0
  3836. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/set-path.js +45 -0
  3837. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/signal-manager.js +49 -0
  3838. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/validate-options.js +39 -0
  3839. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/package.json +53 -0
  3840. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/LICENSE +201 -0
  3841. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
  3842. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
  3843. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
  3844. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
  3845. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
  3846. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
  3847. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/index.js +396 -0
  3848. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
  3849. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
  3850. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
  3851. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
  3852. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/package.json +36 -0
  3853. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/utils.js +198 -0
  3854. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/LICENSE +202 -0
  3855. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/build.js +89 -0
  3856. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/bundle.js +22 -0
  3857. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/error.js +25 -0
  3858. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/index.js +40 -0
  3859. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/serialized.js +38 -0
  3860. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/utility.js +2 -0
  3861. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/validate.js +160 -0
  3862. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/package.json +35 -0
  3863. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/LICENSE +202 -0
  3864. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js +89 -0
  3865. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/events.js +185 -0
  3866. 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
  3867. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/any.js +65 -0
  3868. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js +1308 -0
  3869. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js +24 -0
  3870. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js +106 -0
  3871. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js +457 -0
  3872. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js +167 -0
  3873. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js +103 -0
  3874. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js +273 -0
  3875. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/index.js +37 -0
  3876. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/package.json +31 -0
  3877. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/LICENSE +202 -0
  3878. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/base.js +50 -0
  3879. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/bundle.js +70 -0
  3880. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/dsse.js +45 -0
  3881. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/index.js +7 -0
  3882. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/message.js +30 -0
  3883. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/error.js +39 -0
  3884. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/error.js +38 -0
  3885. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/fulcio.js +51 -0
  3886. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/rekor.js +115 -0
  3887. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/tsa.js +47 -0
  3888. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/ci.js +73 -0
  3889. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/index.js +20 -0
  3890. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/provider.js +2 -0
  3891. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/index.js +17 -0
  3892. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ca.js +60 -0
  3893. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ephemeral.js +45 -0
  3894. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/index.js +87 -0
  3895. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/index.js +21 -0
  3896. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/signer.js +17 -0
  3897. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/types/fetch.js +2 -0
  3898. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/crypto.js +27 -0
  3899. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/dsse.js +25 -0
  3900. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/encoding.js +28 -0
  3901. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/index.js +48 -0
  3902. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/json.js +61 -0
  3903. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/oidc.js +54 -0
  3904. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/pem.js +27 -0
  3905. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/ua.js +33 -0
  3906. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/index.js +23 -0
  3907. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/client.js +61 -0
  3908. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/entry.js +136 -0
  3909. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/index.js +82 -0
  3910. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/client.js +43 -0
  3911. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/index.js +44 -0
  3912. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/witness.js +2 -0
  3913. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/package.json +42 -0
  3914. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/LICENSE +202 -0
  3915. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/appdata.js +44 -0
  3916. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/client.js +94 -0
  3917. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/error.js +12 -0
  3918. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/index.js +56 -0
  3919. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/target.js +80 -0
  3920. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/package.json +41 -0
  3921. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/store/public-good-instance-root.json +1 -0
  3922. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/LICENSE +21 -0
  3923. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/lib/index.js +64 -0
  3924. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/package.json +35 -0
  3925. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/LICENSE +21 -0
  3926. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/base.js +83 -0
  3927. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/delegations.js +115 -0
  3928. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/error.js +27 -0
  3929. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/file.js +183 -0
  3930. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/index.js +24 -0
  3931. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/key.js +85 -0
  3932. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/metadata.js +158 -0
  3933. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/role.js +299 -0
  3934. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/root.js +116 -0
  3935. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/signature.js +38 -0
  3936. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/snapshot.js +71 -0
  3937. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/targets.js +92 -0
  3938. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/timestamp.js +58 -0
  3939. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/guard.js +33 -0
  3940. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/index.js +28 -0
  3941. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/key.js +143 -0
  3942. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/oid.js +27 -0
  3943. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/types.js +2 -0
  3944. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/verify.js +13 -0
  3945. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/package.json +37 -0
  3946. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
  3947. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abbrev/lib/index.js +50 -0
  3948. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abbrev/package.json +43 -0
  3949. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/LICENSE +21 -0
  3950. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/browser.js +13 -0
  3951. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/browser.mjs +11 -0
  3952. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.js +127 -0
  3953. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.mjs +118 -0
  3954. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.umd.js +5 -0
  3955. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/package.json +97 -0
  3956. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/polyfill.js +21 -0
  3957. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/polyfill.mjs +19 -0
  3958. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/agent-base/dist/helpers.js +66 -0
  3959. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/agent-base/dist/index.js +112 -0
  3960. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/agent-base/package.json +49 -0
  3961. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aggregate-error/index.js +47 -0
  3962. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aggregate-error/license +9 -0
  3963. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aggregate-error/package.json +41 -0
  3964. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-regex/index.js +8 -0
  3965. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-regex/license +9 -0
  3966. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-regex/package.json +58 -0
  3967. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-styles/index.js +223 -0
  3968. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-styles/license +9 -0
  3969. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-styles/package.json +54 -0
  3970. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aproba/LICENSE +14 -0
  3971. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aproba/index.js +105 -0
  3972. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aproba/package.json +35 -0
  3973. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/LICENSE +18 -0
  3974. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
  3975. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
  3976. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/index.js +35 -0
  3977. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/package.json +40 -0
  3978. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/test/beep.js +40 -0
  3979. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/test/multi_line.js +45 -0
  3980. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/test/non_unicode.js +40 -0
  3981. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/LICENSE.md +18 -0
  3982. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/index.js +4 -0
  3983. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-base.js +13 -0
  3984. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-group.js +112 -0
  3985. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-stream.js +38 -0
  3986. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker.js +34 -0
  3987. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/package.json +57 -0
  3988. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/balanced-match/LICENSE.md +21 -0
  3989. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/balanced-match/index.js +62 -0
  3990. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/balanced-match/package.json +48 -0
  3991. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/LICENSE +21 -0
  3992. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/base64js.min.js +1 -0
  3993. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/index.js +150 -0
  3994. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/package.json +47 -0
  3995. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/LICENSE +15 -0
  3996. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/bin-target.js +9 -0
  3997. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/check-bin.js +74 -0
  3998. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/check-bins.js +18 -0
  3999. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/fix-bin.js +42 -0
  4000. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/get-node-modules.js +19 -0
  4001. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/get-paths.js +42 -0
  4002. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/get-prefix.js +3 -0
  4003. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/index.js +44 -0
  4004. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/is-windows.js +2 -0
  4005. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-bin.js +9 -0
  4006. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-bins.js +23 -0
  4007. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-gently.js +90 -0
  4008. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-mans.js +53 -0
  4009. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/man-target.js +6 -0
  4010. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/shim-bin.js +86 -0
  4011. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/package.json +59 -0
  4012. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/binary-extensions.json +260 -0
  4013. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/index.js +1 -0
  4014. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/license +9 -0
  4015. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/package.json +38 -0
  4016. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/brace-expansion/LICENSE +21 -0
  4017. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/brace-expansion/index.js +203 -0
  4018. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/brace-expansion/package.json +46 -0
  4019. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/AUTHORS.md +73 -0
  4020. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/LICENSE +21 -0
  4021. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/index.js +2106 -0
  4022. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/package.json +93 -0
  4023. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/builtins/License +20 -0
  4024. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/builtins/index.js +80 -0
  4025. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/builtins/package.json +20 -0
  4026. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
  4027. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/path.js +29 -0
  4028. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/read.js +166 -0
  4029. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/rm.js +18 -0
  4030. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/write.js +206 -0
  4031. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/entry-index.js +330 -0
  4032. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/get.js +170 -0
  4033. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/index.js +42 -0
  4034. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/memoization.js +72 -0
  4035. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/put.js +80 -0
  4036. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/rm.js +31 -0
  4037. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/util/glob.js +7 -0
  4038. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +7 -0
  4039. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/util/tmp.js +26 -0
  4040. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/verify.js +257 -0
  4041. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/package.json +82 -0
  4042. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/license +9 -0
  4043. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/package.json +83 -0
  4044. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/index.js +225 -0
  4045. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/utilities.js +33 -0
  4046. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  4047. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
  4048. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
  4049. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chownr/LICENSE +15 -0
  4050. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chownr/chownr.js +167 -0
  4051. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chownr/package.json +32 -0
  4052. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/LICENSE +21 -0
  4053. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/index.js +90 -0
  4054. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/package.json +45 -0
  4055. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/vendors.json +336 -0
  4056. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cidr-regex/LICENSE +22 -0
  4057. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cidr-regex/index.js +15 -0
  4058. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cidr-regex/package.json +32 -0
  4059. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clean-stack/index.js +40 -0
  4060. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clean-stack/license +9 -0
  4061. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clean-stack/package.json +39 -0
  4062. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/color.js +16 -0
  4063. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/index.js +82 -0
  4064. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/license +20 -0
  4065. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/index.js +10 -0
  4066. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/license +9 -0
  4067. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/package.json +55 -0
  4068. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/index.js +4 -0
  4069. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/license +9 -0
  4070. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/package.json +54 -0
  4071. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/package.json +54 -0
  4072. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/test.js +101 -0
  4073. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/LICENSE +21 -0
  4074. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/index.js +1 -0
  4075. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/package.json +100 -0
  4076. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/cell.js +409 -0
  4077. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/debug.js +28 -0
  4078. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/layout-manager.js +254 -0
  4079. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/table.js +106 -0
  4080. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/utils.js +336 -0
  4081. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/LICENSE +18 -0
  4082. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/clone.iml +10 -0
  4083. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/clone.js +166 -0
  4084. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/package.json +51 -0
  4085. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/LICENSE +15 -0
  4086. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/lib/index.js +247 -0
  4087. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +49 -0
  4088. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/package.json +47 -0
  4089. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/LICENSE +21 -0
  4090. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/conversions.js +839 -0
  4091. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/index.js +81 -0
  4092. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/package.json +48 -0
  4093. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/route.js +97 -0
  4094. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-name/LICENSE +8 -0
  4095. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-name/index.js +152 -0
  4096. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-name/package.json +28 -0
  4097. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/LICENSE +15 -0
  4098. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/README.md +129 -0
  4099. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/bin.js +3 -0
  4100. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/browser.js +14 -0
  4101. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/index.js +134 -0
  4102. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/package.json +36 -0
  4103. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/LICENSE +21 -0
  4104. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/Makefile +9 -0
  4105. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/columnify.js +306 -0
  4106. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/index.js +297 -0
  4107. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/index.js +10 -0
  4108. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/license +9 -0
  4109. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/package.json +55 -0
  4110. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/index.js +4 -0
  4111. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/license +9 -0
  4112. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/package.json +54 -0
  4113. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/package.json +53 -0
  4114. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/utils.js +193 -0
  4115. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/width.js +6 -0
  4116. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/common-ancestor-path/LICENSE +15 -0
  4117. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/common-ancestor-path/index.js +17 -0
  4118. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/common-ancestor-path/package.json +28 -0
  4119. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/console-control-strings/LICENSE +13 -0
  4120. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/console-control-strings/index.js +125 -0
  4121. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/console-control-strings/package.json +27 -0
  4122. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/LICENSE +21 -0
  4123. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/index.js +39 -0
  4124. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/enoent.js +59 -0
  4125. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/parse.js +91 -0
  4126. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/escape.js +45 -0
  4127. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  4128. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  4129. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which +16 -0
  4130. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.cmd +17 -0
  4131. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.ps1 +28 -0
  4132. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
  4133. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/README.md +54 -0
  4134. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
  4135. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/package.json +43 -0
  4136. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/which.js +125 -0
  4137. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/package.json +73 -0
  4138. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/LICENSE-MIT.txt +20 -0
  4139. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/README.md +201 -0
  4140. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/bin/cssesc +116 -0
  4141. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/cssesc.js +110 -0
  4142. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/man/cssesc.1 +70 -0
  4143. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/package.json +51 -0
  4144. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/LICENSE +20 -0
  4145. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/node_modules/ms/index.js +162 -0
  4146. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/node_modules/ms/license.md +21 -0
  4147. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/node_modules/ms/package.json +37 -0
  4148. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/package.json +59 -0
  4149. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/browser.js +269 -0
  4150. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/common.js +274 -0
  4151. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/index.js +10 -0
  4152. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/node.js +263 -0
  4153. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/LICENSE +22 -0
  4154. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/index.js +13 -0
  4155. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/package.json +33 -0
  4156. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/test.js +34 -0
  4157. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/History.md +22 -0
  4158. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/License +20 -0
  4159. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/Makefile +8 -0
  4160. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/index.js +121 -0
  4161. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/package.json +13 -0
  4162. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/test/index.js +94 -0
  4163. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/CONTRIBUTING.md +39 -0
  4164. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/LICENSE +31 -0
  4165. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/dist/diff.js +1627 -0
  4166. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/dist/diff.min.js +38 -0
  4167. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/convert/dmp.js +32 -0
  4168. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/convert/xml.js +42 -0
  4169. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/array.js +45 -0
  4170. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/base.js +307 -0
  4171. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/character.js +37 -0
  4172. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/css.js +41 -0
  4173. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/json.js +163 -0
  4174. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/line.js +89 -0
  4175. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/sentence.js +41 -0
  4176. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/word.js +108 -0
  4177. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/index.es6.js +1561 -0
  4178. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/index.js +216 -0
  4179. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/index.mjs +1561 -0
  4180. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/apply.js +238 -0
  4181. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/create.js +272 -0
  4182. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/merge.js +613 -0
  4183. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/parse.js +167 -0
  4184. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/util/array.js +32 -0
  4185. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/util/distance-iterator.js +57 -0
  4186. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/util/params.js +24 -0
  4187. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/package.json +87 -0
  4188. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/release-notes.md +309 -0
  4189. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/runtime.js +3 -0
  4190. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/eastasianwidth/eastasianwidth.js +311 -0
  4191. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/eastasianwidth/package.json +18 -0
  4192. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  4193. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/es2015/index.js +6 -0
  4194. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/es2015/text.js +6 -0
  4195. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/index.js +6 -0
  4196. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/package.json +50 -0
  4197. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/text.js +6 -0
  4198. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/LICENSE +16 -0
  4199. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/lib/encoding.js +83 -0
  4200. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/package.json +18 -0
  4201. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/test/test.js +49 -0
  4202. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/env-paths/index.js +74 -0
  4203. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/env-paths/license +9 -0
  4204. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/env-paths/package.json +45 -0
  4205. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/bower.json +30 -0
  4206. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/index.js +47 -0
  4207. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/index.umd.js +51 -0
  4208. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/package.json +34 -0
  4209. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/test/test.js +159 -0
  4210. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/LICENSE +22 -0
  4211. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.js +871 -0
  4212. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.mjs +862 -0
  4213. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.umd.js +6 -0
  4214. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/package.json +82 -0
  4215. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/.airtap.yml +15 -0
  4216. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/History.md +118 -0
  4217. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/LICENSE +22 -0
  4218. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/events.js +497 -0
  4219. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/package.json +37 -0
  4220. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/security.md +10 -0
  4221. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/add-listeners.js +111 -0
  4222. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/check-listener-leaks.js +101 -0
  4223. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/common.js +104 -0
  4224. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/errors.js +13 -0
  4225. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/events-list.js +28 -0
  4226. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/events-once.js +234 -0
  4227. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/index.js +64 -0
  4228. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/legacy-compat.js +16 -0
  4229. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/listener-count.js +37 -0
  4230. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/listeners-side-effects.js +56 -0
  4231. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/listeners.js +168 -0
  4232. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/max-listeners.js +47 -0
  4233. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/method-names.js +35 -0
  4234. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/modify-in-emit.js +90 -0
  4235. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/num-args.js +60 -0
  4236. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/once.js +83 -0
  4237. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/prepend.js +31 -0
  4238. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/remove-all-listeners.js +133 -0
  4239. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/remove-listeners.js +212 -0
  4240. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/set-max-listeners-side-effects.js +31 -0
  4241. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/special-event-names.js +45 -0
  4242. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/subclass.js +66 -0
  4243. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/symbols.js +25 -0
  4244. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/LICENSE +202 -0
  4245. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/backoff.js +118 -0
  4246. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
  4247. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
  4248. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
  4249. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
  4250. 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
  4251. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
  4252. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
  4253. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
  4254. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/options.js +31 -0
  4255. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/package.json +61 -0
  4256. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/LICENSE.md +21 -0
  4257. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/bench.js +96 -0
  4258. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/esm/mod.js +138 -0
  4259. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/mod.js +142 -0
  4260. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/package.json +72 -0
  4261. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/test.js +55 -0
  4262. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/LICENSE +15 -0
  4263. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
  4264. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/index.js +154 -0
  4265. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/package.json +3 -0
  4266. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
  4267. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
  4268. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/index.js +146 -0
  4269. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/package.json +3 -0
  4270. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
  4271. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/package.json +83 -0
  4272. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fs-minipass/LICENSE +15 -0
  4273. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fs-minipass/lib/index.js +443 -0
  4274. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fs-minipass/package.json +54 -0
  4275. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/LICENSE +20 -0
  4276. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/implementation.js +84 -0
  4277. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/index.js +5 -0
  4278. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/package.json +87 -0
  4279. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/test/index.js +252 -0
  4280. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/LICENSE.md +20 -0
  4281. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/base-theme.js +18 -0
  4282. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/error.js +24 -0
  4283. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/has-color.js +4 -0
  4284. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/index.js +289 -0
  4285. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/plumbing.js +50 -0
  4286. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/process.js +3 -0
  4287. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/progress-bar.js +41 -0
  4288. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/render-template.js +222 -0
  4289. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/set-immediate.js +7 -0
  4290. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/set-interval.js +3 -0
  4291. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/spin.js +5 -0
  4292. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/template-item.js +87 -0
  4293. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/theme-set.js +122 -0
  4294. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/themes.js +56 -0
  4295. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/wide-truncate.js +31 -0
  4296. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/index.js +10 -0
  4297. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/license +9 -0
  4298. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/package.json +55 -0
  4299. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/index.js +4 -0
  4300. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/license +9 -0
  4301. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/package.json +54 -0
  4302. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/package.json +68 -0
  4303. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/LICENSE +15 -0
  4304. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/README.md +1214 -0
  4305. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
  4306. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
  4307. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js +243 -0
  4308. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js.map +1 -0
  4309. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
  4310. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
  4311. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js +27 -0
  4312. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
  4313. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
  4314. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
  4315. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js +108 -0
  4316. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
  4317. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts +96 -0
  4318. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
  4319. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js +68 -0
  4320. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js.map +1 -0
  4321. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/package.json +1 -0
  4322. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
  4323. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
  4324. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js +219 -0
  4325. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
  4326. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
  4327. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
  4328. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js +302 -0
  4329. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js.map +1 -0
  4330. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
  4331. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
  4332. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js +358 -0
  4333. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js.map +1 -0
  4334. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts +3 -0
  4335. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
  4336. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs +275 -0
  4337. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs.map +1 -0
  4338. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts +344 -0
  4339. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
  4340. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js +239 -0
  4341. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js.map +1 -0
  4342. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
  4343. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
  4344. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js +23 -0
  4345. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js.map +1 -0
  4346. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts +20 -0
  4347. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
  4348. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js +104 -0
  4349. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js.map +1 -0
  4350. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts +96 -0
  4351. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts.map +1 -0
  4352. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js +56 -0
  4353. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js.map +1 -0
  4354. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/package.json +1 -0
  4355. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts +77 -0
  4356. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
  4357. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js +215 -0
  4358. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js.map +1 -0
  4359. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts +59 -0
  4360. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
  4361. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js +295 -0
  4362. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js.map +1 -0
  4363. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts +96 -0
  4364. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
  4365. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js +352 -0
  4366. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js.map +1 -0
  4367. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/package.json +97 -0
  4368. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
  4369. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/clone.js +23 -0
  4370. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +448 -0
  4371. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
  4372. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/package.json +53 -0
  4373. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/polyfills.js +355 -0
  4374. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
  4375. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/has-unicode/index.js +16 -0
  4376. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/has-unicode/package.json +30 -0
  4377. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/LICENSE +21 -0
  4378. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/index.js +8 -0
  4379. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/package.json +91 -0
  4380. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/tsconfig.json +49 -0
  4381. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
  4382. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/from-url.js +122 -0
  4383. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/hosts.js +227 -0
  4384. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/index.js +179 -0
  4385. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/parse-url.js +78 -0
  4386. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/package.json +66 -0
  4387. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-cache-semantics/LICENSE +9 -0
  4388. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-cache-semantics/index.js +674 -0
  4389. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-cache-semantics/package.json +18 -0
  4390. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-proxy-agent/LICENSE +25 -0
  4391. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-proxy-agent/dist/index.js +147 -0
  4392. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-proxy-agent/package.json +47 -0
  4393. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/index.js +174 -0
  4394. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
  4395. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/https-proxy-agent/package.json +50 -0
  4396. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/LICENSE +21 -0
  4397. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
  4398. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
  4399. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/index.js +23 -0
  4400. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/internal.js +198 -0
  4401. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  4402. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  4403. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
  4404. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  4405. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  4406. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  4407. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  4408. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  4409. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  4410. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  4411. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  4412. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf16.js +197 -0
  4413. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf32.js +319 -0
  4414. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf7.js +290 -0
  4415. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  4416. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/lib/index.js +180 -0
  4417. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/lib/streams.js +109 -0
  4418. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/package.json +44 -0
  4419. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ieee754/LICENSE +11 -0
  4420. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ieee754/index.js +85 -0
  4421. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ieee754/package.json +52 -0
  4422. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ignore-walk/LICENSE +15 -0
  4423. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ignore-walk/lib/index.js +310 -0
  4424. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ignore-walk/package.json +63 -0
  4425. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
  4426. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
  4427. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/imurmurhash/package.json +40 -0
  4428. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/indent-string/index.js +35 -0
  4429. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/indent-string/license +9 -0
  4430. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/indent-string/package.json +37 -0
  4431. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ini/LICENSE +15 -0
  4432. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ini/lib/ini.js +278 -0
  4433. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ini/package.json +45 -0
  4434. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/LICENSE.md +18 -0
  4435. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/lib/default-input.js +262 -0
  4436. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/lib/init-package-json.js +145 -0
  4437. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/package.json +75 -0
  4438. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip/lib/ip.js +422 -0
  4439. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip/package.json +25 -0
  4440. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip-regex/index.js +36 -0
  4441. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip-regex/license +9 -0
  4442. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip-regex/package.json +47 -0
  4443. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-cidr/LICENSE +22 -0
  4444. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-cidr/index.js +9 -0
  4445. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-cidr/package.json +32 -0
  4446. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/LICENSE +20 -0
  4447. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/core.json +158 -0
  4448. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/index.js +69 -0
  4449. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/package.json +73 -0
  4450. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/test/index.js +133 -0
  4451. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/index.js +50 -0
  4452. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/license +9 -0
  4453. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +42 -0
  4454. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/LICENSE +21 -0
  4455. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/index.js +6 -0
  4456. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/package.json +35 -0
  4457. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/test.js +16 -0
  4458. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/LICENSE +15 -0
  4459. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/index.js +57 -0
  4460. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/mode.js +41 -0
  4461. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/package.json +31 -0
  4462. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/test/basic.js +221 -0
  4463. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/windows.js +42 -0
  4464. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/LICENSE.md +55 -0
  4465. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/index.js +850 -0
  4466. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/package.json +1 -0
  4467. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
  4468. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/index.js +840 -0
  4469. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/package.json +1 -0
  4470. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
  4471. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/package.json +94 -0
  4472. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
  4473. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/lib/index.js +135 -0
  4474. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/package.json +49 -0
  4475. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-stringify-nice/LICENSE +15 -0
  4476. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-stringify-nice/index.js +38 -0
  4477. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-stringify-nice/package.json +40 -0
  4478. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/LICENSE +24 -0
  4479. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/bench.js +26 -0
  4480. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/examples/twitterfeed.js +30 -0
  4481. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/jsonparse.js +413 -0
  4482. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/package.json +22 -0
  4483. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic.json +167 -0
  4484. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic2.json +180 -0
  4485. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/big-token.js +24 -0
  4486. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/boundary.js +110 -0
  4487. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/offset.js +67 -0
  4488. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/primitives.js +57 -0
  4489. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/surrogate.js +26 -0
  4490. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/unvalid.js +15 -0
  4491. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/utf8.js +38 -0
  4492. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/LICENSE +21 -0
  4493. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/index.cjs +230 -0
  4494. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/index.mjs +227 -0
  4495. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/package.json +33 -0
  4496. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/rollup.config.js +3 -0
  4497. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/LICENSE +21 -0
  4498. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/index.cjs +161 -0
  4499. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/index.mjs +158 -0
  4500. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/package.json +34 -0
  4501. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/rollup.config.js +3 -0
  4502. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/LICENSE +13 -0
  4503. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/README.md +93 -0
  4504. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/lib/index.js +140 -0
  4505. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/package.json +53 -0
  4506. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/LICENSE +15 -0
  4507. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/README.md +96 -0
  4508. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/format-diff.js +96 -0
  4509. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/index.js +62 -0
  4510. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/should-print-patch.js +22 -0
  4511. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/tarball.js +38 -0
  4512. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/untar.js +96 -0
  4513. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/package.json +70 -0
  4514. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/LICENSE +15 -0
  4515. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/README.md +48 -0
  4516. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/file-exists.js +33 -0
  4517. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js +22 -0
  4518. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/index.js +285 -0
  4519. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/is-windows.js +1 -0
  4520. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/no-tty.js +1 -0
  4521. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/run-script.js +71 -0
  4522. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/package.json +79 -0
  4523. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/LICENSE +15 -0
  4524. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/README.md +131 -0
  4525. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/lib/index.js +210 -0
  4526. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/package.json +64 -0
  4527. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/LICENSE.md +16 -0
  4528. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/README.md +271 -0
  4529. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/lib/index.js +70 -0
  4530. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/package.json +56 -0
  4531. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/LICENSE +13 -0
  4532. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/README.md +148 -0
  4533. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/lib/index.js +64 -0
  4534. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/package.json +61 -0
  4535. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/LICENSE +13 -0
  4536. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/README.md +55 -0
  4537. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/lib/index.js +69 -0
  4538. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/package.json +58 -0
  4539. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/LICENSE +13 -0
  4540. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/README.md +120 -0
  4541. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/index.js +4 -0
  4542. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/provenance.js +245 -0
  4543. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/publish.js +225 -0
  4544. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/unpublish.js +119 -0
  4545. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/package.json +64 -0
  4546. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/LICENSE +13 -0
  4547. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/README.md +173 -0
  4548. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/lib/index.js +71 -0
  4549. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/package.json +57 -0
  4550. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/LICENSE +13 -0
  4551. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/README.md +188 -0
  4552. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/lib/index.js +92 -0
  4553. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/package.json +51 -0
  4554. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/LICENSE +15 -0
  4555. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/README.md +164 -0
  4556. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/commit.js +17 -0
  4557. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/enforce-clean.js +32 -0
  4558. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/index.js +40 -0
  4559. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/read-json.js +7 -0
  4560. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/retrieve-tag.js +13 -0
  4561. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/tag.js +30 -0
  4562. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/version.js +140 -0
  4563. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/write-json.js +16 -0
  4564. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/package.json +54 -0
  4565. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
  4566. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/index.js +1441 -0
  4567. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/package.json +3 -0
  4568. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/index.js +1437 -0
  4569. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/package.json +3 -0
  4570. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/package.json +118 -0
  4571. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/LICENSE +16 -0
  4572. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/entry.js +469 -0
  4573. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/errors.js +11 -0
  4574. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/index.js +49 -0
  4575. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/key.js +17 -0
  4576. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/policy.js +161 -0
  4577. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/fetch.js +118 -0
  4578. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/index.js +41 -0
  4579. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/options.js +54 -0
  4580. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/pipeline.js +41 -0
  4581. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js +127 -0
  4582. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/package.json +80 -0
  4583. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/LICENSE +15 -0
  4584. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
  4585. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/ast.js +589 -0
  4586. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
  4587. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/escape.js +22 -0
  4588. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/index.js +1011 -0
  4589. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/package.json +3 -0
  4590. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/unescape.js +24 -0
  4591. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
  4592. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/ast.js +585 -0
  4593. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
  4594. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/escape.js +18 -0
  4595. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/index.js +995 -0
  4596. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/package.json +3 -0
  4597. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/unescape.js +20 -0
  4598. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/package.json +86 -0
  4599. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/LICENSE +15 -0
  4600. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/index.js +1028 -0
  4601. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/package.json +1 -0
  4602. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/esm/index.js +1018 -0
  4603. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/esm/package.json +1 -0
  4604. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/package.json +82 -0
  4605. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-collect/LICENSE +15 -0
  4606. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-collect/index.js +71 -0
  4607. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-collect/package.json +30 -0
  4608. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/LICENSE +28 -0
  4609. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/abort-error.js +17 -0
  4610. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/blob.js +97 -0
  4611. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/body.js +350 -0
  4612. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/fetch-error.js +32 -0
  4613. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/headers.js +267 -0
  4614. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/index.js +377 -0
  4615. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/request.js +282 -0
  4616. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/response.js +90 -0
  4617. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/package.json +69 -0
  4618. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/LICENSE +15 -0
  4619. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/index.js +39 -0
  4620. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/LICENSE +15 -0
  4621. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/index.js +649 -0
  4622. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/package.json +56 -0
  4623. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/package.json +39 -0
  4624. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/LICENSE +27 -0
  4625. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/index.js +227 -0
  4626. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/LICENSE +15 -0
  4627. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/index.js +649 -0
  4628. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/package.json +56 -0
  4629. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/package.json +39 -0
  4630. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/LICENSE +15 -0
  4631. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/index.js +128 -0
  4632. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +15 -0
  4633. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/index.js +649 -0
  4634. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/package.json +56 -0
  4635. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/package.json +29 -0
  4636. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/LICENSE +15 -0
  4637. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/index.js +67 -0
  4638. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/LICENSE +15 -0
  4639. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/index.js +649 -0
  4640. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/package.json +56 -0
  4641. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/package.json +39 -0
  4642. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/test/basic.js +83 -0
  4643. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/LICENSE +26 -0
  4644. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/constants.js +115 -0
  4645. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/index.js +348 -0
  4646. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
  4647. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/index.js +649 -0
  4648. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +56 -0
  4649. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/package.json +42 -0
  4650. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
  4651. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/bin/cmd.js +68 -0
  4652. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/index.js +31 -0
  4653. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/find-made.js +29 -0
  4654. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
  4655. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
  4656. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/opts-arg.js +23 -0
  4657. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/path-arg.js +29 -0
  4658. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/use-native.js +10 -0
  4659. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/package.json +44 -0
  4660. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/readme.markdown +266 -0
  4661. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ms/index.js +162 -0
  4662. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ms/license.md +21 -0
  4663. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ms/package.json +38 -0
  4664. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mute-stream/LICENSE +15 -0
  4665. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mute-stream/lib/index.js +142 -0
  4666. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mute-stream/package.json +52 -0
  4667. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/HISTORY.md +108 -0
  4668. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/LICENSE +24 -0
  4669. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/index.js +82 -0
  4670. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/charset.js +169 -0
  4671. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/encoding.js +184 -0
  4672. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/language.js +179 -0
  4673. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/mediaType.js +294 -0
  4674. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/package.json +42 -0
  4675. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +905 -0
  4676. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
  4677. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
  4678. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/README.md +263 -0
  4679. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/SECURITY.md +2 -0
  4680. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/addon.gypi +204 -0
  4681. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +138 -0
  4682. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +28 -0
  4683. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/README.md +30 -0
  4684. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
  4685. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
  4686. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
  4687. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
  4688. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
  4689. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
  4690. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1270 -0
  4691. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
  4692. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
  4693. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +153 -0
  4694. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +271 -0
  4695. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
  4696. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +692 -0
  4697. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +654 -0
  4698. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +78 -0
  4699. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
  4700. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
  4701. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
  4702. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
  4703. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +804 -0
  4704. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1173 -0
  4705. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1318 -0
  4706. 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
  4707. 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
  4708. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
  4709. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
  4710. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +58 -0
  4711. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2711 -0
  4712. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3981 -0
  4713. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
  4714. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2933 -0
  4715. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +55 -0
  4716. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
  4717. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +25 -0
  4718. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3115 -0
  4719. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +98 -0
  4720. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +771 -0
  4721. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1262 -0
  4722. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
  4723. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
  4724. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
  4725. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1933 -0
  4726. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +302 -0
  4727. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3198 -0
  4728. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
  4729. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
  4730. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
  4731. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
  4732. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
  4733. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
  4734. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
  4735. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
  4736. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
  4737. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
  4738. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
  4739. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
  4740. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
  4741. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
  4742. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
  4743. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
  4744. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
  4745. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
  4746. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
  4747. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pyproject.toml +119 -0
  4748. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
  4749. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
  4750. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/build.js +220 -0
  4751. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/clean.js +15 -0
  4752. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/configure.js +282 -0
  4753. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/create-config-gypi.js +150 -0
  4754. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/download.js +39 -0
  4755. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +63 -0
  4756. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/find-python.js +310 -0
  4757. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/find-visualstudio.js +443 -0
  4758. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/install.js +415 -0
  4759. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/list.js +26 -0
  4760. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/log.js +169 -0
  4761. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +188 -0
  4762. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/process-release.js +146 -0
  4763. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +12 -0
  4764. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/remove.js +43 -0
  4765. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/util.js +81 -0
  4766. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
  4767. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/package.json +51 -0
  4768. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +39 -0
  4769. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/LICENSE +15 -0
  4770. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/README.md +213 -0
  4771. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/bin/nopt.js +29 -0
  4772. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/debug.js +4 -0
  4773. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/nopt-lib.js +479 -0
  4774. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/nopt.js +30 -0
  4775. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/type-defs.js +91 -0
  4776. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/package.json +51 -0
  4777. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/LICENSE +15 -0
  4778. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +24 -0
  4779. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +475 -0
  4780. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +22 -0
  4781. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +48 -0
  4782. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +11 -0
  4783. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
  4784. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
  4785. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/package.json +62 -0
  4786. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/LICENSE +16 -0
  4787. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/colors.js +22 -0
  4788. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/exit-code.js +14 -0
  4789. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/index.js +41 -0
  4790. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/detail.js +86 -0
  4791. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/install.js +75 -0
  4792. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/json.js +1 -0
  4793. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/quiet.js +1 -0
  4794. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/package.json +60 -0
  4795. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-bundled/LICENSE +15 -0
  4796. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-bundled/lib/index.js +254 -0
  4797. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-bundled/package.json +49 -0
  4798. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
  4799. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-install-checks/lib/index.js +101 -0
  4800. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-install-checks/package.json +51 -0
  4801. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +15 -0
  4802. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/lib/index.js +64 -0
  4803. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +44 -0
  4804. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
  4805. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-package-arg/lib/npa.js +411 -0
  4806. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-package-arg/package.json +67 -0
  4807. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
  4808. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-packlist/lib/index.js +484 -0
  4809. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-packlist/package.json +61 -0
  4810. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +16 -0
  4811. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js +218 -0
  4812. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-pick-manifest/package.json +63 -0
  4813. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-profile/LICENSE.md +20 -0
  4814. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-profile/lib/index.js +295 -0
  4815. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-profile/package.json +57 -0
  4816. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +20 -0
  4817. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/auth.js +181 -0
  4818. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js +100 -0
  4819. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/clean-url.js +27 -0
  4820. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/default-opts.js +19 -0
  4821. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/errors.js +80 -0
  4822. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/index.js +249 -0
  4823. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/package.json +67 -0
  4824. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
  4825. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-user-validate/lib/index.js +61 -0
  4826. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-user-validate/package.json +48 -0
  4827. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npmlog/LICENSE.md +20 -0
  4828. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npmlog/lib/log.js +400 -0
  4829. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npmlog/package.json +52 -0
  4830. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/p-map/index.js +81 -0
  4831. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/p-map/license +9 -0
  4832. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/p-map/package.json +53 -0
  4833. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/LICENSE +15 -0
  4834. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/README.md +285 -0
  4835. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/bin.js +158 -0
  4836. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/dir.js +108 -0
  4837. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/fetcher.js +505 -0
  4838. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/file.js +96 -0
  4839. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/git.js +327 -0
  4840. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/index.js +23 -0
  4841. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/registry.js +368 -0
  4842. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/remote.js +91 -0
  4843. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/add-git-sha.js +15 -0
  4844. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/cache-dir.js +15 -0
  4845. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/is-package-bin.js +25 -0
  4846. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/npm.js +14 -0
  4847. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/tar-create-options.js +31 -0
  4848. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/trailing-slashes.js +10 -0
  4849. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/package.json +79 -0
  4850. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/parse-conflict-json/LICENSE.md +20 -0
  4851. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/parse-conflict-json/lib/index.js +104 -0
  4852. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/parse-conflict-json/package.json +49 -0
  4853. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-key/index.js +16 -0
  4854. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-key/license +9 -0
  4855. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-key/package.json +39 -0
  4856. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/LICENSE.md +55 -0
  4857. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/index.js +2018 -0
  4858. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/package.json +3 -0
  4859. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/index.js +1983 -0
  4860. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/package.json +3 -0
  4861. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/package.json +87 -0
  4862. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/API.md +872 -0
  4863. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
  4864. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/index.js +17 -0
  4865. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
  4866. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/processor.js +170 -0
  4867. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
  4868. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
  4869. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
  4870. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
  4871. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
  4872. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
  4873. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
  4874. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
  4875. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
  4876. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
  4877. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
  4878. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
  4879. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
  4880. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
  4881. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
  4882. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
  4883. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
  4884. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
  4885. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
  4886. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
  4887. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
  4888. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
  4889. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
  4890. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
  4891. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
  4892. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
  4893. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
  4894. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/package.json +79 -0
  4895. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/proc-log/LICENSE +15 -0
  4896. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/proc-log/lib/index.js +23 -0
  4897. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/proc-log/package.json +44 -0
  4898. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/LICENSE +22 -0
  4899. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/browser.js +184 -0
  4900. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/index.js +2 -0
  4901. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/package.json +27 -0
  4902. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/test.js +199 -0
  4903. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/LICENSE +15 -0
  4904. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/index.js +27 -0
  4905. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/package.json +22 -0
  4906. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/test/index.js +88 -0
  4907. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-call-limit/LICENSE +15 -0
  4908. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-call-limit/index.js +52 -0
  4909. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-call-limit/package.json +29 -0
  4910. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
  4911. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
  4912. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-inflight/package.json +24 -0
  4913. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/LICENSE +19 -0
  4914. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/index.js +52 -0
  4915. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/package.json +37 -0
  4916. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/test/test.js +263 -0
  4917. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promzard/LICENSE +15 -0
  4918. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promzard/lib/index.js +175 -0
  4919. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promzard/package.json +48 -0
  4920. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
  4921. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
  4922. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/README.md +82 -0
  4923. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +101 -0
  4924. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
  4925. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
  4926. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
  4927. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
  4928. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
  4929. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/package.json +37 -0
  4930. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/test/main.js +63 -0
  4931. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
  4932. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
  4933. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
  4934. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
  4935. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
  4936. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
  4937. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
  4938. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
  4939. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
  4940. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
  4941. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read/LICENSE +15 -0
  4942. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read/lib/read.js +82 -0
  4943. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read/package.json +52 -0
  4944. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-cmd-shim/LICENSE +14 -0
  4945. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-cmd-shim/lib/index.js +75 -0
  4946. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-cmd-shim/package.json +47 -0
  4947. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
  4948. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json/lib/read-json.js +589 -0
  4949. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json/package.json +65 -0
  4950. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json-fast/LICENSE +15 -0
  4951. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json-fast/lib/index.js +141 -0
  4952. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json-fast/package.json +47 -0
  4953. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/LICENSE +47 -0
  4954. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js +4 -0
  4955. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_passthrough.js +4 -0
  4956. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js +4 -0
  4957. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js +4 -0
  4958. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js +4 -0
  4959. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js +49 -0
  4960. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/buffer_list.js +157 -0
  4961. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/compose.js +194 -0
  4962. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/destroy.js +290 -0
  4963. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplex.js +143 -0
  4964. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplexify.js +379 -0
  4965. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +281 -0
  4966. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/from.js +98 -0
  4967. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/lazy_transform.js +51 -0
  4968. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/legacy.js +89 -0
  4969. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/operators.js +457 -0
  4970. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/passthrough.js +39 -0
  4971. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/pipeline.js +465 -0
  4972. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/readable.js +1247 -0
  4973. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
  4974. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/transform.js +180 -0
  4975. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/utils.js +321 -0
  4976. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/writable.js +817 -0
  4977. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/validators.js +510 -0
  4978. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/browser.js +35 -0
  4979. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/errors.js +341 -0
  4980. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/index.js +65 -0
  4981. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/primordials.js +101 -0
  4982. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/util.js +128 -0
  4983. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/stream/promises.js +43 -0
  4984. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/stream.js +136 -0
  4985. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/package.json +86 -0
  4986. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/License +21 -0
  4987. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/Makefile +18 -0
  4988. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/equation.gif +0 -0
  4989. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/example/dns.js +31 -0
  4990. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/example/stop.js +40 -0
  4991. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/index.js +1 -0
  4992. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/lib/retry.js +100 -0
  4993. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/lib/retry_operation.js +158 -0
  4994. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/package.json +32 -0
  4995. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/common.js +10 -0
  4996. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-forever.js +24 -0
  4997. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +258 -0
  4998. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
  4999. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js +69 -0
  5000. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safe-buffer/LICENSE +21 -0
  5001. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safe-buffer/index.js +65 -0
  5002. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safe-buffer/package.json +51 -0
  5003. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/LICENSE +21 -0
  5004. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  5005. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/dangerous.js +58 -0
  5006. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/package.json +34 -0
  5007. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/safer.js +77 -0
  5008. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/tests.js +406 -0
  5009. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/LICENSE +15 -0
  5010. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/README.md +637 -0
  5011. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/bin/semver.js +197 -0
  5012. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/comparator.js +141 -0
  5013. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/index.js +5 -0
  5014. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/range.js +539 -0
  5015. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/semver.js +302 -0
  5016. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/clean.js +6 -0
  5017. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/cmp.js +52 -0
  5018. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/coerce.js +52 -0
  5019. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/compare-build.js +7 -0
  5020. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/compare-loose.js +3 -0
  5021. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/compare.js +5 -0
  5022. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/diff.js +65 -0
  5023. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/eq.js +3 -0
  5024. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/gt.js +3 -0
  5025. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/gte.js +3 -0
  5026. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/inc.js +19 -0
  5027. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/lt.js +3 -0
  5028. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/lte.js +3 -0
  5029. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/major.js +3 -0
  5030. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/minor.js +3 -0
  5031. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/neq.js +3 -0
  5032. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/parse.js +16 -0
  5033. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/patch.js +3 -0
  5034. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/prerelease.js +6 -0
  5035. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/rcompare.js +3 -0
  5036. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/rsort.js +3 -0
  5037. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/satisfies.js +10 -0
  5038. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/sort.js +3 -0
  5039. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/valid.js +6 -0
  5040. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/index.js +89 -0
  5041. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/constants.js +35 -0
  5042. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/debug.js +9 -0
  5043. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/identifiers.js +23 -0
  5044. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/parse-options.js +15 -0
  5045. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/re.js +212 -0
  5046. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/LICENSE +15 -0
  5047. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/index.js +334 -0
  5048. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/package.json +34 -0
  5049. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/package.json +87 -0
  5050. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/preload.js +2 -0
  5051. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/range.bnf +16 -0
  5052. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/gtr.js +4 -0
  5053. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/intersects.js +7 -0
  5054. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/ltr.js +4 -0
  5055. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/max-satisfying.js +25 -0
  5056. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/min-satisfying.js +24 -0
  5057. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/min-version.js +61 -0
  5058. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/outside.js +80 -0
  5059. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/simplify.js +47 -0
  5060. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/subset.js +247 -0
  5061. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/to-comparators.js +8 -0
  5062. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/valid.js +11 -0
  5063. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/set-blocking/LICENSE.txt +14 -0
  5064. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/set-blocking/index.js +7 -0
  5065. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/set-blocking/package.json +42 -0
  5066. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-command/index.js +19 -0
  5067. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-command/license +9 -0
  5068. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-command/package.json +34 -0
  5069. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-regex/index.js +2 -0
  5070. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-regex/license +9 -0
  5071. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-regex/package.json +35 -0
  5072. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/LICENSE.txt +16 -0
  5073. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/browser.js +10 -0
  5074. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/index.js +279 -0
  5075. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/package.json +3 -0
  5076. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/signals.js +42 -0
  5077. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/browser.js +4 -0
  5078. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/index.js +275 -0
  5079. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/package.json +3 -0
  5080. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/signals.js +39 -0
  5081. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/package.json +106 -0
  5082. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/LICENSE +202 -0
  5083. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/chain.js +63 -0
  5084. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/index.js +22 -0
  5085. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/sct.js +30 -0
  5086. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/signer.js +146 -0
  5087. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/config.js +165 -0
  5088. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/error.js +35 -0
  5089. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/index.js +34 -0
  5090. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/sigstore.js +92 -0
  5091. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/body.js +152 -0
  5092. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/checkpoint.js +148 -0
  5093. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/index.js +92 -0
  5094. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/merkle.js +113 -0
  5095. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/set.js +64 -0
  5096. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/types/fetch.js +2 -0
  5097. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/types/sigstore.js +27 -0
  5098. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/types/utility.js +17 -0
  5099. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/dump.js +97 -0
  5100. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/error.js +24 -0
  5101. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/index.js +20 -0
  5102. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/length.js +63 -0
  5103. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/obj.js +152 -0
  5104. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/parse.js +125 -0
  5105. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/tag.js +86 -0
  5106. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/crypto.js +63 -0
  5107. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/dsse.js +25 -0
  5108. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/encoding.js +46 -0
  5109. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/index.js +47 -0
  5110. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/json.js +61 -0
  5111. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/pem.js +44 -0
  5112. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/stream.js +116 -0
  5113. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/verify.js +160 -0
  5114. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/cert.js +242 -0
  5115. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/ext.js +145 -0
  5116. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/sct.js +101 -0
  5117. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/verify.js +177 -0
  5118. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/package.json +45 -0
  5119. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/LICENSE +20 -0
  5120. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
  5121. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/build/utils.js +108 -0
  5122. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
  5123. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/package.json +79 -0
  5124. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/LICENSE +20 -0
  5125. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/client/socksclient.js +793 -0
  5126. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/constants.js +114 -0
  5127. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/helpers.js +128 -0
  5128. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/receivebuffer.js +43 -0
  5129. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/util.js +25 -0
  5130. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/index.js +18 -0
  5131. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/index.md +17 -0
  5132. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
  5133. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
  5134. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
  5135. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
  5136. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
  5137. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
  5138. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/index.md +5 -0
  5139. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/migratingFromV1.md +86 -0
  5140. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/package.json +58 -0
  5141. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js +182 -0
  5142. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks-proxy-agent/package.json +142 -0
  5143. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/LICENSE +202 -0
  5144. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/index.js +386 -0
  5145. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/package.json +32 -0
  5146. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-exceptions/index.json +40 -0
  5147. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-exceptions/package.json +17 -0
  5148. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/AUTHORS +4 -0
  5149. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/LICENSE +22 -0
  5150. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/index.js +8 -0
  5151. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/package.json +39 -0
  5152. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/parse.js +138 -0
  5153. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/scan.js +131 -0
  5154. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-license-ids/deprecated.json +33 -0
  5155. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-license-ids/index.json +569 -0
  5156. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-license-ids/package.json +39 -0
  5157. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
  5158. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ssri/lib/index.js +580 -0
  5159. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ssri/package.json +65 -0
  5160. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/index.js +47 -0
  5161. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/license +9 -0
  5162. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/index.js +10 -0
  5163. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/license +9 -0
  5164. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/package.json +55 -0
  5165. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/index.js +4 -0
  5166. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/license +9 -0
  5167. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/package.json +54 -0
  5168. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/package.json +56 -0
  5169. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/index.js +47 -0
  5170. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/license +9 -0
  5171. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
  5172. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
  5173. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
  5174. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
  5175. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
  5176. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
  5177. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/package.json +56 -0
  5178. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string_decoder/LICENSE +48 -0
  5179. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string_decoder/lib/string_decoder.js +296 -0
  5180. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string_decoder/package.json +34 -0
  5181. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi/index.js +14 -0
  5182. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi/license +9 -0
  5183. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi/package.json +57 -0
  5184. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/index.js +4 -0
  5185. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/license +9 -0
  5186. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
  5187. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
  5188. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
  5189. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/package.json +54 -0
  5190. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/browser.js +30 -0
  5191. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/index.js +182 -0
  5192. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/license +9 -0
  5193. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/package.json +60 -0
  5194. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/LICENSE +15 -0
  5195. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/index.js +18 -0
  5196. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/create.js +111 -0
  5197. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/extract.js +113 -0
  5198. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/get-write-flag.js +20 -0
  5199. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/header.js +304 -0
  5200. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
  5201. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/large-numbers.js +104 -0
  5202. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/list.js +139 -0
  5203. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/mkdir.js +229 -0
  5204. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/mode-fix.js +27 -0
  5205. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/normalize-unicode.js +12 -0
  5206. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/normalize-windows-path.js +8 -0
  5207. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/pack.js +432 -0
  5208. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/parse.js +552 -0
  5209. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/path-reservations.js +156 -0
  5210. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/pax.js +150 -0
  5211. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/read-entry.js +107 -0
  5212. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/replace.js +246 -0
  5213. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js +24 -0
  5214. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
  5215. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/types.js +44 -0
  5216. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/unpack.js +906 -0
  5217. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/update.js +40 -0
  5218. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/warn-mixin.js +24 -0
  5219. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
  5220. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/write-entry.js +546 -0
  5221. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/LICENSE +15 -0
  5222. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/index.js +422 -0
  5223. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
  5224. 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
  5225. 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
  5226. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/package.json +39 -0
  5227. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/LICENSE +15 -0
  5228. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.js +702 -0
  5229. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.mjs +702 -0
  5230. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +76 -0
  5231. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/package.json +70 -0
  5232. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/LICENSE +18 -0
  5233. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/align.js +8 -0
  5234. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/center.js +8 -0
  5235. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
  5236. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
  5237. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/table.js +6 -0
  5238. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/index.js +86 -0
  5239. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/package.json +44 -0
  5240. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/align.js +18 -0
  5241. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/ansi-colors.js +32 -0
  5242. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/center.js +18 -0
  5243. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/dotalign.js +20 -0
  5244. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/doubledot.js +24 -0
  5245. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/table.js +14 -0
  5246. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +21 -0
  5247. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/factory.js +100 -0
  5248. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/index.js +18 -0
  5249. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/package.json +39 -0
  5250. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/src/factory.js +89 -0
  5251. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/src/index.js +4 -0
  5252. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/da.js +31 -0
  5253. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/de.js +31 -0
  5254. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en-short.js +31 -0
  5255. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en.js +31 -0
  5256. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/es.js +31 -0
  5257. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/LICENSE +15 -0
  5258. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/breadth.js +67 -0
  5259. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/depth-descent.js +88 -0
  5260. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/depth.js +76 -0
  5261. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/index.js +4 -0
  5262. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/package.json +51 -0
  5263. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/LICENSE +21 -0
  5264. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/config.js +15 -0
  5265. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/error.js +48 -0
  5266. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/fetcher.js +84 -0
  5267. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/index.js +9 -0
  5268. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/store.js +208 -0
  5269. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/updater.js +320 -0
  5270. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/tmpfile.js +25 -0
  5271. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/url.js +14 -0
  5272. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/package.json +43 -0
  5273. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-filename/LICENSE +5 -0
  5274. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-filename/lib/index.js +7 -0
  5275. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-filename/package.json +51 -0
  5276. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-slug/LICENSE +15 -0
  5277. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-slug/lib/index.js +11 -0
  5278. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-slug/package.json +47 -0
  5279. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/History.md +16 -0
  5280. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/LICENSE +24 -0
  5281. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/browser.js +67 -0
  5282. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/node.js +6 -0
  5283. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/package.json +27 -0
  5284. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +202 -0
  5285. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-license/index.js +86 -0
  5286. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-license/package.json +28 -0
  5287. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
  5288. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-name/lib/index.js +107 -0
  5289. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-name/package.json +65 -0
  5290. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/LICENSE +15 -0
  5291. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/index.js +18 -0
  5292. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/package.json +3 -0
  5293. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/index.js +14 -0
  5294. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/package.json +3 -0
  5295. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/package.json +72 -0
  5296. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/LICENSE +30 -0
  5297. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/combining.js +50 -0
  5298. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/docs/index.md +65 -0
  5299. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/index.js +99 -0
  5300. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/package.json +42 -0
  5301. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/test/index.js +64 -0
  5302. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/LICENSE +15 -0
  5303. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/README.md +51 -0
  5304. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/bin/which.js +52 -0
  5305. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/lib/index.js +111 -0
  5306. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/LICENSE +15 -0
  5307. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/index.js +46 -0
  5308. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/options.js +3 -0
  5309. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/package.json +3 -0
  5310. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/posix.js +67 -0
  5311. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/win32.js +62 -0
  5312. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/index.js +16 -0
  5313. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/options.js +2 -0
  5314. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/package.json +3 -0
  5315. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/posix.js +62 -0
  5316. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/win32.js +57 -0
  5317. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/package.json +96 -0
  5318. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/package.json +57 -0
  5319. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wide-align/LICENSE +14 -0
  5320. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wide-align/align.js +65 -0
  5321. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wide-align/package.json +33 -0
  5322. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/index.js +214 -0
  5323. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/license +9 -0
  5324. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  5325. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/RGI_Emoji.js +6 -0
  5326. 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
  5327. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +6 -0
  5328. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +6 -0
  5329. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +6 -0
  5330. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +52 -0
  5331. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +6 -0
  5332. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/index.js +54 -0
  5333. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/license +9 -0
  5334. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +59 -0
  5335. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/package.json +69 -0
  5336. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/index.js +216 -0
  5337. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/license +9 -0
  5338. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
  5339. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
  5340. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
  5341. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
  5342. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
  5343. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
  5344. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
  5345. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
  5346. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
  5347. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/package.json +62 -0
  5348. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/write-file-atomic/LICENSE.md +6 -0
  5349. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/write-file-atomic/lib/index.js +267 -0
  5350. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/write-file-atomic/package.json +57 -0
  5351. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/LICENSE +15 -0
  5352. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/iterator.js +8 -0
  5353. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/package.json +29 -0
  5354. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/yallist.js +426 -0
  5355. package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/package.json +268 -0
  5356. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/.eslintrc +53 -0
  5357. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  5358. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/.nycrc +13 -0
  5359. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/CHANGELOG.md +389 -0
  5360. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/LICENSE +21 -0
  5361. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/all.js +23 -0
  5362. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/circular.js +6 -0
  5363. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/fn.js +5 -0
  5364. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/inspect.js +10 -0
  5365. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/index.js +524 -0
  5366. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/package-support.json +20 -0
  5367. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/package.json +99 -0
  5368. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/readme.markdown +86 -0
  5369. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/bigint.js +58 -0
  5370. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/browser/dom.js +15 -0
  5371. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/circular.js +16 -0
  5372. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/deep.js +12 -0
  5373. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/element.js +53 -0
  5374. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/err.js +48 -0
  5375. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/fakes.js +29 -0
  5376. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/fn.js +76 -0
  5377. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/global.js +17 -0
  5378. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/has.js +15 -0
  5379. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/holes.js +15 -0
  5380. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/indent-option.js +271 -0
  5381. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/inspect.js +139 -0
  5382. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/lowbyte.js +12 -0
  5383. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/number.js +58 -0
  5384. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/quoteStyle.js +17 -0
  5385. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/toStringTag.js +40 -0
  5386. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/undef.js +12 -0
  5387. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/values.js +211 -0
  5388. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test-core-js.js +26 -0
  5389. package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/util.inspect.js +1 -0
  5390. package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/HISTORY.md +98 -0
  5391. package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/LICENSE +23 -0
  5392. package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/README.md +162 -0
  5393. package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/index.js +234 -0
  5394. package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/package.json +39 -0
  5395. package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/HISTORY.md +58 -0
  5396. package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/LICENSE +24 -0
  5397. package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/README.md +133 -0
  5398. package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/index.js +158 -0
  5399. package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/package.json +40 -0
  5400. package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/History.md +36 -0
  5401. package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/LICENSE +21 -0
  5402. package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/Readme.md +35 -0
  5403. package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/index.js +129 -0
  5404. package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/package.json +30 -0
  5405. package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/HISTORY.md +161 -0
  5406. package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/LICENSE +22 -0
  5407. package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/README.md +139 -0
  5408. package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/index.js +327 -0
  5409. package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/package.json +47 -0
  5410. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.editorconfig +43 -0
  5411. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.eslintrc +38 -0
  5412. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.github/FUNDING.yml +12 -0
  5413. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.nycrc +13 -0
  5414. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/CHANGELOG.md +546 -0
  5415. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/LICENSE.md +29 -0
  5416. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/README.md +625 -0
  5417. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/dist/qs.js +2054 -0
  5418. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/formats.js +23 -0
  5419. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/index.js +11 -0
  5420. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/parse.js +263 -0
  5421. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/stringify.js +326 -0
  5422. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/utils.js +252 -0
  5423. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/package.json +77 -0
  5424. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/test/parse.js +855 -0
  5425. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/test/stringify.js +909 -0
  5426. package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/test/utils.js +136 -0
  5427. package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/HISTORY.md +56 -0
  5428. package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/LICENSE +23 -0
  5429. package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/README.md +84 -0
  5430. package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/index.js +162 -0
  5431. package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/package.json +44 -0
  5432. package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/HISTORY.md +303 -0
  5433. package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/LICENSE +22 -0
  5434. package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/README.md +223 -0
  5435. package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/SECURITY.md +24 -0
  5436. package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/index.d.ts +87 -0
  5437. package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/index.js +329 -0
  5438. package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/package.json +49 -0
  5439. package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/LICENSE +21 -0
  5440. package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/README.md +584 -0
  5441. package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/index.d.ts +187 -0
  5442. package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/index.js +65 -0
  5443. package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/package.json +51 -0
  5444. package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/LICENSE +21 -0
  5445. package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  5446. package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/Readme.md +156 -0
  5447. package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/dangerous.js +58 -0
  5448. package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/package.json +34 -0
  5449. package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/safer.js +77 -0
  5450. package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/tests.js +406 -0
  5451. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/HISTORY.md +521 -0
  5452. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/LICENSE +23 -0
  5453. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/README.md +327 -0
  5454. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/SECURITY.md +24 -0
  5455. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/index.js +1143 -0
  5456. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/index.js +162 -0
  5457. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/license.md +21 -0
  5458. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/package.json +38 -0
  5459. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/readme.md +59 -0
  5460. package/the_app/node_modules/warbeast2000/the_app/node_modules/send/package.json +62 -0
  5461. package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/HISTORY.md +471 -0
  5462. package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/LICENSE +25 -0
  5463. package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/README.md +257 -0
  5464. package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/index.js +210 -0
  5465. package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/package.json +42 -0
  5466. package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/.eslintrc +27 -0
  5467. package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/.github/FUNDING.yml +12 -0
  5468. package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/.nycrc +13 -0
  5469. package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/CHANGELOG.md +41 -0
  5470. package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/LICENSE +21 -0
  5471. package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/README.md +56 -0
  5472. package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/env.js +19 -0
  5473. package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/index.js +41 -0
  5474. package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/package.json +84 -0
  5475. package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/LICENSE +13 -0
  5476. package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/README.md +31 -0
  5477. package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/index.d.ts +2 -0
  5478. package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/index.js +17 -0
  5479. package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/package.json +38 -0
  5480. package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/test/index.js +24 -0
  5481. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.eslintignore +1 -0
  5482. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.eslintrc +11 -0
  5483. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.github/FUNDING.yml +12 -0
  5484. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.nycrc +13 -0
  5485. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/CHANGELOG.md +65 -0
  5486. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/LICENSE +21 -0
  5487. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/README.md +2 -0
  5488. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/index.js +124 -0
  5489. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/package.json +67 -0
  5490. package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/test/index.js +78 -0
  5491. package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/HISTORY.md +82 -0
  5492. package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/LICENSE +23 -0
  5493. package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/README.md +136 -0
  5494. package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/codes.json +65 -0
  5495. package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/index.js +146 -0
  5496. package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/package.json +49 -0
  5497. package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/HISTORY.md +9 -0
  5498. package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/LICENSE +21 -0
  5499. package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/README.md +61 -0
  5500. package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/index.js +32 -0
  5501. package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/package.json +38 -0
  5502. package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/HISTORY.md +259 -0
  5503. package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/LICENSE +23 -0
  5504. package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/README.md +170 -0
  5505. package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/index.js +266 -0
  5506. package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/package.json +45 -0
  5507. package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/HISTORY.md +4 -0
  5508. package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/LICENSE +22 -0
  5509. package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/README.md +43 -0
  5510. package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/index.js +69 -0
  5511. package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/package.json +27 -0
  5512. package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/LICENSE +20 -0
  5513. package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/README.md +34 -0
  5514. package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/index.js +23 -0
  5515. package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/package.json +40 -0
  5516. package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/HISTORY.md +39 -0
  5517. package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/LICENSE +22 -0
  5518. package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/README.md +101 -0
  5519. package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/index.js +149 -0
  5520. package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/package.json +43 -0
  5521. package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/.github/workflows/node.js.yml +31 -0
  5522. package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/README.md +5 -0
  5523. package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/index.js +7 -0
  5524. package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/package.json +26 -0
  5525. package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/node_modules/.package-lock.json +13 -0
  5526. package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/README.md +1 -0
  5527. package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/package.json +19 -0
  5528. package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/package-lock.json +21 -0
  5529. package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/package.json +15 -0
  5530. package/the_app/node_modules/warbeast2000/the_app/package-lock.json +3414 -0
  5531. package/the_app/node_modules/warbeast2000/the_app/package.json +15 -0
  5532. package/the_app/package-lock.json +3414 -0
  5533. package/the_app/package.json +15 -0
@@ -0,0 +1,3115 @@
1
+ # Copyright (c) 2012 Google Inc. All rights reserved.
2
+ # Use of this source code is governed by a BSD-style license that can be
3
+ # found in the LICENSE file.
4
+
5
+
6
+ import ast
7
+
8
+ import gyp.common
9
+ import gyp.simple_copy
10
+ import multiprocessing
11
+ import os.path
12
+ import re
13
+ import shlex
14
+ import signal
15
+ import subprocess
16
+ import sys
17
+ import threading
18
+ import traceback
19
+ from gyp.common import GypError
20
+ from gyp.common import OrderedSet
21
+ from packaging.version import Version
22
+
23
+ # A list of types that are treated as linkable.
24
+ linkable_types = [
25
+ "executable",
26
+ "shared_library",
27
+ "loadable_module",
28
+ "mac_kernel_extension",
29
+ "windows_driver",
30
+ ]
31
+
32
+ # A list of sections that contain links to other targets.
33
+ dependency_sections = ["dependencies", "export_dependent_settings"]
34
+
35
+ # base_path_sections is a list of sections defined by GYP that contain
36
+ # pathnames. The generators can provide more keys, the two lists are merged
37
+ # into path_sections, but you should call IsPathSection instead of using either
38
+ # list directly.
39
+ base_path_sections = [
40
+ "destination",
41
+ "files",
42
+ "include_dirs",
43
+ "inputs",
44
+ "libraries",
45
+ "outputs",
46
+ "sources",
47
+ ]
48
+ path_sections = set()
49
+
50
+ # These per-process dictionaries are used to cache build file data when loading
51
+ # in parallel mode.
52
+ per_process_data = {}
53
+ per_process_aux_data = {}
54
+
55
+
56
+ def IsPathSection(section):
57
+ # If section ends in one of the '=+?!' characters, it's applied to a section
58
+ # without the trailing characters. '/' is notably absent from this list,
59
+ # because there's no way for a regular expression to be treated as a path.
60
+ while section and section[-1:] in "=+?!":
61
+ section = section[:-1]
62
+
63
+ if section in path_sections:
64
+ return True
65
+
66
+ # Sections matching the regexp '_(dir|file|path)s?$' are also
67
+ # considered PathSections. Using manual string matching since that
68
+ # is much faster than the regexp and this can be called hundreds of
69
+ # thousands of times so micro performance matters.
70
+ if "_" in section:
71
+ tail = section[-6:]
72
+ if tail[-1] == "s":
73
+ tail = tail[:-1]
74
+ if tail[-5:] in ("_file", "_path"):
75
+ return True
76
+ return tail[-4:] == "_dir"
77
+
78
+ return False
79
+
80
+
81
+ # base_non_configuration_keys is a list of key names that belong in the target
82
+ # itself and should not be propagated into its configurations. It is merged
83
+ # with a list that can come from the generator to
84
+ # create non_configuration_keys.
85
+ base_non_configuration_keys = [
86
+ # Sections that must exist inside targets and not configurations.
87
+ "actions",
88
+ "configurations",
89
+ "copies",
90
+ "default_configuration",
91
+ "dependencies",
92
+ "dependencies_original",
93
+ "libraries",
94
+ "postbuilds",
95
+ "product_dir",
96
+ "product_extension",
97
+ "product_name",
98
+ "product_prefix",
99
+ "rules",
100
+ "run_as",
101
+ "sources",
102
+ "standalone_static_library",
103
+ "suppress_wildcard",
104
+ "target_name",
105
+ "toolset",
106
+ "toolsets",
107
+ "type",
108
+ # Sections that can be found inside targets or configurations, but that
109
+ # should not be propagated from targets into their configurations.
110
+ "variables",
111
+ ]
112
+ non_configuration_keys = []
113
+
114
+ # Keys that do not belong inside a configuration dictionary.
115
+ invalid_configuration_keys = [
116
+ "actions",
117
+ "all_dependent_settings",
118
+ "configurations",
119
+ "dependencies",
120
+ "direct_dependent_settings",
121
+ "libraries",
122
+ "link_settings",
123
+ "sources",
124
+ "standalone_static_library",
125
+ "target_name",
126
+ "type",
127
+ ]
128
+
129
+ # Controls whether or not the generator supports multiple toolsets.
130
+ multiple_toolsets = False
131
+
132
+ # Paths for converting filelist paths to output paths: {
133
+ # toplevel,
134
+ # qualified_output_dir,
135
+ # }
136
+ generator_filelist_paths = None
137
+
138
+
139
+ def GetIncludedBuildFiles(build_file_path, aux_data, included=None):
140
+ """Return a list of all build files included into build_file_path.
141
+
142
+ The returned list will contain build_file_path as well as all other files
143
+ that it included, either directly or indirectly. Note that the list may
144
+ contain files that were included into a conditional section that evaluated
145
+ to false and was not merged into build_file_path's dict.
146
+
147
+ aux_data is a dict containing a key for each build file or included build
148
+ file. Those keys provide access to dicts whose "included" keys contain
149
+ lists of all other files included by the build file.
150
+
151
+ included should be left at its default None value by external callers. It
152
+ is used for recursion.
153
+
154
+ The returned list will not contain any duplicate entries. Each build file
155
+ in the list will be relative to the current directory.
156
+ """
157
+
158
+ if included is None:
159
+ included = []
160
+
161
+ if build_file_path in included:
162
+ return included
163
+
164
+ included.append(build_file_path)
165
+
166
+ for included_build_file in aux_data[build_file_path].get("included", []):
167
+ GetIncludedBuildFiles(included_build_file, aux_data, included)
168
+
169
+ return included
170
+
171
+
172
+ def CheckedEval(file_contents):
173
+ """Return the eval of a gyp file.
174
+ The gyp file is restricted to dictionaries and lists only, and
175
+ repeated keys are not allowed.
176
+ Note that this is slower than eval() is.
177
+ """
178
+
179
+ syntax_tree = ast.parse(file_contents)
180
+ assert isinstance(syntax_tree, ast.Module)
181
+ c1 = syntax_tree.body
182
+ assert len(c1) == 1
183
+ c2 = c1[0]
184
+ assert isinstance(c2, ast.Expr)
185
+ return CheckNode(c2.value, [])
186
+
187
+
188
+ def CheckNode(node, keypath):
189
+ if isinstance(node, ast.Dict):
190
+ dict = {}
191
+ for key, value in zip(node.keys, node.values):
192
+ assert isinstance(key, ast.Str)
193
+ key = key.s
194
+ if key in dict:
195
+ raise GypError(
196
+ "Key '"
197
+ + key
198
+ + "' repeated at level "
199
+ + repr(len(keypath) + 1)
200
+ + " with key path '"
201
+ + ".".join(keypath)
202
+ + "'"
203
+ )
204
+ kp = list(keypath) # Make a copy of the list for descending this node.
205
+ kp.append(key)
206
+ dict[key] = CheckNode(value, kp)
207
+ return dict
208
+ elif isinstance(node, ast.List):
209
+ children = []
210
+ for index, child in enumerate(node.elts):
211
+ kp = list(keypath) # Copy list.
212
+ kp.append(repr(index))
213
+ children.append(CheckNode(child, kp))
214
+ return children
215
+ elif isinstance(node, ast.Str):
216
+ return node.s
217
+ else:
218
+ raise TypeError(
219
+ "Unknown AST node at key path '" + ".".join(keypath) + "': " + repr(node)
220
+ )
221
+
222
+
223
+ def LoadOneBuildFile(build_file_path, data, aux_data, includes, is_target, check):
224
+ if build_file_path in data:
225
+ return data[build_file_path]
226
+
227
+ if os.path.exists(build_file_path):
228
+ build_file_contents = open(build_file_path, encoding="utf-8").read()
229
+ else:
230
+ raise GypError(f"{build_file_path} not found (cwd: {os.getcwd()})")
231
+
232
+ build_file_data = None
233
+ try:
234
+ if check:
235
+ build_file_data = CheckedEval(build_file_contents)
236
+ else:
237
+ build_file_data = eval(build_file_contents, {"__builtins__": {}}, None)
238
+ except SyntaxError as e:
239
+ e.filename = build_file_path
240
+ raise
241
+ except Exception as e:
242
+ gyp.common.ExceptionAppend(e, "while reading " + build_file_path)
243
+ raise
244
+
245
+ if type(build_file_data) is not dict:
246
+ raise GypError("%s does not evaluate to a dictionary." % build_file_path)
247
+
248
+ data[build_file_path] = build_file_data
249
+ aux_data[build_file_path] = {}
250
+
251
+ # Scan for includes and merge them in.
252
+ if "skip_includes" not in build_file_data or not build_file_data["skip_includes"]:
253
+ try:
254
+ if is_target:
255
+ LoadBuildFileIncludesIntoDict(
256
+ build_file_data, build_file_path, data, aux_data, includes, check
257
+ )
258
+ else:
259
+ LoadBuildFileIncludesIntoDict(
260
+ build_file_data, build_file_path, data, aux_data, None, check
261
+ )
262
+ except Exception as e:
263
+ gyp.common.ExceptionAppend(
264
+ e, "while reading includes of " + build_file_path
265
+ )
266
+ raise
267
+
268
+ return build_file_data
269
+
270
+
271
+ def LoadBuildFileIncludesIntoDict(
272
+ subdict, subdict_path, data, aux_data, includes, check
273
+ ):
274
+ includes_list = []
275
+ if includes is not None:
276
+ includes_list.extend(includes)
277
+ if "includes" in subdict:
278
+ for include in subdict["includes"]:
279
+ # "include" is specified relative to subdict_path, so compute the real
280
+ # path to include by appending the provided "include" to the directory
281
+ # in which subdict_path resides.
282
+ relative_include = os.path.normpath(
283
+ os.path.join(os.path.dirname(subdict_path), include)
284
+ )
285
+ includes_list.append(relative_include)
286
+ # Unhook the includes list, it's no longer needed.
287
+ del subdict["includes"]
288
+
289
+ # Merge in the included files.
290
+ for include in includes_list:
291
+ if "included" not in aux_data[subdict_path]:
292
+ aux_data[subdict_path]["included"] = []
293
+ aux_data[subdict_path]["included"].append(include)
294
+
295
+ gyp.DebugOutput(gyp.DEBUG_INCLUDES, "Loading Included File: '%s'", include)
296
+
297
+ MergeDicts(
298
+ subdict,
299
+ LoadOneBuildFile(include, data, aux_data, None, False, check),
300
+ subdict_path,
301
+ include,
302
+ )
303
+
304
+ # Recurse into subdictionaries.
305
+ for k, v in subdict.items():
306
+ if type(v) is dict:
307
+ LoadBuildFileIncludesIntoDict(v, subdict_path, data, aux_data, None, check)
308
+ elif type(v) is list:
309
+ LoadBuildFileIncludesIntoList(v, subdict_path, data, aux_data, check)
310
+
311
+
312
+ # This recurses into lists so that it can look for dicts.
313
+ def LoadBuildFileIncludesIntoList(sublist, sublist_path, data, aux_data, check):
314
+ for item in sublist:
315
+ if type(item) is dict:
316
+ LoadBuildFileIncludesIntoDict(
317
+ item, sublist_path, data, aux_data, None, check
318
+ )
319
+ elif type(item) is list:
320
+ LoadBuildFileIncludesIntoList(item, sublist_path, data, aux_data, check)
321
+
322
+
323
+ # Processes toolsets in all the targets. This recurses into condition entries
324
+ # since they can contain toolsets as well.
325
+ def ProcessToolsetsInDict(data):
326
+ if "targets" in data:
327
+ target_list = data["targets"]
328
+ new_target_list = []
329
+ for target in target_list:
330
+ # If this target already has an explicit 'toolset', and no 'toolsets'
331
+ # list, don't modify it further.
332
+ if "toolset" in target and "toolsets" not in target:
333
+ new_target_list.append(target)
334
+ continue
335
+ if multiple_toolsets:
336
+ toolsets = target.get("toolsets", ["target"])
337
+ else:
338
+ toolsets = ["target"]
339
+ # Make sure this 'toolsets' definition is only processed once.
340
+ if "toolsets" in target:
341
+ del target["toolsets"]
342
+ if len(toolsets) > 0:
343
+ # Optimization: only do copies if more than one toolset is specified.
344
+ for build in toolsets[1:]:
345
+ new_target = gyp.simple_copy.deepcopy(target)
346
+ new_target["toolset"] = build
347
+ new_target_list.append(new_target)
348
+ target["toolset"] = toolsets[0]
349
+ new_target_list.append(target)
350
+ data["targets"] = new_target_list
351
+ if "conditions" in data:
352
+ for condition in data["conditions"]:
353
+ if type(condition) is list:
354
+ for condition_dict in condition[1:]:
355
+ if type(condition_dict) is dict:
356
+ ProcessToolsetsInDict(condition_dict)
357
+
358
+
359
+ # TODO(mark): I don't love this name. It just means that it's going to load
360
+ # a build file that contains targets and is expected to provide a targets dict
361
+ # that contains the targets...
362
+ def LoadTargetBuildFile(
363
+ build_file_path,
364
+ data,
365
+ aux_data,
366
+ variables,
367
+ includes,
368
+ depth,
369
+ check,
370
+ load_dependencies,
371
+ ):
372
+ # If depth is set, predefine the DEPTH variable to be a relative path from
373
+ # this build file's directory to the directory identified by depth.
374
+ if depth:
375
+ # TODO(dglazkov) The backslash/forward-slash replacement at the end is a
376
+ # temporary measure. This should really be addressed by keeping all paths
377
+ # in POSIX until actual project generation.
378
+ d = gyp.common.RelativePath(depth, os.path.dirname(build_file_path))
379
+ if d == "":
380
+ variables["DEPTH"] = "."
381
+ else:
382
+ variables["DEPTH"] = d.replace("\\", "/")
383
+
384
+ # The 'target_build_files' key is only set when loading target build files in
385
+ # the non-parallel code path, where LoadTargetBuildFile is called
386
+ # recursively. In the parallel code path, we don't need to check whether the
387
+ # |build_file_path| has already been loaded, because the 'scheduled' set in
388
+ # ParallelState guarantees that we never load the same |build_file_path|
389
+ # twice.
390
+ if "target_build_files" in data:
391
+ if build_file_path in data["target_build_files"]:
392
+ # Already loaded.
393
+ return False
394
+ data["target_build_files"].add(build_file_path)
395
+
396
+ gyp.DebugOutput(
397
+ gyp.DEBUG_INCLUDES, "Loading Target Build File '%s'", build_file_path
398
+ )
399
+
400
+ build_file_data = LoadOneBuildFile(
401
+ build_file_path, data, aux_data, includes, True, check
402
+ )
403
+
404
+ # Store DEPTH for later use in generators.
405
+ build_file_data["_DEPTH"] = depth
406
+
407
+ # Set up the included_files key indicating which .gyp files contributed to
408
+ # this target dict.
409
+ if "included_files" in build_file_data:
410
+ raise GypError(build_file_path + " must not contain included_files key")
411
+
412
+ included = GetIncludedBuildFiles(build_file_path, aux_data)
413
+ build_file_data["included_files"] = []
414
+ for included_file in included:
415
+ # included_file is relative to the current directory, but it needs to
416
+ # be made relative to build_file_path's directory.
417
+ included_relative = gyp.common.RelativePath(
418
+ included_file, os.path.dirname(build_file_path)
419
+ )
420
+ build_file_data["included_files"].append(included_relative)
421
+
422
+ # Do a first round of toolsets expansion so that conditions can be defined
423
+ # per toolset.
424
+ ProcessToolsetsInDict(build_file_data)
425
+
426
+ # Apply "pre"/"early" variable expansions and condition evaluations.
427
+ ProcessVariablesAndConditionsInDict(
428
+ build_file_data, PHASE_EARLY, variables, build_file_path
429
+ )
430
+
431
+ # Since some toolsets might have been defined conditionally, perform
432
+ # a second round of toolsets expansion now.
433
+ ProcessToolsetsInDict(build_file_data)
434
+
435
+ # Look at each project's target_defaults dict, and merge settings into
436
+ # targets.
437
+ if "target_defaults" in build_file_data:
438
+ if "targets" not in build_file_data:
439
+ raise GypError("Unable to find targets in build file %s" % build_file_path)
440
+
441
+ index = 0
442
+ while index < len(build_file_data["targets"]):
443
+ # This procedure needs to give the impression that target_defaults is
444
+ # used as defaults, and the individual targets inherit from that.
445
+ # The individual targets need to be merged into the defaults. Make
446
+ # a deep copy of the defaults for each target, merge the target dict
447
+ # as found in the input file into that copy, and then hook up the
448
+ # copy with the target-specific data merged into it as the replacement
449
+ # target dict.
450
+ old_target_dict = build_file_data["targets"][index]
451
+ new_target_dict = gyp.simple_copy.deepcopy(
452
+ build_file_data["target_defaults"]
453
+ )
454
+ MergeDicts(
455
+ new_target_dict, old_target_dict, build_file_path, build_file_path
456
+ )
457
+ build_file_data["targets"][index] = new_target_dict
458
+ index += 1
459
+
460
+ # No longer needed.
461
+ del build_file_data["target_defaults"]
462
+
463
+ # Look for dependencies. This means that dependency resolution occurs
464
+ # after "pre" conditionals and variable expansion, but before "post" -
465
+ # in other words, you can't put a "dependencies" section inside a "post"
466
+ # conditional within a target.
467
+
468
+ dependencies = []
469
+ if "targets" in build_file_data:
470
+ for target_dict in build_file_data["targets"]:
471
+ if "dependencies" not in target_dict:
472
+ continue
473
+ for dependency in target_dict["dependencies"]:
474
+ dependencies.append(
475
+ gyp.common.ResolveTarget(build_file_path, dependency, None)[0]
476
+ )
477
+
478
+ if load_dependencies:
479
+ for dependency in dependencies:
480
+ try:
481
+ LoadTargetBuildFile(
482
+ dependency,
483
+ data,
484
+ aux_data,
485
+ variables,
486
+ includes,
487
+ depth,
488
+ check,
489
+ load_dependencies,
490
+ )
491
+ except Exception as e:
492
+ gyp.common.ExceptionAppend(
493
+ e, "while loading dependencies of %s" % build_file_path
494
+ )
495
+ raise
496
+ else:
497
+ return (build_file_path, dependencies)
498
+
499
+
500
+ def CallLoadTargetBuildFile(
501
+ global_flags,
502
+ build_file_path,
503
+ variables,
504
+ includes,
505
+ depth,
506
+ check,
507
+ generator_input_info,
508
+ ):
509
+ """Wrapper around LoadTargetBuildFile for parallel processing.
510
+
511
+ This wrapper is used when LoadTargetBuildFile is executed in
512
+ a worker process.
513
+ """
514
+
515
+ try:
516
+ signal.signal(signal.SIGINT, signal.SIG_IGN)
517
+
518
+ # Apply globals so that the worker process behaves the same.
519
+ for key, value in global_flags.items():
520
+ globals()[key] = value
521
+
522
+ SetGeneratorGlobals(generator_input_info)
523
+ result = LoadTargetBuildFile(
524
+ build_file_path,
525
+ per_process_data,
526
+ per_process_aux_data,
527
+ variables,
528
+ includes,
529
+ depth,
530
+ check,
531
+ False,
532
+ )
533
+ if not result:
534
+ return result
535
+
536
+ (build_file_path, dependencies) = result
537
+
538
+ # We can safely pop the build_file_data from per_process_data because it
539
+ # will never be referenced by this process again, so we don't need to keep
540
+ # it in the cache.
541
+ build_file_data = per_process_data.pop(build_file_path)
542
+
543
+ # This gets serialized and sent back to the main process via a pipe.
544
+ # It's handled in LoadTargetBuildFileCallback.
545
+ return (build_file_path, build_file_data, dependencies)
546
+ except GypError as e:
547
+ sys.stderr.write("gyp: %s\n" % e)
548
+ return None
549
+ except Exception as e:
550
+ print("Exception:", e, file=sys.stderr)
551
+ print(traceback.format_exc(), file=sys.stderr)
552
+ return None
553
+
554
+
555
+ class ParallelProcessingError(Exception):
556
+ pass
557
+
558
+
559
+ class ParallelState:
560
+ """Class to keep track of state when processing input files in parallel.
561
+
562
+ If build files are loaded in parallel, use this to keep track of
563
+ state during farming out and processing parallel jobs. It's stored
564
+ in a global so that the callback function can have access to it.
565
+ """
566
+
567
+ def __init__(self):
568
+ # The multiprocessing pool.
569
+ self.pool = None
570
+ # The condition variable used to protect this object and notify
571
+ # the main loop when there might be more data to process.
572
+ self.condition = None
573
+ # The "data" dict that was passed to LoadTargetBuildFileParallel
574
+ self.data = None
575
+ # The number of parallel calls outstanding; decremented when a response
576
+ # was received.
577
+ self.pending = 0
578
+ # The set of all build files that have been scheduled, so we don't
579
+ # schedule the same one twice.
580
+ self.scheduled = set()
581
+ # A list of dependency build file paths that haven't been scheduled yet.
582
+ self.dependencies = []
583
+ # Flag to indicate if there was an error in a child process.
584
+ self.error = False
585
+
586
+ def LoadTargetBuildFileCallback(self, result):
587
+ """Handle the results of running LoadTargetBuildFile in another process.
588
+ """
589
+ self.condition.acquire()
590
+ if not result:
591
+ self.error = True
592
+ self.condition.notify()
593
+ self.condition.release()
594
+ return
595
+ (build_file_path0, build_file_data0, dependencies0) = result
596
+ self.data[build_file_path0] = build_file_data0
597
+ self.data["target_build_files"].add(build_file_path0)
598
+ for new_dependency in dependencies0:
599
+ if new_dependency not in self.scheduled:
600
+ self.scheduled.add(new_dependency)
601
+ self.dependencies.append(new_dependency)
602
+ self.pending -= 1
603
+ self.condition.notify()
604
+ self.condition.release()
605
+
606
+
607
+ def LoadTargetBuildFilesParallel(
608
+ build_files, data, variables, includes, depth, check, generator_input_info
609
+ ):
610
+ parallel_state = ParallelState()
611
+ parallel_state.condition = threading.Condition()
612
+ # Make copies of the build_files argument that we can modify while working.
613
+ parallel_state.dependencies = list(build_files)
614
+ parallel_state.scheduled = set(build_files)
615
+ parallel_state.pending = 0
616
+ parallel_state.data = data
617
+
618
+ try:
619
+ parallel_state.condition.acquire()
620
+ while parallel_state.dependencies or parallel_state.pending:
621
+ if parallel_state.error:
622
+ break
623
+ if not parallel_state.dependencies:
624
+ parallel_state.condition.wait()
625
+ continue
626
+
627
+ dependency = parallel_state.dependencies.pop()
628
+
629
+ parallel_state.pending += 1
630
+ global_flags = {
631
+ "path_sections": globals()["path_sections"],
632
+ "non_configuration_keys": globals()["non_configuration_keys"],
633
+ "multiple_toolsets": globals()["multiple_toolsets"],
634
+ }
635
+
636
+ if not parallel_state.pool:
637
+ parallel_state.pool = multiprocessing.Pool(multiprocessing.cpu_count())
638
+ parallel_state.pool.apply_async(
639
+ CallLoadTargetBuildFile,
640
+ args=(
641
+ global_flags,
642
+ dependency,
643
+ variables,
644
+ includes,
645
+ depth,
646
+ check,
647
+ generator_input_info,
648
+ ),
649
+ callback=parallel_state.LoadTargetBuildFileCallback,
650
+ )
651
+ except KeyboardInterrupt as e:
652
+ parallel_state.pool.terminate()
653
+ raise e
654
+
655
+ parallel_state.condition.release()
656
+
657
+ parallel_state.pool.close()
658
+ parallel_state.pool.join()
659
+ parallel_state.pool = None
660
+
661
+ if parallel_state.error:
662
+ sys.exit(1)
663
+
664
+
665
+ # Look for the bracket that matches the first bracket seen in a
666
+ # string, and return the start and end as a tuple. For example, if
667
+ # the input is something like "<(foo <(bar)) blah", then it would
668
+ # return (1, 13), indicating the entire string except for the leading
669
+ # "<" and trailing " blah".
670
+ LBRACKETS = set("{[(")
671
+ BRACKETS = {"}": "{", "]": "[", ")": "("}
672
+
673
+
674
+ def FindEnclosingBracketGroup(input_str):
675
+ stack = []
676
+ start = -1
677
+ for index, char in enumerate(input_str):
678
+ if char in LBRACKETS:
679
+ stack.append(char)
680
+ if start == -1:
681
+ start = index
682
+ elif char in BRACKETS:
683
+ if not stack:
684
+ return (-1, -1)
685
+ if stack.pop() != BRACKETS[char]:
686
+ return (-1, -1)
687
+ if not stack:
688
+ return (start, index + 1)
689
+ return (-1, -1)
690
+
691
+
692
+ def IsStrCanonicalInt(string):
693
+ """Returns True if |string| is in its canonical integer form.
694
+
695
+ The canonical form is such that str(int(string)) == string.
696
+ """
697
+ if type(string) is str:
698
+ # This function is called a lot so for maximum performance, avoid
699
+ # involving regexps which would otherwise make the code much
700
+ # shorter. Regexps would need twice the time of this function.
701
+ if string:
702
+ if string == "0":
703
+ return True
704
+ if string[0] == "-":
705
+ string = string[1:]
706
+ if not string:
707
+ return False
708
+ if "1" <= string[0] <= "9":
709
+ return string.isdigit()
710
+
711
+ return False
712
+
713
+
714
+ # This matches things like "<(asdf)", "<!(cmd)", "<!@(cmd)", "<|(list)",
715
+ # "<!interpreter(arguments)", "<([list])", and even "<([)" and "<(<())".
716
+ # In the last case, the inner "<()" is captured in match['content'].
717
+ early_variable_re = re.compile(
718
+ r"(?P<replace>(?P<type><(?:(?:!?@?)|\|)?)"
719
+ r"(?P<command_string>[-a-zA-Z0-9_.]+)?"
720
+ r"\((?P<is_array>\s*\[?)"
721
+ r"(?P<content>.*?)(\]?)\))"
722
+ )
723
+
724
+ # This matches the same as early_variable_re, but with '>' instead of '<'.
725
+ late_variable_re = re.compile(
726
+ r"(?P<replace>(?P<type>>(?:(?:!?@?)|\|)?)"
727
+ r"(?P<command_string>[-a-zA-Z0-9_.]+)?"
728
+ r"\((?P<is_array>\s*\[?)"
729
+ r"(?P<content>.*?)(\]?)\))"
730
+ )
731
+
732
+ # This matches the same as early_variable_re, but with '^' instead of '<'.
733
+ latelate_variable_re = re.compile(
734
+ r"(?P<replace>(?P<type>[\^](?:(?:!?@?)|\|)?)"
735
+ r"(?P<command_string>[-a-zA-Z0-9_.]+)?"
736
+ r"\((?P<is_array>\s*\[?)"
737
+ r"(?P<content>.*?)(\]?)\))"
738
+ )
739
+
740
+ # Global cache of results from running commands so they don't have to be run
741
+ # more then once.
742
+ cached_command_results = {}
743
+
744
+
745
+ def FixupPlatformCommand(cmd):
746
+ if sys.platform == "win32":
747
+ if type(cmd) is list:
748
+ cmd = [re.sub("^cat ", "type ", cmd[0])] + cmd[1:]
749
+ else:
750
+ cmd = re.sub("^cat ", "type ", cmd)
751
+ return cmd
752
+
753
+
754
+ PHASE_EARLY = 0
755
+ PHASE_LATE = 1
756
+ PHASE_LATELATE = 2
757
+
758
+
759
+ def ExpandVariables(input, phase, variables, build_file):
760
+ # Look for the pattern that gets expanded into variables
761
+ if phase == PHASE_EARLY:
762
+ variable_re = early_variable_re
763
+ expansion_symbol = "<"
764
+ elif phase == PHASE_LATE:
765
+ variable_re = late_variable_re
766
+ expansion_symbol = ">"
767
+ elif phase == PHASE_LATELATE:
768
+ variable_re = latelate_variable_re
769
+ expansion_symbol = "^"
770
+ else:
771
+ assert False
772
+
773
+ input_str = str(input)
774
+ if IsStrCanonicalInt(input_str):
775
+ return int(input_str)
776
+
777
+ # Do a quick scan to determine if an expensive regex search is warranted.
778
+ if expansion_symbol not in input_str:
779
+ return input_str
780
+
781
+ # Get the entire list of matches as a list of MatchObject instances.
782
+ # (using findall here would return strings instead of MatchObjects).
783
+ matches = list(variable_re.finditer(input_str))
784
+ if not matches:
785
+ return input_str
786
+
787
+ output = input_str
788
+ # Reverse the list of matches so that replacements are done right-to-left.
789
+ # That ensures that earlier replacements won't mess up the string in a
790
+ # way that causes later calls to find the earlier substituted text instead
791
+ # of what's intended for replacement.
792
+ matches.reverse()
793
+ for match_group in matches:
794
+ match = match_group.groupdict()
795
+ gyp.DebugOutput(gyp.DEBUG_VARIABLES, "Matches: %r", match)
796
+ # match['replace'] is the substring to look for, match['type']
797
+ # is the character code for the replacement type (< > <! >! <| >| <@
798
+ # >@ <!@ >!@), match['is_array'] contains a '[' for command
799
+ # arrays, and match['content'] is the name of the variable (< >)
800
+ # or command to run (<! >!). match['command_string'] is an optional
801
+ # command string. Currently, only 'pymod_do_main' is supported.
802
+
803
+ # run_command is true if a ! variant is used.
804
+ run_command = "!" in match["type"]
805
+ command_string = match["command_string"]
806
+
807
+ # file_list is true if a | variant is used.
808
+ file_list = "|" in match["type"]
809
+
810
+ # Capture these now so we can adjust them later.
811
+ replace_start = match_group.start("replace")
812
+ replace_end = match_group.end("replace")
813
+
814
+ # Find the ending paren, and re-evaluate the contained string.
815
+ (c_start, c_end) = FindEnclosingBracketGroup(input_str[replace_start:])
816
+
817
+ # Adjust the replacement range to match the entire command
818
+ # found by FindEnclosingBracketGroup (since the variable_re
819
+ # probably doesn't match the entire command if it contained
820
+ # nested variables).
821
+ replace_end = replace_start + c_end
822
+
823
+ # Find the "real" replacement, matching the appropriate closing
824
+ # paren, and adjust the replacement start and end.
825
+ replacement = input_str[replace_start:replace_end]
826
+
827
+ # Figure out what the contents of the variable parens are.
828
+ contents_start = replace_start + c_start + 1
829
+ contents_end = replace_end - 1
830
+ contents = input_str[contents_start:contents_end]
831
+
832
+ # Do filter substitution now for <|().
833
+ # Admittedly, this is different than the evaluation order in other
834
+ # contexts. However, since filtration has no chance to run on <|(),
835
+ # this seems like the only obvious way to give them access to filters.
836
+ if file_list:
837
+ processed_variables = gyp.simple_copy.deepcopy(variables)
838
+ ProcessListFiltersInDict(contents, processed_variables)
839
+ # Recurse to expand variables in the contents
840
+ contents = ExpandVariables(contents, phase, processed_variables, build_file)
841
+ else:
842
+ # Recurse to expand variables in the contents
843
+ contents = ExpandVariables(contents, phase, variables, build_file)
844
+
845
+ # Strip off leading/trailing whitespace so that variable matches are
846
+ # simpler below (and because they are rarely needed).
847
+ contents = contents.strip()
848
+
849
+ # expand_to_list is true if an @ variant is used. In that case,
850
+ # the expansion should result in a list. Note that the caller
851
+ # is to be expecting a list in return, and not all callers do
852
+ # because not all are working in list context. Also, for list
853
+ # expansions, there can be no other text besides the variable
854
+ # expansion in the input string.
855
+ expand_to_list = "@" in match["type"] and input_str == replacement
856
+
857
+ if run_command or file_list:
858
+ # Find the build file's directory, so commands can be run or file lists
859
+ # generated relative to it.
860
+ build_file_dir = os.path.dirname(build_file)
861
+ if build_file_dir == "" and not file_list:
862
+ # If build_file is just a leaf filename indicating a file in the
863
+ # current directory, build_file_dir might be an empty string. Set
864
+ # it to None to signal to subprocess.Popen that it should run the
865
+ # command in the current directory.
866
+ build_file_dir = None
867
+
868
+ # Support <|(listfile.txt ...) which generates a file
869
+ # containing items from a gyp list, generated at gyp time.
870
+ # This works around actions/rules which have more inputs than will
871
+ # fit on the command line.
872
+ if file_list:
873
+ contents_list = contents if type(contents) is list else contents.split(" ")
874
+ replacement = contents_list[0]
875
+ if os.path.isabs(replacement):
876
+ raise GypError('| cannot handle absolute paths, got "%s"' % replacement)
877
+
878
+ if not generator_filelist_paths:
879
+ path = os.path.join(build_file_dir, replacement)
880
+ else:
881
+ if os.path.isabs(build_file_dir):
882
+ toplevel = generator_filelist_paths["toplevel"]
883
+ rel_build_file_dir = gyp.common.RelativePath(
884
+ build_file_dir, toplevel
885
+ )
886
+ else:
887
+ rel_build_file_dir = build_file_dir
888
+ qualified_out_dir = generator_filelist_paths["qualified_out_dir"]
889
+ path = os.path.join(qualified_out_dir, rel_build_file_dir, replacement)
890
+ gyp.common.EnsureDirExists(path)
891
+
892
+ replacement = gyp.common.RelativePath(path, build_file_dir)
893
+ f = gyp.common.WriteOnDiff(path)
894
+ for i in contents_list[1:]:
895
+ f.write("%s\n" % i)
896
+ f.close()
897
+
898
+ elif run_command:
899
+ use_shell = True
900
+ if match["is_array"]:
901
+ contents = eval(contents)
902
+ use_shell = False
903
+
904
+ # Check for a cached value to avoid executing commands, or generating
905
+ # file lists more than once. The cache key contains the command to be
906
+ # run as well as the directory to run it from, to account for commands
907
+ # that depend on their current directory.
908
+ # TODO(http://code.google.com/p/gyp/issues/detail?id=111): In theory,
909
+ # someone could author a set of GYP files where each time the command
910
+ # is invoked it produces different output by design. When the need
911
+ # arises, the syntax should be extended to support no caching off a
912
+ # command's output so it is run every time.
913
+ cache_key = (str(contents), build_file_dir)
914
+ cached_value = cached_command_results.get(cache_key, None)
915
+ if cached_value is None:
916
+ gyp.DebugOutput(
917
+ gyp.DEBUG_VARIABLES,
918
+ "Executing command '%s' in directory '%s'",
919
+ contents,
920
+ build_file_dir,
921
+ )
922
+
923
+ replacement = ""
924
+
925
+ if command_string == "pymod_do_main":
926
+ # <!pymod_do_main(modulename param eters) loads |modulename| as a
927
+ # python module and then calls that module's DoMain() function,
928
+ # passing ["param", "eters"] as a single list argument. For modules
929
+ # that don't load quickly, this can be faster than
930
+ # <!(python modulename param eters). Do this in |build_file_dir|.
931
+ oldwd = os.getcwd() # Python doesn't like os.open('.'): no fchdir.
932
+ if build_file_dir: # build_file_dir may be None (see above).
933
+ os.chdir(build_file_dir)
934
+ sys.path.append(os.getcwd())
935
+ try:
936
+
937
+ parsed_contents = shlex.split(contents)
938
+ try:
939
+ py_module = __import__(parsed_contents[0])
940
+ except ImportError as e:
941
+ raise GypError(
942
+ "Error importing pymod_do_main"
943
+ "module (%s): %s" % (parsed_contents[0], e)
944
+ )
945
+ replacement = str(
946
+ py_module.DoMain(parsed_contents[1:])
947
+ ).rstrip()
948
+ finally:
949
+ sys.path.pop()
950
+ os.chdir(oldwd)
951
+ assert replacement is not None
952
+ elif command_string:
953
+ raise GypError(
954
+ "Unknown command string '%s' in '%s'."
955
+ % (command_string, contents)
956
+ )
957
+ else:
958
+ # Fix up command with platform specific workarounds.
959
+ contents = FixupPlatformCommand(contents)
960
+ try:
961
+ # stderr will be printed no matter what
962
+ result = subprocess.run(
963
+ contents,
964
+ stdout=subprocess.PIPE,
965
+ shell=use_shell,
966
+ cwd=build_file_dir,
967
+ check=False
968
+ )
969
+ except Exception as e:
970
+ raise GypError(
971
+ "%s while executing command '%s' in %s"
972
+ % (e, contents, build_file)
973
+ )
974
+
975
+ if result.returncode > 0:
976
+ raise GypError(
977
+ "Call to '%s' returned exit status %d while in %s."
978
+ % (contents, result.returncode, build_file)
979
+ )
980
+ replacement = result.stdout.decode("utf-8").rstrip()
981
+
982
+ cached_command_results[cache_key] = replacement
983
+ else:
984
+ gyp.DebugOutput(
985
+ gyp.DEBUG_VARIABLES,
986
+ "Had cache value for command '%s' in directory '%s'",
987
+ contents,
988
+ build_file_dir,
989
+ )
990
+ replacement = cached_value
991
+
992
+ else:
993
+ if contents not in variables:
994
+ if contents[-1] in ["!", "/"]:
995
+ # In order to allow cross-compiles (nacl) to happen more naturally,
996
+ # we will allow references to >(sources/) etc. to resolve to
997
+ # and empty list if undefined. This allows actions to:
998
+ # 'action!': [
999
+ # '>@(_sources!)',
1000
+ # ],
1001
+ # 'action/': [
1002
+ # '>@(_sources/)',
1003
+ # ],
1004
+ replacement = []
1005
+ else:
1006
+ raise GypError(
1007
+ "Undefined variable " + contents + " in " + build_file
1008
+ )
1009
+ else:
1010
+ replacement = variables[contents]
1011
+
1012
+ if isinstance(replacement, bytes) and not isinstance(replacement, str):
1013
+ replacement = replacement.decode("utf-8") # done on Python 3 only
1014
+ if type(replacement) is list:
1015
+ for item in replacement:
1016
+ if isinstance(item, bytes) and not isinstance(item, str):
1017
+ item = item.decode("utf-8") # done on Python 3 only
1018
+ if not contents[-1] == "/" and type(item) not in (str, int):
1019
+ raise GypError(
1020
+ "Variable "
1021
+ + contents
1022
+ + " must expand to a string or list of strings; "
1023
+ + "list contains a "
1024
+ + item.__class__.__name__
1025
+ )
1026
+ # Run through the list and handle variable expansions in it. Since
1027
+ # the list is guaranteed not to contain dicts, this won't do anything
1028
+ # with conditions sections.
1029
+ ProcessVariablesAndConditionsInList(
1030
+ replacement, phase, variables, build_file
1031
+ )
1032
+ elif type(replacement) not in (str, int):
1033
+ raise GypError(
1034
+ "Variable "
1035
+ + contents
1036
+ + " must expand to a string or list of strings; "
1037
+ + "found a "
1038
+ + replacement.__class__.__name__
1039
+ )
1040
+
1041
+ if expand_to_list:
1042
+ # Expanding in list context. It's guaranteed that there's only one
1043
+ # replacement to do in |input_str| and that it's this replacement. See
1044
+ # above.
1045
+ if type(replacement) is list:
1046
+ # If it's already a list, make a copy.
1047
+ output = replacement[:]
1048
+ else:
1049
+ # Split it the same way sh would split arguments.
1050
+ output = shlex.split(str(replacement))
1051
+ else:
1052
+ # Expanding in string context.
1053
+ encoded_replacement = ""
1054
+ if type(replacement) is list:
1055
+ # When expanding a list into string context, turn the list items
1056
+ # into a string in a way that will work with a subprocess call.
1057
+ #
1058
+ # TODO(mark): This isn't completely correct. This should
1059
+ # call a generator-provided function that observes the
1060
+ # proper list-to-argument quoting rules on a specific
1061
+ # platform instead of just calling the POSIX encoding
1062
+ # routine.
1063
+ encoded_replacement = gyp.common.EncodePOSIXShellList(replacement)
1064
+ else:
1065
+ encoded_replacement = replacement
1066
+
1067
+ output = (
1068
+ output[:replace_start] + str(encoded_replacement) + output[replace_end:]
1069
+ )
1070
+ # Prepare for the next match iteration.
1071
+ input_str = output
1072
+
1073
+ if output == input:
1074
+ gyp.DebugOutput(
1075
+ gyp.DEBUG_VARIABLES,
1076
+ "Found only identity matches on %r, avoiding infinite " "recursion.",
1077
+ output,
1078
+ )
1079
+ else:
1080
+ # Look for more matches now that we've replaced some, to deal with
1081
+ # expanding local variables (variables defined in the same
1082
+ # variables block as this one).
1083
+ gyp.DebugOutput(gyp.DEBUG_VARIABLES, "Found output %r, recursing.", output)
1084
+ if type(output) is list:
1085
+ if output and type(output[0]) is list:
1086
+ # Leave output alone if it's a list of lists.
1087
+ # We don't want such lists to be stringified.
1088
+ pass
1089
+ else:
1090
+ new_output = []
1091
+ for item in output:
1092
+ new_output.append(
1093
+ ExpandVariables(item, phase, variables, build_file)
1094
+ )
1095
+ output = new_output
1096
+ else:
1097
+ output = ExpandVariables(output, phase, variables, build_file)
1098
+
1099
+ # Convert all strings that are canonically-represented integers into integers.
1100
+ if type(output) is list:
1101
+ for index, outstr in enumerate(output):
1102
+ if IsStrCanonicalInt(outstr):
1103
+ output[index] = int(outstr)
1104
+ elif IsStrCanonicalInt(output):
1105
+ output = int(output)
1106
+
1107
+ return output
1108
+
1109
+
1110
+ # The same condition is often evaluated over and over again so it
1111
+ # makes sense to cache as much as possible between evaluations.
1112
+ cached_conditions_asts = {}
1113
+
1114
+
1115
+ def EvalCondition(condition, conditions_key, phase, variables, build_file):
1116
+ """Returns the dict that should be used or None if the result was
1117
+ that nothing should be used."""
1118
+ if type(condition) is not list:
1119
+ raise GypError(conditions_key + " must be a list")
1120
+ if len(condition) < 2:
1121
+ # It's possible that condition[0] won't work in which case this
1122
+ # attempt will raise its own IndexError. That's probably fine.
1123
+ raise GypError(
1124
+ conditions_key
1125
+ + " "
1126
+ + condition[0]
1127
+ + " must be at least length 2, not "
1128
+ + str(len(condition))
1129
+ )
1130
+
1131
+ i = 0
1132
+ result = None
1133
+ while i < len(condition):
1134
+ cond_expr = condition[i]
1135
+ true_dict = condition[i + 1]
1136
+ if type(true_dict) is not dict:
1137
+ raise GypError(
1138
+ "{} {} must be followed by a dictionary, not {}".format(
1139
+ conditions_key, cond_expr, type(true_dict)
1140
+ )
1141
+ )
1142
+ if len(condition) > i + 2 and type(condition[i + 2]) is dict:
1143
+ false_dict = condition[i + 2]
1144
+ i = i + 3
1145
+ if i != len(condition):
1146
+ raise GypError(
1147
+ "{} {} has {} unexpected trailing items".format(
1148
+ conditions_key, cond_expr, len(condition) - i
1149
+ )
1150
+ )
1151
+ else:
1152
+ false_dict = None
1153
+ i = i + 2
1154
+ if result is None:
1155
+ result = EvalSingleCondition(
1156
+ cond_expr, true_dict, false_dict, phase, variables, build_file
1157
+ )
1158
+
1159
+ return result
1160
+
1161
+
1162
+ def EvalSingleCondition(cond_expr, true_dict, false_dict, phase, variables, build_file):
1163
+ """Returns true_dict if cond_expr evaluates to true, and false_dict
1164
+ otherwise."""
1165
+ # Do expansions on the condition itself. Since the condition can naturally
1166
+ # contain variable references without needing to resort to GYP expansion
1167
+ # syntax, this is of dubious value for variables, but someone might want to
1168
+ # use a command expansion directly inside a condition.
1169
+ cond_expr_expanded = ExpandVariables(cond_expr, phase, variables, build_file)
1170
+ if type(cond_expr_expanded) not in (str, int):
1171
+ raise ValueError(
1172
+ "Variable expansion in this context permits str and int "
1173
+ + "only, found "
1174
+ + cond_expr_expanded.__class__.__name__
1175
+ )
1176
+
1177
+ try:
1178
+ if cond_expr_expanded in cached_conditions_asts:
1179
+ ast_code = cached_conditions_asts[cond_expr_expanded]
1180
+ else:
1181
+ ast_code = compile(cond_expr_expanded, "<string>", "eval")
1182
+ cached_conditions_asts[cond_expr_expanded] = ast_code
1183
+ env = {"__builtins__": {}, "v": Version}
1184
+ if eval(ast_code, env, variables):
1185
+ return true_dict
1186
+ return false_dict
1187
+ except SyntaxError as e:
1188
+ syntax_error = SyntaxError(
1189
+ "%s while evaluating condition '%s' in %s "
1190
+ "at character %d." % (str(e.args[0]), e.text, build_file, e.offset),
1191
+ e.filename,
1192
+ e.lineno,
1193
+ e.offset,
1194
+ e.text,
1195
+ )
1196
+ raise syntax_error
1197
+ except NameError as e:
1198
+ gyp.common.ExceptionAppend(
1199
+ e,
1200
+ f"while evaluating condition '{cond_expr_expanded}' in {build_file}",
1201
+ )
1202
+ raise GypError(e)
1203
+
1204
+
1205
+ def ProcessConditionsInDict(the_dict, phase, variables, build_file):
1206
+ # Process a 'conditions' or 'target_conditions' section in the_dict,
1207
+ # depending on phase.
1208
+ # early -> conditions
1209
+ # late -> target_conditions
1210
+ # latelate -> no conditions
1211
+ #
1212
+ # Each item in a conditions list consists of cond_expr, a string expression
1213
+ # evaluated as the condition, and true_dict, a dict that will be merged into
1214
+ # the_dict if cond_expr evaluates to true. Optionally, a third item,
1215
+ # false_dict, may be present. false_dict is merged into the_dict if
1216
+ # cond_expr evaluates to false.
1217
+ #
1218
+ # Any dict merged into the_dict will be recursively processed for nested
1219
+ # conditionals and other expansions, also according to phase, immediately
1220
+ # prior to being merged.
1221
+
1222
+ if phase == PHASE_EARLY:
1223
+ conditions_key = "conditions"
1224
+ elif phase == PHASE_LATE:
1225
+ conditions_key = "target_conditions"
1226
+ elif phase == PHASE_LATELATE:
1227
+ return
1228
+ else:
1229
+ assert False
1230
+
1231
+ if conditions_key not in the_dict:
1232
+ return
1233
+
1234
+ conditions_list = the_dict[conditions_key]
1235
+ # Unhook the conditions list, it's no longer needed.
1236
+ del the_dict[conditions_key]
1237
+
1238
+ for condition in conditions_list:
1239
+ merge_dict = EvalCondition(
1240
+ condition, conditions_key, phase, variables, build_file
1241
+ )
1242
+
1243
+ if merge_dict is not None:
1244
+ # Expand variables and nested conditinals in the merge_dict before
1245
+ # merging it.
1246
+ ProcessVariablesAndConditionsInDict(
1247
+ merge_dict, phase, variables, build_file
1248
+ )
1249
+
1250
+ MergeDicts(the_dict, merge_dict, build_file, build_file)
1251
+
1252
+
1253
+ def LoadAutomaticVariablesFromDict(variables, the_dict):
1254
+ # Any keys with plain string values in the_dict become automatic variables.
1255
+ # The variable name is the key name with a "_" character prepended.
1256
+ for key, value in the_dict.items():
1257
+ if type(value) in (str, int, list):
1258
+ variables["_" + key] = value
1259
+
1260
+
1261
+ def LoadVariablesFromVariablesDict(variables, the_dict, the_dict_key):
1262
+ # Any keys in the_dict's "variables" dict, if it has one, becomes a
1263
+ # variable. The variable name is the key name in the "variables" dict.
1264
+ # Variables that end with the % character are set only if they are unset in
1265
+ # the variables dict. the_dict_key is the name of the key that accesses
1266
+ # the_dict in the_dict's parent dict. If the_dict's parent is not a dict
1267
+ # (it could be a list or it could be parentless because it is a root dict),
1268
+ # the_dict_key will be None.
1269
+ for key, value in the_dict.get("variables", {}).items():
1270
+ if type(value) not in (str, int, list):
1271
+ continue
1272
+
1273
+ if key.endswith("%"):
1274
+ variable_name = key[:-1]
1275
+ if variable_name in variables:
1276
+ # If the variable is already set, don't set it.
1277
+ continue
1278
+ if the_dict_key == "variables" and variable_name in the_dict:
1279
+ # If the variable is set without a % in the_dict, and the_dict is a
1280
+ # variables dict (making |variables| a variables sub-dict of a
1281
+ # variables dict), use the_dict's definition.
1282
+ value = the_dict[variable_name]
1283
+ else:
1284
+ variable_name = key
1285
+
1286
+ variables[variable_name] = value
1287
+
1288
+
1289
+ def ProcessVariablesAndConditionsInDict(
1290
+ the_dict, phase, variables_in, build_file, the_dict_key=None
1291
+ ):
1292
+ """Handle all variable and command expansion and conditional evaluation.
1293
+
1294
+ This function is the public entry point for all variable expansions and
1295
+ conditional evaluations. The variables_in dictionary will not be modified
1296
+ by this function.
1297
+ """
1298
+
1299
+ # Make a copy of the variables_in dict that can be modified during the
1300
+ # loading of automatics and the loading of the variables dict.
1301
+ variables = variables_in.copy()
1302
+ LoadAutomaticVariablesFromDict(variables, the_dict)
1303
+
1304
+ if "variables" in the_dict:
1305
+ # Make sure all the local variables are added to the variables
1306
+ # list before we process them so that you can reference one
1307
+ # variable from another. They will be fully expanded by recursion
1308
+ # in ExpandVariables.
1309
+ for key, value in the_dict["variables"].items():
1310
+ variables[key] = value
1311
+
1312
+ # Handle the associated variables dict first, so that any variable
1313
+ # references within can be resolved prior to using them as variables.
1314
+ # Pass a copy of the variables dict to avoid having it be tainted.
1315
+ # Otherwise, it would have extra automatics added for everything that
1316
+ # should just be an ordinary variable in this scope.
1317
+ ProcessVariablesAndConditionsInDict(
1318
+ the_dict["variables"], phase, variables, build_file, "variables"
1319
+ )
1320
+
1321
+ LoadVariablesFromVariablesDict(variables, the_dict, the_dict_key)
1322
+
1323
+ for key, value in the_dict.items():
1324
+ # Skip "variables", which was already processed if present.
1325
+ if key != "variables" and type(value) is str:
1326
+ expanded = ExpandVariables(value, phase, variables, build_file)
1327
+ if type(expanded) not in (str, int):
1328
+ raise ValueError(
1329
+ "Variable expansion in this context permits str and int "
1330
+ + "only, found "
1331
+ + expanded.__class__.__name__
1332
+ + " for "
1333
+ + key
1334
+ )
1335
+ the_dict[key] = expanded
1336
+
1337
+ # Variable expansion may have resulted in changes to automatics. Reload.
1338
+ # TODO(mark): Optimization: only reload if no changes were made.
1339
+ variables = variables_in.copy()
1340
+ LoadAutomaticVariablesFromDict(variables, the_dict)
1341
+ LoadVariablesFromVariablesDict(variables, the_dict, the_dict_key)
1342
+
1343
+ # Process conditions in this dict. This is done after variable expansion
1344
+ # so that conditions may take advantage of expanded variables. For example,
1345
+ # if the_dict contains:
1346
+ # {'type': '<(library_type)',
1347
+ # 'conditions': [['_type=="static_library"', { ... }]]},
1348
+ # _type, as used in the condition, will only be set to the value of
1349
+ # library_type if variable expansion is performed before condition
1350
+ # processing. However, condition processing should occur prior to recursion
1351
+ # so that variables (both automatic and "variables" dict type) may be
1352
+ # adjusted by conditions sections, merged into the_dict, and have the
1353
+ # intended impact on contained dicts.
1354
+ #
1355
+ # This arrangement means that a "conditions" section containing a "variables"
1356
+ # section will only have those variables effective in subdicts, not in
1357
+ # the_dict. The workaround is to put a "conditions" section within a
1358
+ # "variables" section. For example:
1359
+ # {'conditions': [['os=="mac"', {'variables': {'define': 'IS_MAC'}}]],
1360
+ # 'defines': ['<(define)'],
1361
+ # 'my_subdict': {'defines': ['<(define)']}},
1362
+ # will not result in "IS_MAC" being appended to the "defines" list in the
1363
+ # current scope but would result in it being appended to the "defines" list
1364
+ # within "my_subdict". By comparison:
1365
+ # {'variables': {'conditions': [['os=="mac"', {'define': 'IS_MAC'}]]},
1366
+ # 'defines': ['<(define)'],
1367
+ # 'my_subdict': {'defines': ['<(define)']}},
1368
+ # will append "IS_MAC" to both "defines" lists.
1369
+
1370
+ # Evaluate conditions sections, allowing variable expansions within them
1371
+ # as well as nested conditionals. This will process a 'conditions' or
1372
+ # 'target_conditions' section, perform appropriate merging and recursive
1373
+ # conditional and variable processing, and then remove the conditions section
1374
+ # from the_dict if it is present.
1375
+ ProcessConditionsInDict(the_dict, phase, variables, build_file)
1376
+
1377
+ # Conditional processing may have resulted in changes to automatics or the
1378
+ # variables dict. Reload.
1379
+ variables = variables_in.copy()
1380
+ LoadAutomaticVariablesFromDict(variables, the_dict)
1381
+ LoadVariablesFromVariablesDict(variables, the_dict, the_dict_key)
1382
+
1383
+ # Recurse into child dicts, or process child lists which may result in
1384
+ # further recursion into descendant dicts.
1385
+ for key, value in the_dict.items():
1386
+ # Skip "variables" and string values, which were already processed if
1387
+ # present.
1388
+ if key == "variables" or type(value) is str:
1389
+ continue
1390
+ if type(value) is dict:
1391
+ # Pass a copy of the variables dict so that subdicts can't influence
1392
+ # parents.
1393
+ ProcessVariablesAndConditionsInDict(
1394
+ value, phase, variables, build_file, key
1395
+ )
1396
+ elif type(value) is list:
1397
+ # The list itself can't influence the variables dict, and
1398
+ # ProcessVariablesAndConditionsInList will make copies of the variables
1399
+ # dict if it needs to pass it to something that can influence it. No
1400
+ # copy is necessary here.
1401
+ ProcessVariablesAndConditionsInList(value, phase, variables, build_file)
1402
+ elif type(value) is not int:
1403
+ raise TypeError("Unknown type " + value.__class__.__name__ + " for " + key)
1404
+
1405
+
1406
+ def ProcessVariablesAndConditionsInList(the_list, phase, variables, build_file):
1407
+ # Iterate using an index so that new values can be assigned into the_list.
1408
+ index = 0
1409
+ while index < len(the_list):
1410
+ item = the_list[index]
1411
+ if type(item) is dict:
1412
+ # Make a copy of the variables dict so that it won't influence anything
1413
+ # outside of its own scope.
1414
+ ProcessVariablesAndConditionsInDict(item, phase, variables, build_file)
1415
+ elif type(item) is list:
1416
+ ProcessVariablesAndConditionsInList(item, phase, variables, build_file)
1417
+ elif type(item) is str:
1418
+ expanded = ExpandVariables(item, phase, variables, build_file)
1419
+ if type(expanded) in (str, int):
1420
+ the_list[index] = expanded
1421
+ elif type(expanded) is list:
1422
+ the_list[index : index + 1] = expanded
1423
+ index += len(expanded)
1424
+
1425
+ # index now identifies the next item to examine. Continue right now
1426
+ # without falling into the index increment below.
1427
+ continue
1428
+ else:
1429
+ raise ValueError(
1430
+ "Variable expansion in this context permits strings and "
1431
+ + "lists only, found "
1432
+ + expanded.__class__.__name__
1433
+ + " at "
1434
+ + index
1435
+ )
1436
+ elif type(item) is not int:
1437
+ raise TypeError(
1438
+ "Unknown type " + item.__class__.__name__ + " at index " + index
1439
+ )
1440
+ index = index + 1
1441
+
1442
+
1443
+ def BuildTargetsDict(data):
1444
+ """Builds a dict mapping fully-qualified target names to their target dicts.
1445
+
1446
+ |data| is a dict mapping loaded build files by pathname relative to the
1447
+ current directory. Values in |data| are build file contents. For each
1448
+ |data| value with a "targets" key, the value of the "targets" key is taken
1449
+ as a list containing target dicts. Each target's fully-qualified name is
1450
+ constructed from the pathname of the build file (|data| key) and its
1451
+ "target_name" property. These fully-qualified names are used as the keys
1452
+ in the returned dict. These keys provide access to the target dicts,
1453
+ the dicts in the "targets" lists.
1454
+ """
1455
+
1456
+ targets = {}
1457
+ for build_file in data["target_build_files"]:
1458
+ for target in data[build_file].get("targets", []):
1459
+ target_name = gyp.common.QualifiedTarget(
1460
+ build_file, target["target_name"], target["toolset"]
1461
+ )
1462
+ if target_name in targets:
1463
+ raise GypError("Duplicate target definitions for " + target_name)
1464
+ targets[target_name] = target
1465
+
1466
+ return targets
1467
+
1468
+
1469
+ def QualifyDependencies(targets):
1470
+ """Make dependency links fully-qualified relative to the current directory.
1471
+
1472
+ |targets| is a dict mapping fully-qualified target names to their target
1473
+ dicts. For each target in this dict, keys known to contain dependency
1474
+ links are examined, and any dependencies referenced will be rewritten
1475
+ so that they are fully-qualified and relative to the current directory.
1476
+ All rewritten dependencies are suitable for use as keys to |targets| or a
1477
+ similar dict.
1478
+ """
1479
+
1480
+ all_dependency_sections = [
1481
+ dep + op for dep in dependency_sections for op in ("", "!", "/")
1482
+ ]
1483
+
1484
+ for target, target_dict in targets.items():
1485
+ target_build_file = gyp.common.BuildFile(target)
1486
+ toolset = target_dict["toolset"]
1487
+ for dependency_key in all_dependency_sections:
1488
+ dependencies = target_dict.get(dependency_key, [])
1489
+ for index, dep in enumerate(dependencies):
1490
+ dep_file, dep_target, dep_toolset = gyp.common.ResolveTarget(
1491
+ target_build_file, dep, toolset
1492
+ )
1493
+ if not multiple_toolsets:
1494
+ # Ignore toolset specification in the dependency if it is specified.
1495
+ dep_toolset = toolset
1496
+ dependency = gyp.common.QualifiedTarget(
1497
+ dep_file, dep_target, dep_toolset
1498
+ )
1499
+ dependencies[index] = dependency
1500
+
1501
+ # Make sure anything appearing in a list other than "dependencies" also
1502
+ # appears in the "dependencies" list.
1503
+ if (
1504
+ dependency_key != "dependencies"
1505
+ and dependency not in target_dict["dependencies"]
1506
+ ):
1507
+ raise GypError(
1508
+ "Found "
1509
+ + dependency
1510
+ + " in "
1511
+ + dependency_key
1512
+ + " of "
1513
+ + target
1514
+ + ", but not in dependencies"
1515
+ )
1516
+
1517
+
1518
+ def ExpandWildcardDependencies(targets, data):
1519
+ """Expands dependencies specified as build_file:*.
1520
+
1521
+ For each target in |targets|, examines sections containing links to other
1522
+ targets. If any such section contains a link of the form build_file:*, it
1523
+ is taken as a wildcard link, and is expanded to list each target in
1524
+ build_file. The |data| dict provides access to build file dicts.
1525
+
1526
+ Any target that does not wish to be included by wildcard can provide an
1527
+ optional "suppress_wildcard" key in its target dict. When present and
1528
+ true, a wildcard dependency link will not include such targets.
1529
+
1530
+ All dependency names, including the keys to |targets| and the values in each
1531
+ dependency list, must be qualified when this function is called.
1532
+ """
1533
+
1534
+ for target, target_dict in targets.items():
1535
+ target_build_file = gyp.common.BuildFile(target)
1536
+ for dependency_key in dependency_sections:
1537
+ dependencies = target_dict.get(dependency_key, [])
1538
+
1539
+ # Loop this way instead of "for dependency in" or "for index in range"
1540
+ # because the dependencies list will be modified within the loop body.
1541
+ index = 0
1542
+ while index < len(dependencies):
1543
+ (
1544
+ dependency_build_file,
1545
+ dependency_target,
1546
+ dependency_toolset,
1547
+ ) = gyp.common.ParseQualifiedTarget(dependencies[index])
1548
+ if dependency_target != "*" and dependency_toolset != "*":
1549
+ # Not a wildcard. Keep it moving.
1550
+ index = index + 1
1551
+ continue
1552
+
1553
+ if dependency_build_file == target_build_file:
1554
+ # It's an error for a target to depend on all other targets in
1555
+ # the same file, because a target cannot depend on itself.
1556
+ raise GypError(
1557
+ "Found wildcard in "
1558
+ + dependency_key
1559
+ + " of "
1560
+ + target
1561
+ + " referring to same build file"
1562
+ )
1563
+
1564
+ # Take the wildcard out and adjust the index so that the next
1565
+ # dependency in the list will be processed the next time through the
1566
+ # loop.
1567
+ del dependencies[index]
1568
+ index = index - 1
1569
+
1570
+ # Loop through the targets in the other build file, adding them to
1571
+ # this target's list of dependencies in place of the removed
1572
+ # wildcard.
1573
+ dependency_target_dicts = data[dependency_build_file]["targets"]
1574
+ for dependency_target_dict in dependency_target_dicts:
1575
+ if int(dependency_target_dict.get("suppress_wildcard", False)):
1576
+ continue
1577
+ dependency_target_name = dependency_target_dict["target_name"]
1578
+ if (
1579
+ dependency_target not in {"*", dependency_target_name}
1580
+ ):
1581
+ continue
1582
+ dependency_target_toolset = dependency_target_dict["toolset"]
1583
+ if (
1584
+ dependency_toolset not in {"*", dependency_target_toolset}
1585
+ ):
1586
+ continue
1587
+ dependency = gyp.common.QualifiedTarget(
1588
+ dependency_build_file,
1589
+ dependency_target_name,
1590
+ dependency_target_toolset,
1591
+ )
1592
+ index = index + 1
1593
+ dependencies.insert(index, dependency)
1594
+
1595
+ index = index + 1
1596
+
1597
+
1598
+ def Unify(items):
1599
+ """Removes duplicate elements from items, keeping the first element."""
1600
+ seen = {}
1601
+ return [seen.setdefault(e, e) for e in items if e not in seen]
1602
+
1603
+
1604
+ def RemoveDuplicateDependencies(targets):
1605
+ """Makes sure every dependency appears only once in all targets's dependency
1606
+ lists."""
1607
+ for target_name, target_dict in targets.items():
1608
+ for dependency_key in dependency_sections:
1609
+ dependencies = target_dict.get(dependency_key, [])
1610
+ if dependencies:
1611
+ target_dict[dependency_key] = Unify(dependencies)
1612
+
1613
+
1614
+ def Filter(items, item):
1615
+ """Removes item from items."""
1616
+ res = {}
1617
+ return [res.setdefault(e, e) for e in items if e != item]
1618
+
1619
+
1620
+ def RemoveSelfDependencies(targets):
1621
+ """Remove self dependencies from targets that have the prune_self_dependency
1622
+ variable set."""
1623
+ for target_name, target_dict in targets.items():
1624
+ for dependency_key in dependency_sections:
1625
+ dependencies = target_dict.get(dependency_key, [])
1626
+ if dependencies:
1627
+ for t in dependencies:
1628
+ if t == target_name and (
1629
+ targets[t]
1630
+ .get("variables", {})
1631
+ .get("prune_self_dependency", 0)
1632
+ ):
1633
+ target_dict[dependency_key] = Filter(
1634
+ dependencies, target_name
1635
+ )
1636
+
1637
+
1638
+ def RemoveLinkDependenciesFromNoneTargets(targets):
1639
+ """Remove dependencies having the 'link_dependency' attribute from the 'none'
1640
+ targets."""
1641
+ for target_name, target_dict in targets.items():
1642
+ for dependency_key in dependency_sections:
1643
+ dependencies = target_dict.get(dependency_key, [])
1644
+ if dependencies:
1645
+ for t in dependencies:
1646
+ if target_dict.get("type", None) == "none":
1647
+ if targets[t].get("variables", {}).get("link_dependency", 0):
1648
+ target_dict[dependency_key] = Filter(
1649
+ target_dict[dependency_key], t
1650
+ )
1651
+
1652
+
1653
+ class DependencyGraphNode:
1654
+ """
1655
+
1656
+ Attributes:
1657
+ ref: A reference to an object that this DependencyGraphNode represents.
1658
+ dependencies: List of DependencyGraphNodes on which this one depends.
1659
+ dependents: List of DependencyGraphNodes that depend on this one.
1660
+ """
1661
+
1662
+ class CircularException(GypError):
1663
+ pass
1664
+
1665
+ def __init__(self, ref):
1666
+ self.ref = ref
1667
+ self.dependencies = []
1668
+ self.dependents = []
1669
+
1670
+ def __repr__(self):
1671
+ return "<DependencyGraphNode: %r>" % self.ref
1672
+
1673
+ def FlattenToList(self):
1674
+ # flat_list is the sorted list of dependencies - actually, the list items
1675
+ # are the "ref" attributes of DependencyGraphNodes. Every target will
1676
+ # appear in flat_list after all of its dependencies, and before all of its
1677
+ # dependents.
1678
+ flat_list = OrderedSet()
1679
+
1680
+ def ExtractNodeRef(node):
1681
+ """Extracts the object that the node represents from the given node."""
1682
+ return node.ref
1683
+
1684
+ # in_degree_zeros is the list of DependencyGraphNodes that have no
1685
+ # dependencies not in flat_list. Initially, it is a copy of the children
1686
+ # of this node, because when the graph was built, nodes with no
1687
+ # dependencies were made implicit dependents of the root node.
1688
+ in_degree_zeros = sorted(self.dependents[:], key=ExtractNodeRef)
1689
+
1690
+ while in_degree_zeros:
1691
+ # Nodes in in_degree_zeros have no dependencies not in flat_list, so they
1692
+ # can be appended to flat_list. Take these nodes out of in_degree_zeros
1693
+ # as work progresses, so that the next node to process from the list can
1694
+ # always be accessed at a consistent position.
1695
+ node = in_degree_zeros.pop()
1696
+ flat_list.add(node.ref)
1697
+
1698
+ # Look at dependents of the node just added to flat_list. Some of them
1699
+ # may now belong in in_degree_zeros.
1700
+ for node_dependent in sorted(node.dependents, key=ExtractNodeRef):
1701
+ is_in_degree_zero = True
1702
+ # TODO: We want to check through the
1703
+ # node_dependent.dependencies list but if it's long and we
1704
+ # always start at the beginning, then we get O(n^2) behaviour.
1705
+ for node_dependent_dependency in sorted(
1706
+ node_dependent.dependencies, key=ExtractNodeRef
1707
+ ):
1708
+ if node_dependent_dependency.ref not in flat_list:
1709
+ # The dependent one or more dependencies not in flat_list.
1710
+ # There will be more chances to add it to flat_list
1711
+ # when examining it again as a dependent of those other
1712
+ # dependencies, provided that there are no cycles.
1713
+ is_in_degree_zero = False
1714
+ break
1715
+
1716
+ if is_in_degree_zero:
1717
+ # All of the dependent's dependencies are already in flat_list. Add
1718
+ # it to in_degree_zeros where it will be processed in a future
1719
+ # iteration of the outer loop.
1720
+ in_degree_zeros += [node_dependent]
1721
+
1722
+ return list(flat_list)
1723
+
1724
+ def FindCycles(self):
1725
+ """
1726
+ Returns a list of cycles in the graph, where each cycle is its own list.
1727
+ """
1728
+ results = []
1729
+ visited = set()
1730
+
1731
+ def Visit(node, path):
1732
+ for child in node.dependents:
1733
+ if child in path:
1734
+ results.append([child] + path[: path.index(child) + 1])
1735
+ elif child not in visited:
1736
+ visited.add(child)
1737
+ Visit(child, [child] + path)
1738
+
1739
+ visited.add(self)
1740
+ Visit(self, [self])
1741
+
1742
+ return results
1743
+
1744
+ def DirectDependencies(self, dependencies=None):
1745
+ """Returns a list of just direct dependencies."""
1746
+ if dependencies is None:
1747
+ dependencies = []
1748
+
1749
+ for dependency in self.dependencies:
1750
+ # Check for None, corresponding to the root node.
1751
+ if dependency.ref and dependency.ref not in dependencies:
1752
+ dependencies.append(dependency.ref)
1753
+
1754
+ return dependencies
1755
+
1756
+ def _AddImportedDependencies(self, targets, dependencies=None):
1757
+ """Given a list of direct dependencies, adds indirect dependencies that
1758
+ other dependencies have declared to export their settings.
1759
+
1760
+ This method does not operate on self. Rather, it operates on the list
1761
+ of dependencies in the |dependencies| argument. For each dependency in
1762
+ that list, if any declares that it exports the settings of one of its
1763
+ own dependencies, those dependencies whose settings are "passed through"
1764
+ are added to the list. As new items are added to the list, they too will
1765
+ be processed, so it is possible to import settings through multiple levels
1766
+ of dependencies.
1767
+
1768
+ This method is not terribly useful on its own, it depends on being
1769
+ "primed" with a list of direct dependencies such as one provided by
1770
+ DirectDependencies. DirectAndImportedDependencies is intended to be the
1771
+ public entry point.
1772
+ """
1773
+
1774
+ if dependencies is None:
1775
+ dependencies = []
1776
+
1777
+ index = 0
1778
+ while index < len(dependencies):
1779
+ dependency = dependencies[index]
1780
+ dependency_dict = targets[dependency]
1781
+ # Add any dependencies whose settings should be imported to the list
1782
+ # if not already present. Newly-added items will be checked for
1783
+ # their own imports when the list iteration reaches them.
1784
+ # Rather than simply appending new items, insert them after the
1785
+ # dependency that exported them. This is done to more closely match
1786
+ # the depth-first method used by DeepDependencies.
1787
+ add_index = 1
1788
+ for imported_dependency in dependency_dict.get(
1789
+ "export_dependent_settings", []
1790
+ ):
1791
+ if imported_dependency not in dependencies:
1792
+ dependencies.insert(index + add_index, imported_dependency)
1793
+ add_index = add_index + 1
1794
+ index = index + 1
1795
+
1796
+ return dependencies
1797
+
1798
+ def DirectAndImportedDependencies(self, targets, dependencies=None):
1799
+ """Returns a list of a target's direct dependencies and all indirect
1800
+ dependencies that a dependency has advertised settings should be exported
1801
+ through the dependency for.
1802
+ """
1803
+
1804
+ dependencies = self.DirectDependencies(dependencies)
1805
+ return self._AddImportedDependencies(targets, dependencies)
1806
+
1807
+ def DeepDependencies(self, dependencies=None):
1808
+ """Returns an OrderedSet of all of a target's dependencies, recursively."""
1809
+ if dependencies is None:
1810
+ # Using a list to get ordered output and a set to do fast "is it
1811
+ # already added" checks.
1812
+ dependencies = OrderedSet()
1813
+
1814
+ for dependency in self.dependencies:
1815
+ # Check for None, corresponding to the root node.
1816
+ if dependency.ref is None:
1817
+ continue
1818
+ if dependency.ref not in dependencies:
1819
+ dependency.DeepDependencies(dependencies)
1820
+ dependencies.add(dependency.ref)
1821
+
1822
+ return dependencies
1823
+
1824
+ def _LinkDependenciesInternal(
1825
+ self, targets, include_shared_libraries, dependencies=None, initial=True
1826
+ ):
1827
+ """Returns an OrderedSet of dependency targets that are linked
1828
+ into this target.
1829
+
1830
+ This function has a split personality, depending on the setting of
1831
+ |initial|. Outside callers should always leave |initial| at its default
1832
+ setting.
1833
+
1834
+ When adding a target to the list of dependencies, this function will
1835
+ recurse into itself with |initial| set to False, to collect dependencies
1836
+ that are linked into the linkable target for which the list is being built.
1837
+
1838
+ If |include_shared_libraries| is False, the resulting dependencies will not
1839
+ include shared_library targets that are linked into this target.
1840
+ """
1841
+ if dependencies is None:
1842
+ # Using a list to get ordered output and a set to do fast "is it
1843
+ # already added" checks.
1844
+ dependencies = OrderedSet()
1845
+
1846
+ # Check for None, corresponding to the root node.
1847
+ if self.ref is None:
1848
+ return dependencies
1849
+
1850
+ # It's kind of sucky that |targets| has to be passed into this function,
1851
+ # but that's presently the easiest way to access the target dicts so that
1852
+ # this function can find target types.
1853
+
1854
+ if "target_name" not in targets[self.ref]:
1855
+ raise GypError("Missing 'target_name' field in target.")
1856
+
1857
+ if "type" not in targets[self.ref]:
1858
+ raise GypError(
1859
+ "Missing 'type' field in target %s" % targets[self.ref]["target_name"]
1860
+ )
1861
+
1862
+ target_type = targets[self.ref]["type"]
1863
+
1864
+ is_linkable = target_type in linkable_types
1865
+
1866
+ if initial and not is_linkable:
1867
+ # If this is the first target being examined and it's not linkable,
1868
+ # return an empty list of link dependencies, because the link
1869
+ # dependencies are intended to apply to the target itself (initial is
1870
+ # True) and this target won't be linked.
1871
+ return dependencies
1872
+
1873
+ # Don't traverse 'none' targets if explicitly excluded.
1874
+ if target_type == "none" and not targets[self.ref].get(
1875
+ "dependencies_traverse", True
1876
+ ):
1877
+ dependencies.add(self.ref)
1878
+ return dependencies
1879
+
1880
+ # Executables, mac kernel extensions, windows drivers and loadable modules
1881
+ # are already fully and finally linked. Nothing else can be a link
1882
+ # dependency of them, there can only be dependencies in the sense that a
1883
+ # dependent target might run an executable or load the loadable_module.
1884
+ if not initial and target_type in (
1885
+ "executable",
1886
+ "loadable_module",
1887
+ "mac_kernel_extension",
1888
+ "windows_driver",
1889
+ ):
1890
+ return dependencies
1891
+
1892
+ # Shared libraries are already fully linked. They should only be included
1893
+ # in |dependencies| when adjusting static library dependencies (in order to
1894
+ # link against the shared_library's import lib), but should not be included
1895
+ # in |dependencies| when propagating link_settings.
1896
+ # The |include_shared_libraries| flag controls which of these two cases we
1897
+ # are handling.
1898
+ if (
1899
+ not initial
1900
+ and target_type == "shared_library"
1901
+ and not include_shared_libraries
1902
+ ):
1903
+ return dependencies
1904
+
1905
+ # The target is linkable, add it to the list of link dependencies.
1906
+ if self.ref not in dependencies:
1907
+ dependencies.add(self.ref)
1908
+ if initial or not is_linkable:
1909
+ # If this is a subsequent target and it's linkable, don't look any
1910
+ # further for linkable dependencies, as they'll already be linked into
1911
+ # this target linkable. Always look at dependencies of the initial
1912
+ # target, and always look at dependencies of non-linkables.
1913
+ for dependency in self.dependencies:
1914
+ dependency._LinkDependenciesInternal(
1915
+ targets, include_shared_libraries, dependencies, False
1916
+ )
1917
+
1918
+ return dependencies
1919
+
1920
+ def DependenciesForLinkSettings(self, targets):
1921
+ """
1922
+ Returns a list of dependency targets whose link_settings should be merged
1923
+ into this target.
1924
+ """
1925
+
1926
+ # TODO(sbaig) Currently, chrome depends on the bug that shared libraries'
1927
+ # link_settings are propagated. So for now, we will allow it, unless the
1928
+ # 'allow_sharedlib_linksettings_propagation' flag is explicitly set to
1929
+ # False. Once chrome is fixed, we can remove this flag.
1930
+ include_shared_libraries = targets[self.ref].get(
1931
+ "allow_sharedlib_linksettings_propagation", True
1932
+ )
1933
+ return self._LinkDependenciesInternal(targets, include_shared_libraries)
1934
+
1935
+ def DependenciesToLinkAgainst(self, targets):
1936
+ """
1937
+ Returns a list of dependency targets that are linked into this target.
1938
+ """
1939
+ return self._LinkDependenciesInternal(targets, True)
1940
+
1941
+
1942
+ def BuildDependencyList(targets):
1943
+ # Create a DependencyGraphNode for each target. Put it into a dict for easy
1944
+ # access.
1945
+ dependency_nodes = {}
1946
+ for target, spec in targets.items():
1947
+ if target not in dependency_nodes:
1948
+ dependency_nodes[target] = DependencyGraphNode(target)
1949
+
1950
+ # Set up the dependency links. Targets that have no dependencies are treated
1951
+ # as dependent on root_node.
1952
+ root_node = DependencyGraphNode(None)
1953
+ for target, spec in targets.items():
1954
+ target_node = dependency_nodes[target]
1955
+ dependencies = spec.get("dependencies")
1956
+ if not dependencies:
1957
+ target_node.dependencies = [root_node]
1958
+ root_node.dependents.append(target_node)
1959
+ else:
1960
+ for dependency in dependencies:
1961
+ dependency_node = dependency_nodes.get(dependency)
1962
+ if not dependency_node:
1963
+ raise GypError(
1964
+ "Dependency '%s' not found while "
1965
+ "trying to load target %s" % (dependency, target)
1966
+ )
1967
+ target_node.dependencies.append(dependency_node)
1968
+ dependency_node.dependents.append(target_node)
1969
+
1970
+ flat_list = root_node.FlattenToList()
1971
+
1972
+ # If there's anything left unvisited, there must be a circular dependency
1973
+ # (cycle).
1974
+ if len(flat_list) != len(targets):
1975
+ if not root_node.dependents:
1976
+ # If all targets have dependencies, add the first target as a dependent
1977
+ # of root_node so that the cycle can be discovered from root_node.
1978
+ target = next(iter(targets))
1979
+ target_node = dependency_nodes[target]
1980
+ target_node.dependencies.append(root_node)
1981
+ root_node.dependents.append(target_node)
1982
+
1983
+ cycles = []
1984
+ for cycle in root_node.FindCycles():
1985
+ paths = [node.ref for node in cycle]
1986
+ cycles.append("Cycle: %s" % " -> ".join(paths))
1987
+ raise DependencyGraphNode.CircularException(
1988
+ "Cycles in dependency graph detected:\n" + "\n".join(cycles)
1989
+ )
1990
+
1991
+ return [dependency_nodes, flat_list]
1992
+
1993
+
1994
+ def VerifyNoGYPFileCircularDependencies(targets):
1995
+ # Create a DependencyGraphNode for each gyp file containing a target. Put
1996
+ # it into a dict for easy access.
1997
+ dependency_nodes = {}
1998
+ for target in targets:
1999
+ build_file = gyp.common.BuildFile(target)
2000
+ if build_file not in dependency_nodes:
2001
+ dependency_nodes[build_file] = DependencyGraphNode(build_file)
2002
+
2003
+ # Set up the dependency links.
2004
+ for target, spec in targets.items():
2005
+ build_file = gyp.common.BuildFile(target)
2006
+ build_file_node = dependency_nodes[build_file]
2007
+ target_dependencies = spec.get("dependencies", [])
2008
+ for dependency in target_dependencies:
2009
+ try:
2010
+ dependency_build_file = gyp.common.BuildFile(dependency)
2011
+ except GypError as e:
2012
+ gyp.common.ExceptionAppend(
2013
+ e, "while computing dependencies of .gyp file %s" % build_file
2014
+ )
2015
+ raise
2016
+
2017
+ if dependency_build_file == build_file:
2018
+ # A .gyp file is allowed to refer back to itself.
2019
+ continue
2020
+ dependency_node = dependency_nodes.get(dependency_build_file)
2021
+ if not dependency_node:
2022
+ raise GypError("Dependency '%s' not found" % dependency_build_file)
2023
+ if dependency_node not in build_file_node.dependencies:
2024
+ build_file_node.dependencies.append(dependency_node)
2025
+ dependency_node.dependents.append(build_file_node)
2026
+
2027
+ # Files that have no dependencies are treated as dependent on root_node.
2028
+ root_node = DependencyGraphNode(None)
2029
+ for build_file_node in dependency_nodes.values():
2030
+ if len(build_file_node.dependencies) == 0:
2031
+ build_file_node.dependencies.append(root_node)
2032
+ root_node.dependents.append(build_file_node)
2033
+
2034
+ flat_list = root_node.FlattenToList()
2035
+
2036
+ # If there's anything left unvisited, there must be a circular dependency
2037
+ # (cycle).
2038
+ if len(flat_list) != len(dependency_nodes):
2039
+ if not root_node.dependents:
2040
+ # If all files have dependencies, add the first file as a dependent
2041
+ # of root_node so that the cycle can be discovered from root_node.
2042
+ file_node = next(iter(dependency_nodes.values()))
2043
+ file_node.dependencies.append(root_node)
2044
+ root_node.dependents.append(file_node)
2045
+ cycles = []
2046
+ for cycle in root_node.FindCycles():
2047
+ paths = [node.ref for node in cycle]
2048
+ cycles.append("Cycle: %s" % " -> ".join(paths))
2049
+ raise DependencyGraphNode.CircularException(
2050
+ "Cycles in .gyp file dependency graph detected:\n" + "\n".join(cycles)
2051
+ )
2052
+
2053
+
2054
+ def DoDependentSettings(key, flat_list, targets, dependency_nodes):
2055
+ # key should be one of all_dependent_settings, direct_dependent_settings,
2056
+ # or link_settings.
2057
+
2058
+ for target in flat_list:
2059
+ target_dict = targets[target]
2060
+ build_file = gyp.common.BuildFile(target)
2061
+
2062
+ if key == "all_dependent_settings":
2063
+ dependencies = dependency_nodes[target].DeepDependencies()
2064
+ elif key == "direct_dependent_settings":
2065
+ dependencies = dependency_nodes[target].DirectAndImportedDependencies(
2066
+ targets
2067
+ )
2068
+ elif key == "link_settings":
2069
+ dependencies = dependency_nodes[target].DependenciesForLinkSettings(targets)
2070
+ else:
2071
+ raise GypError(
2072
+ "DoDependentSettings doesn't know how to determine "
2073
+ "dependencies for " + key
2074
+ )
2075
+
2076
+ for dependency in dependencies:
2077
+ dependency_dict = targets[dependency]
2078
+ if key not in dependency_dict:
2079
+ continue
2080
+ dependency_build_file = gyp.common.BuildFile(dependency)
2081
+ MergeDicts(
2082
+ target_dict, dependency_dict[key], build_file, dependency_build_file
2083
+ )
2084
+
2085
+
2086
+ def AdjustStaticLibraryDependencies(
2087
+ flat_list, targets, dependency_nodes, sort_dependencies
2088
+ ):
2089
+ # Recompute target "dependencies" properties. For each static library
2090
+ # target, remove "dependencies" entries referring to other static libraries,
2091
+ # unless the dependency has the "hard_dependency" attribute set. For each
2092
+ # linkable target, add a "dependencies" entry referring to all of the
2093
+ # target's computed list of link dependencies (including static libraries
2094
+ # if no such entry is already present.
2095
+ for target in flat_list:
2096
+ target_dict = targets[target]
2097
+ target_type = target_dict["type"]
2098
+
2099
+ if target_type == "static_library":
2100
+ if "dependencies" not in target_dict:
2101
+ continue
2102
+
2103
+ target_dict["dependencies_original"] = target_dict.get("dependencies", [])[
2104
+ :
2105
+ ]
2106
+
2107
+ # A static library should not depend on another static library unless
2108
+ # the dependency relationship is "hard," which should only be done when
2109
+ # a dependent relies on some side effect other than just the build
2110
+ # product, like a rule or action output. Further, if a target has a
2111
+ # non-hard dependency, but that dependency exports a hard dependency,
2112
+ # the non-hard dependency can safely be removed, but the exported hard
2113
+ # dependency must be added to the target to keep the same dependency
2114
+ # ordering.
2115
+ dependencies = dependency_nodes[target].DirectAndImportedDependencies(
2116
+ targets
2117
+ )
2118
+ index = 0
2119
+ while index < len(dependencies):
2120
+ dependency = dependencies[index]
2121
+ dependency_dict = targets[dependency]
2122
+
2123
+ # Remove every non-hard static library dependency and remove every
2124
+ # non-static library dependency that isn't a direct dependency.
2125
+ if (
2126
+ dependency_dict["type"] == "static_library"
2127
+ and not dependency_dict.get("hard_dependency", False)
2128
+ ) or (
2129
+ dependency_dict["type"] != "static_library"
2130
+ and dependency not in target_dict["dependencies"]
2131
+ ):
2132
+ # Take the dependency out of the list, and don't increment index
2133
+ # because the next dependency to analyze will shift into the index
2134
+ # formerly occupied by the one being removed.
2135
+ del dependencies[index]
2136
+ else:
2137
+ index = index + 1
2138
+
2139
+ # Update the dependencies. If the dependencies list is empty, it's not
2140
+ # needed, so unhook it.
2141
+ if len(dependencies) > 0:
2142
+ target_dict["dependencies"] = dependencies
2143
+ else:
2144
+ del target_dict["dependencies"]
2145
+
2146
+ elif target_type in linkable_types:
2147
+ # Get a list of dependency targets that should be linked into this
2148
+ # target. Add them to the dependencies list if they're not already
2149
+ # present.
2150
+
2151
+ link_dependencies = dependency_nodes[target].DependenciesToLinkAgainst(
2152
+ targets
2153
+ )
2154
+ for dependency in link_dependencies:
2155
+ if dependency == target:
2156
+ continue
2157
+ if "dependencies" not in target_dict:
2158
+ target_dict["dependencies"] = []
2159
+ if dependency not in target_dict["dependencies"]:
2160
+ target_dict["dependencies"].append(dependency)
2161
+ # Sort the dependencies list in the order from dependents to dependencies.
2162
+ # e.g. If A and B depend on C and C depends on D, sort them in A, B, C, D.
2163
+ # Note: flat_list is already sorted in the order from dependencies to
2164
+ # dependents.
2165
+ if sort_dependencies and "dependencies" in target_dict:
2166
+ target_dict["dependencies"] = [
2167
+ dep
2168
+ for dep in reversed(flat_list)
2169
+ if dep in target_dict["dependencies"]
2170
+ ]
2171
+
2172
+
2173
+ # Initialize this here to speed up MakePathRelative.
2174
+ exception_re = re.compile(r"""["']?[-/$<>^]""")
2175
+
2176
+
2177
+ def MakePathRelative(to_file, fro_file, item):
2178
+ # If item is a relative path, it's relative to the build file dict that it's
2179
+ # coming from. Fix it up to make it relative to the build file dict that
2180
+ # it's going into.
2181
+ # Exception: any |item| that begins with these special characters is
2182
+ # returned without modification.
2183
+ # / Used when a path is already absolute (shortcut optimization;
2184
+ # such paths would be returned as absolute anyway)
2185
+ # $ Used for build environment variables
2186
+ # - Used for some build environment flags (such as -lapr-1 in a
2187
+ # "libraries" section)
2188
+ # < Used for our own variable and command expansions (see ExpandVariables)
2189
+ # > Used for our own variable and command expansions (see ExpandVariables)
2190
+ # ^ Used for our own variable and command expansions (see ExpandVariables)
2191
+ #
2192
+ # "/' Used when a value is quoted. If these are present, then we
2193
+ # check the second character instead.
2194
+ #
2195
+ if to_file == fro_file or exception_re.match(item):
2196
+ return item
2197
+ else:
2198
+ # TODO(dglazkov) The backslash/forward-slash replacement at the end is a
2199
+ # temporary measure. This should really be addressed by keeping all paths
2200
+ # in POSIX until actual project generation.
2201
+ ret = os.path.normpath(
2202
+ os.path.join(
2203
+ gyp.common.RelativePath(
2204
+ os.path.dirname(fro_file), os.path.dirname(to_file)
2205
+ ),
2206
+ item,
2207
+ )
2208
+ ).replace("\\", "/")
2209
+ if item.endswith("/"):
2210
+ ret += "/"
2211
+ return ret
2212
+
2213
+
2214
+ def MergeLists(to, fro, to_file, fro_file, is_paths=False, append=True):
2215
+ # Python documentation recommends objects which do not support hash
2216
+ # set this value to None. Python library objects follow this rule.
2217
+ def is_hashable(val):
2218
+ return val.__hash__
2219
+
2220
+ # If x is hashable, returns whether x is in s. Else returns whether x is in items.
2221
+ def is_in_set_or_list(x, s, items):
2222
+ if is_hashable(x):
2223
+ return x in s
2224
+ return x in items
2225
+
2226
+ prepend_index = 0
2227
+
2228
+ # Make membership testing of hashables in |to| (in particular, strings)
2229
+ # faster.
2230
+ hashable_to_set = {x for x in to if is_hashable(x)}
2231
+ for item in fro:
2232
+ singleton = False
2233
+ if type(item) in (str, int):
2234
+ # The cheap and easy case.
2235
+ to_item = MakePathRelative(to_file, fro_file, item) if is_paths else item
2236
+
2237
+ if not (type(item) is str and item.startswith("-")):
2238
+ # Any string that doesn't begin with a "-" is a singleton - it can
2239
+ # only appear once in a list, to be enforced by the list merge append
2240
+ # or prepend.
2241
+ singleton = True
2242
+ elif type(item) is dict:
2243
+ # Make a copy of the dictionary, continuing to look for paths to fix.
2244
+ # The other intelligent aspects of merge processing won't apply because
2245
+ # item is being merged into an empty dict.
2246
+ to_item = {}
2247
+ MergeDicts(to_item, item, to_file, fro_file)
2248
+ elif type(item) is list:
2249
+ # Recurse, making a copy of the list. If the list contains any
2250
+ # descendant dicts, path fixing will occur. Note that here, custom
2251
+ # values for is_paths and append are dropped; those are only to be
2252
+ # applied to |to| and |fro|, not sublists of |fro|. append shouldn't
2253
+ # matter anyway because the new |to_item| list is empty.
2254
+ to_item = []
2255
+ MergeLists(to_item, item, to_file, fro_file)
2256
+ else:
2257
+ raise TypeError(
2258
+ "Attempt to merge list item of unsupported type "
2259
+ + item.__class__.__name__
2260
+ )
2261
+
2262
+ if append:
2263
+ # If appending a singleton that's already in the list, don't append.
2264
+ # This ensures that the earliest occurrence of the item will stay put.
2265
+ if not singleton or not is_in_set_or_list(to_item, hashable_to_set, to):
2266
+ to.append(to_item)
2267
+ if is_hashable(to_item):
2268
+ hashable_to_set.add(to_item)
2269
+ else:
2270
+ # If prepending a singleton that's already in the list, remove the
2271
+ # existing instance and proceed with the prepend. This ensures that the
2272
+ # item appears at the earliest possible position in the list.
2273
+ while singleton and to_item in to:
2274
+ to.remove(to_item)
2275
+
2276
+ # Don't just insert everything at index 0. That would prepend the new
2277
+ # items to the list in reverse order, which would be an unwelcome
2278
+ # surprise.
2279
+ to.insert(prepend_index, to_item)
2280
+ if is_hashable(to_item):
2281
+ hashable_to_set.add(to_item)
2282
+ prepend_index = prepend_index + 1
2283
+
2284
+
2285
+ def MergeDicts(to, fro, to_file, fro_file):
2286
+ # I wanted to name the parameter "from" but it's a Python keyword...
2287
+ for k, v in fro.items():
2288
+ # It would be nice to do "if not k in to: to[k] = v" but that wouldn't give
2289
+ # copy semantics. Something else may want to merge from the |fro| dict
2290
+ # later, and having the same dict ref pointed to twice in the tree isn't
2291
+ # what anyone wants considering that the dicts may subsequently be
2292
+ # modified.
2293
+ if k in to:
2294
+ bad_merge = False
2295
+ if type(v) in (str, int):
2296
+ if type(to[k]) not in (str, int):
2297
+ bad_merge = True
2298
+ elif not isinstance(v, type(to[k])):
2299
+ bad_merge = True
2300
+
2301
+ if bad_merge:
2302
+ raise TypeError(
2303
+ "Attempt to merge dict value of type "
2304
+ + v.__class__.__name__
2305
+ + " into incompatible type "
2306
+ + to[k].__class__.__name__
2307
+ + " for key "
2308
+ + k
2309
+ )
2310
+ if type(v) in (str, int):
2311
+ # Overwrite the existing value, if any. Cheap and easy.
2312
+ is_path = IsPathSection(k)
2313
+ if is_path:
2314
+ to[k] = MakePathRelative(to_file, fro_file, v)
2315
+ else:
2316
+ to[k] = v
2317
+ elif type(v) is dict:
2318
+ # Recurse, guaranteeing copies will be made of objects that require it.
2319
+ if k not in to:
2320
+ to[k] = {}
2321
+ MergeDicts(to[k], v, to_file, fro_file)
2322
+ elif type(v) is list:
2323
+ # Lists in dicts can be merged with different policies, depending on
2324
+ # how the key in the "from" dict (k, the from-key) is written.
2325
+ #
2326
+ # If the from-key has ...the to-list will have this action
2327
+ # this character appended:... applied when receiving the from-list:
2328
+ # = replace
2329
+ # + prepend
2330
+ # ? set, only if to-list does not yet exist
2331
+ # (none) append
2332
+ #
2333
+ # This logic is list-specific, but since it relies on the associated
2334
+ # dict key, it's checked in this dict-oriented function.
2335
+ ext = k[-1]
2336
+ append = True
2337
+ if ext == "=":
2338
+ list_base = k[:-1]
2339
+ lists_incompatible = [list_base, list_base + "?"]
2340
+ to[list_base] = []
2341
+ elif ext == "+":
2342
+ list_base = k[:-1]
2343
+ lists_incompatible = [list_base + "=", list_base + "?"]
2344
+ append = False
2345
+ elif ext == "?":
2346
+ list_base = k[:-1]
2347
+ lists_incompatible = [list_base, list_base + "=", list_base + "+"]
2348
+ else:
2349
+ list_base = k
2350
+ lists_incompatible = [list_base + "=", list_base + "?"]
2351
+
2352
+ # Some combinations of merge policies appearing together are meaningless.
2353
+ # It's stupid to replace and append simultaneously, for example. Append
2354
+ # and prepend are the only policies that can coexist.
2355
+ for list_incompatible in lists_incompatible:
2356
+ if list_incompatible in fro:
2357
+ raise GypError(
2358
+ "Incompatible list policies " + k + " and " + list_incompatible
2359
+ )
2360
+
2361
+ if list_base in to:
2362
+ if ext == "?":
2363
+ # If the key ends in "?", the list will only be merged if it doesn't
2364
+ # already exist.
2365
+ continue
2366
+ elif type(to[list_base]) is not list:
2367
+ # This may not have been checked above if merging in a list with an
2368
+ # extension character.
2369
+ raise TypeError(
2370
+ "Attempt to merge dict value of type "
2371
+ + v.__class__.__name__
2372
+ + " into incompatible type "
2373
+ + to[list_base].__class__.__name__
2374
+ + " for key "
2375
+ + list_base
2376
+ + "("
2377
+ + k
2378
+ + ")"
2379
+ )
2380
+ else:
2381
+ to[list_base] = []
2382
+
2383
+ # Call MergeLists, which will make copies of objects that require it.
2384
+ # MergeLists can recurse back into MergeDicts, although this will be
2385
+ # to make copies of dicts (with paths fixed), there will be no
2386
+ # subsequent dict "merging" once entering a list because lists are
2387
+ # always replaced, appended to, or prepended to.
2388
+ is_paths = IsPathSection(list_base)
2389
+ MergeLists(to[list_base], v, to_file, fro_file, is_paths, append)
2390
+ else:
2391
+ raise TypeError(
2392
+ "Attempt to merge dict value of unsupported type "
2393
+ + v.__class__.__name__
2394
+ + " for key "
2395
+ + k
2396
+ )
2397
+
2398
+
2399
+ def MergeConfigWithInheritance(
2400
+ new_configuration_dict, build_file, target_dict, configuration, visited
2401
+ ):
2402
+ # Skip if previously visited.
2403
+ if configuration in visited:
2404
+ return
2405
+
2406
+ # Look at this configuration.
2407
+ configuration_dict = target_dict["configurations"][configuration]
2408
+
2409
+ # Merge in parents.
2410
+ for parent in configuration_dict.get("inherit_from", []):
2411
+ MergeConfigWithInheritance(
2412
+ new_configuration_dict,
2413
+ build_file,
2414
+ target_dict,
2415
+ parent,
2416
+ visited + [configuration],
2417
+ )
2418
+
2419
+ # Merge it into the new config.
2420
+ MergeDicts(new_configuration_dict, configuration_dict, build_file, build_file)
2421
+
2422
+ # Drop abstract.
2423
+ if "abstract" in new_configuration_dict:
2424
+ del new_configuration_dict["abstract"]
2425
+
2426
+
2427
+ def SetUpConfigurations(target, target_dict):
2428
+ # key_suffixes is a list of key suffixes that might appear on key names.
2429
+ # These suffixes are handled in conditional evaluations (for =, +, and ?)
2430
+ # and rules/exclude processing (for ! and /). Keys with these suffixes
2431
+ # should be treated the same as keys without.
2432
+ key_suffixes = ["=", "+", "?", "!", "/"]
2433
+
2434
+ build_file = gyp.common.BuildFile(target)
2435
+
2436
+ # Provide a single configuration by default if none exists.
2437
+ # TODO(mark): Signal an error if default_configurations exists but
2438
+ # configurations does not.
2439
+ if "configurations" not in target_dict:
2440
+ target_dict["configurations"] = {"Default": {}}
2441
+ if "default_configuration" not in target_dict:
2442
+ concrete = [
2443
+ i
2444
+ for (i, config) in target_dict["configurations"].items()
2445
+ if not config.get("abstract")
2446
+ ]
2447
+ target_dict["default_configuration"] = sorted(concrete)[0]
2448
+
2449
+ merged_configurations = {}
2450
+ configs = target_dict["configurations"]
2451
+ for (configuration, old_configuration_dict) in configs.items():
2452
+ # Skip abstract configurations (saves work only).
2453
+ if old_configuration_dict.get("abstract"):
2454
+ continue
2455
+ # Configurations inherit (most) settings from the enclosing target scope.
2456
+ # Get the inheritance relationship right by making a copy of the target
2457
+ # dict.
2458
+ new_configuration_dict = {}
2459
+ for (key, target_val) in target_dict.items():
2460
+ key_ext = key[-1:]
2461
+ key_base = key[:-1] if key_ext in key_suffixes else key
2462
+ if key_base not in non_configuration_keys:
2463
+ new_configuration_dict[key] = gyp.simple_copy.deepcopy(target_val)
2464
+
2465
+ # Merge in configuration (with all its parents first).
2466
+ MergeConfigWithInheritance(
2467
+ new_configuration_dict, build_file, target_dict, configuration, []
2468
+ )
2469
+
2470
+ merged_configurations[configuration] = new_configuration_dict
2471
+
2472
+ # Put the new configurations back into the target dict as a configuration.
2473
+ for configuration in merged_configurations:
2474
+ target_dict["configurations"][configuration] = merged_configurations[
2475
+ configuration
2476
+ ]
2477
+
2478
+ # Now drop all the abstract ones.
2479
+ configs = target_dict["configurations"]
2480
+ target_dict["configurations"] = {
2481
+ k: v for k, v in configs.items() if not v.get("abstract")
2482
+ }
2483
+
2484
+ # Now that all of the target's configurations have been built, go through
2485
+ # the target dict's keys and remove everything that's been moved into a
2486
+ # "configurations" section.
2487
+ delete_keys = []
2488
+ for key in target_dict:
2489
+ key_ext = key[-1:]
2490
+ key_base = key[:-1] if key_ext in key_suffixes else key
2491
+ if key_base not in non_configuration_keys:
2492
+ delete_keys.append(key)
2493
+ for key in delete_keys:
2494
+ del target_dict[key]
2495
+
2496
+ # Check the configurations to see if they contain invalid keys.
2497
+ for configuration in target_dict["configurations"]:
2498
+ configuration_dict = target_dict["configurations"][configuration]
2499
+ for key in configuration_dict:
2500
+ if key in invalid_configuration_keys:
2501
+ raise GypError(
2502
+ "%s not allowed in the %s configuration, found in "
2503
+ "target %s" % (key, configuration, target)
2504
+ )
2505
+
2506
+
2507
+ def ProcessListFiltersInDict(name, the_dict):
2508
+ """Process regular expression and exclusion-based filters on lists.
2509
+
2510
+ An exclusion list is in a dict key named with a trailing "!", like
2511
+ "sources!". Every item in such a list is removed from the associated
2512
+ main list, which in this example, would be "sources". Removed items are
2513
+ placed into a "sources_excluded" list in the dict.
2514
+
2515
+ Regular expression (regex) filters are contained in dict keys named with a
2516
+ trailing "/", such as "sources/" to operate on the "sources" list. Regex
2517
+ filters in a dict take the form:
2518
+ 'sources/': [ ['exclude', '_(linux|mac|win)\\.cc$'],
2519
+ ['include', '_mac\\.cc$'] ],
2520
+ The first filter says to exclude all files ending in _linux.cc, _mac.cc, and
2521
+ _win.cc. The second filter then includes all files ending in _mac.cc that
2522
+ are now or were once in the "sources" list. Items matching an "exclude"
2523
+ filter are subject to the same processing as would occur if they were listed
2524
+ by name in an exclusion list (ending in "!"). Items matching an "include"
2525
+ filter are brought back into the main list if previously excluded by an
2526
+ exclusion list or exclusion regex filter. Subsequent matching "exclude"
2527
+ patterns can still cause items to be excluded after matching an "include".
2528
+ """
2529
+
2530
+ # Look through the dictionary for any lists whose keys end in "!" or "/".
2531
+ # These are lists that will be treated as exclude lists and regular
2532
+ # expression-based exclude/include lists. Collect the lists that are
2533
+ # needed first, looking for the lists that they operate on, and assemble
2534
+ # then into |lists|. This is done in a separate loop up front, because
2535
+ # the _included and _excluded keys need to be added to the_dict, and that
2536
+ # can't be done while iterating through it.
2537
+
2538
+ lists = []
2539
+ del_lists = []
2540
+ for key, value in the_dict.items():
2541
+ operation = key[-1]
2542
+ if operation not in {"!", "/"}:
2543
+ continue
2544
+
2545
+ if type(value) is not list:
2546
+ raise ValueError(
2547
+ name + " key " + key + " must be list, not " + value.__class__.__name__
2548
+ )
2549
+
2550
+ list_key = key[:-1]
2551
+ if list_key not in the_dict:
2552
+ # This happens when there's a list like "sources!" but no corresponding
2553
+ # "sources" list. Since there's nothing for it to operate on, queue up
2554
+ # the "sources!" list for deletion now.
2555
+ del_lists.append(key)
2556
+ continue
2557
+
2558
+ if type(the_dict[list_key]) is not list:
2559
+ value = the_dict[list_key]
2560
+ raise ValueError(
2561
+ name
2562
+ + " key "
2563
+ + list_key
2564
+ + " must be list, not "
2565
+ + value.__class__.__name__
2566
+ + " when applying "
2567
+ + {"!": "exclusion", "/": "regex"}[operation]
2568
+ )
2569
+
2570
+ if list_key not in lists:
2571
+ lists.append(list_key)
2572
+
2573
+ # Delete the lists that are known to be unneeded at this point.
2574
+ for del_list in del_lists:
2575
+ del the_dict[del_list]
2576
+
2577
+ for list_key in lists:
2578
+ the_list = the_dict[list_key]
2579
+
2580
+ # Initialize the list_actions list, which is parallel to the_list. Each
2581
+ # item in list_actions identifies whether the corresponding item in
2582
+ # the_list should be excluded, unconditionally preserved (included), or
2583
+ # whether no exclusion or inclusion has been applied. Items for which
2584
+ # no exclusion or inclusion has been applied (yet) have value -1, items
2585
+ # excluded have value 0, and items included have value 1. Includes and
2586
+ # excludes override previous actions. All items in list_actions are
2587
+ # initialized to -1 because no excludes or includes have been processed
2588
+ # yet.
2589
+ list_actions = list((-1,) * len(the_list))
2590
+
2591
+ exclude_key = list_key + "!"
2592
+ if exclude_key in the_dict:
2593
+ for exclude_item in the_dict[exclude_key]:
2594
+ for index, list_item in enumerate(the_list):
2595
+ if exclude_item == list_item:
2596
+ # This item matches the exclude_item, so set its action to 0
2597
+ # (exclude).
2598
+ list_actions[index] = 0
2599
+
2600
+ # The "whatever!" list is no longer needed, dump it.
2601
+ del the_dict[exclude_key]
2602
+
2603
+ regex_key = list_key + "/"
2604
+ if regex_key in the_dict:
2605
+ for regex_item in the_dict[regex_key]:
2606
+ [action, pattern] = regex_item
2607
+ pattern_re = re.compile(pattern)
2608
+
2609
+ if action == "exclude":
2610
+ # This item matches an exclude regex, set its value to 0 (exclude).
2611
+ action_value = 0
2612
+ elif action == "include":
2613
+ # This item matches an include regex, set its value to 1 (include).
2614
+ action_value = 1
2615
+ else:
2616
+ # This is an action that doesn't make any sense.
2617
+ raise ValueError(
2618
+ "Unrecognized action "
2619
+ + action
2620
+ + " in "
2621
+ + name
2622
+ + " key "
2623
+ + regex_key
2624
+ )
2625
+
2626
+ for index, list_item in enumerate(the_list):
2627
+ if list_actions[index] == action_value:
2628
+ # Even if the regex matches, nothing will change so continue
2629
+ # (regex searches are expensive).
2630
+ continue
2631
+ if pattern_re.search(list_item):
2632
+ # Regular expression match.
2633
+ list_actions[index] = action_value
2634
+
2635
+ # The "whatever/" list is no longer needed, dump it.
2636
+ del the_dict[regex_key]
2637
+
2638
+ # Add excluded items to the excluded list.
2639
+ #
2640
+ # Note that exclude_key ("sources!") is different from excluded_key
2641
+ # ("sources_excluded"). The exclude_key list is input and it was already
2642
+ # processed and deleted; the excluded_key list is output and it's about
2643
+ # to be created.
2644
+ excluded_key = list_key + "_excluded"
2645
+ if excluded_key in the_dict:
2646
+ raise GypError(
2647
+ name + " key " + excluded_key + " must not be present prior "
2648
+ " to applying exclusion/regex filters for " + list_key
2649
+ )
2650
+
2651
+ excluded_list = []
2652
+
2653
+ # Go backwards through the list_actions list so that as items are deleted,
2654
+ # the indices of items that haven't been seen yet don't shift. That means
2655
+ # that things need to be prepended to excluded_list to maintain them in the
2656
+ # same order that they existed in the_list.
2657
+ for index in range(len(list_actions) - 1, -1, -1):
2658
+ if list_actions[index] == 0:
2659
+ # Dump anything with action 0 (exclude). Keep anything with action 1
2660
+ # (include) or -1 (no include or exclude seen for the item).
2661
+ excluded_list.insert(0, the_list[index])
2662
+ del the_list[index]
2663
+
2664
+ # If anything was excluded, put the excluded list into the_dict at
2665
+ # excluded_key.
2666
+ if len(excluded_list) > 0:
2667
+ the_dict[excluded_key] = excluded_list
2668
+
2669
+ # Now recurse into subdicts and lists that may contain dicts.
2670
+ for key, value in the_dict.items():
2671
+ if type(value) is dict:
2672
+ ProcessListFiltersInDict(key, value)
2673
+ elif type(value) is list:
2674
+ ProcessListFiltersInList(key, value)
2675
+
2676
+
2677
+ def ProcessListFiltersInList(name, the_list):
2678
+ for item in the_list:
2679
+ if type(item) is dict:
2680
+ ProcessListFiltersInDict(name, item)
2681
+ elif type(item) is list:
2682
+ ProcessListFiltersInList(name, item)
2683
+
2684
+
2685
+ def ValidateTargetType(target, target_dict):
2686
+ """Ensures the 'type' field on the target is one of the known types.
2687
+
2688
+ Arguments:
2689
+ target: string, name of target.
2690
+ target_dict: dict, target spec.
2691
+
2692
+ Raises an exception on error.
2693
+ """
2694
+ VALID_TARGET_TYPES = (
2695
+ "executable",
2696
+ "loadable_module",
2697
+ "static_library",
2698
+ "shared_library",
2699
+ "mac_kernel_extension",
2700
+ "none",
2701
+ "windows_driver",
2702
+ )
2703
+ target_type = target_dict.get("type", None)
2704
+ if target_type not in VALID_TARGET_TYPES:
2705
+ raise GypError(
2706
+ "Target %s has an invalid target type '%s'. "
2707
+ "Must be one of %s." % (target, target_type, "/".join(VALID_TARGET_TYPES))
2708
+ )
2709
+ if (
2710
+ target_dict.get("standalone_static_library", 0)
2711
+ and not target_type == "static_library"
2712
+ ):
2713
+ raise GypError(
2714
+ "Target %s has type %s but standalone_static_library flag is"
2715
+ " only valid for static_library type." % (target, target_type)
2716
+ )
2717
+
2718
+
2719
+ def ValidateRulesInTarget(target, target_dict, extra_sources_for_rules):
2720
+ """Ensures that the rules sections in target_dict are valid and consistent,
2721
+ and determines which sources they apply to.
2722
+
2723
+ Arguments:
2724
+ target: string, name of target.
2725
+ target_dict: dict, target spec containing "rules" and "sources" lists.
2726
+ extra_sources_for_rules: a list of keys to scan for rule matches in
2727
+ addition to 'sources'.
2728
+ """
2729
+
2730
+ # Dicts to map between values found in rules' 'rule_name' and 'extension'
2731
+ # keys and the rule dicts themselves.
2732
+ rule_names = {}
2733
+ rule_extensions = {}
2734
+
2735
+ rules = target_dict.get("rules", [])
2736
+ for rule in rules:
2737
+ # Make sure that there's no conflict among rule names and extensions.
2738
+ rule_name = rule["rule_name"]
2739
+ if rule_name in rule_names:
2740
+ raise GypError(
2741
+ f"rule {rule_name} exists in duplicate, target {target}"
2742
+ )
2743
+ rule_names[rule_name] = rule
2744
+
2745
+ rule_extension = rule["extension"]
2746
+ if rule_extension.startswith("."):
2747
+ rule_extension = rule_extension[1:]
2748
+ if rule_extension in rule_extensions:
2749
+ raise GypError(
2750
+ (
2751
+ "extension %s associated with multiple rules, "
2752
+ + "target %s rules %s and %s"
2753
+ )
2754
+ % (
2755
+ rule_extension,
2756
+ target,
2757
+ rule_extensions[rule_extension]["rule_name"],
2758
+ rule_name,
2759
+ )
2760
+ )
2761
+ rule_extensions[rule_extension] = rule
2762
+
2763
+ # Make sure rule_sources isn't already there. It's going to be
2764
+ # created below if needed.
2765
+ if "rule_sources" in rule:
2766
+ raise GypError(
2767
+ "rule_sources must not exist in input, target %s rule %s"
2768
+ % (target, rule_name)
2769
+ )
2770
+
2771
+ rule_sources = []
2772
+ source_keys = ["sources"]
2773
+ source_keys.extend(extra_sources_for_rules)
2774
+ for source_key in source_keys:
2775
+ for source in target_dict.get(source_key, []):
2776
+ (source_root, source_extension) = os.path.splitext(source)
2777
+ if source_extension.startswith("."):
2778
+ source_extension = source_extension[1:]
2779
+ if source_extension == rule_extension:
2780
+ rule_sources.append(source)
2781
+
2782
+ if len(rule_sources) > 0:
2783
+ rule["rule_sources"] = rule_sources
2784
+
2785
+
2786
+ def ValidateRunAsInTarget(target, target_dict, build_file):
2787
+ target_name = target_dict.get("target_name")
2788
+ run_as = target_dict.get("run_as")
2789
+ if not run_as:
2790
+ return
2791
+ if type(run_as) is not dict:
2792
+ raise GypError(
2793
+ "The 'run_as' in target %s from file %s should be a "
2794
+ "dictionary." % (target_name, build_file)
2795
+ )
2796
+ action = run_as.get("action")
2797
+ if not action:
2798
+ raise GypError(
2799
+ "The 'run_as' in target %s from file %s must have an "
2800
+ "'action' section." % (target_name, build_file)
2801
+ )
2802
+ if type(action) is not list:
2803
+ raise GypError(
2804
+ "The 'action' for 'run_as' in target %s from file %s "
2805
+ "must be a list." % (target_name, build_file)
2806
+ )
2807
+ working_directory = run_as.get("working_directory")
2808
+ if working_directory and type(working_directory) is not str:
2809
+ raise GypError(
2810
+ "The 'working_directory' for 'run_as' in target %s "
2811
+ "in file %s should be a string." % (target_name, build_file)
2812
+ )
2813
+ environment = run_as.get("environment")
2814
+ if environment and type(environment) is not dict:
2815
+ raise GypError(
2816
+ "The 'environment' for 'run_as' in target %s "
2817
+ "in file %s should be a dictionary." % (target_name, build_file)
2818
+ )
2819
+
2820
+
2821
+ def ValidateActionsInTarget(target, target_dict, build_file):
2822
+ """Validates the inputs to the actions in a target."""
2823
+ target_name = target_dict.get("target_name")
2824
+ actions = target_dict.get("actions", [])
2825
+ for action in actions:
2826
+ action_name = action.get("action_name")
2827
+ if not action_name:
2828
+ raise GypError(
2829
+ "Anonymous action in target %s. "
2830
+ "An action must have an 'action_name' field." % target_name
2831
+ )
2832
+ inputs = action.get("inputs", None)
2833
+ if inputs is None:
2834
+ raise GypError("Action in target %s has no inputs." % target_name)
2835
+ action_command = action.get("action")
2836
+ if action_command and not action_command[0]:
2837
+ raise GypError("Empty action as command in target %s." % target_name)
2838
+
2839
+
2840
+ def TurnIntIntoStrInDict(the_dict):
2841
+ """Given dict the_dict, recursively converts all integers into strings.
2842
+ """
2843
+ # Use items instead of iteritems because there's no need to try to look at
2844
+ # reinserted keys and their associated values.
2845
+ for k, v in the_dict.items():
2846
+ if type(v) is int:
2847
+ v = str(v)
2848
+ the_dict[k] = v
2849
+ elif type(v) is dict:
2850
+ TurnIntIntoStrInDict(v)
2851
+ elif type(v) is list:
2852
+ TurnIntIntoStrInList(v)
2853
+
2854
+ if type(k) is int:
2855
+ del the_dict[k]
2856
+ the_dict[str(k)] = v
2857
+
2858
+
2859
+ def TurnIntIntoStrInList(the_list):
2860
+ """Given list the_list, recursively converts all integers into strings.
2861
+ """
2862
+ for index, item in enumerate(the_list):
2863
+ if type(item) is int:
2864
+ the_list[index] = str(item)
2865
+ elif type(item) is dict:
2866
+ TurnIntIntoStrInDict(item)
2867
+ elif type(item) is list:
2868
+ TurnIntIntoStrInList(item)
2869
+
2870
+
2871
+ def PruneUnwantedTargets(targets, flat_list, dependency_nodes, root_targets, data):
2872
+ """Return only the targets that are deep dependencies of |root_targets|."""
2873
+ qualified_root_targets = []
2874
+ for target in root_targets:
2875
+ target = target.strip()
2876
+ qualified_targets = gyp.common.FindQualifiedTargets(target, flat_list)
2877
+ if not qualified_targets:
2878
+ raise GypError("Could not find target %s" % target)
2879
+ qualified_root_targets.extend(qualified_targets)
2880
+
2881
+ wanted_targets = {}
2882
+ for target in qualified_root_targets:
2883
+ wanted_targets[target] = targets[target]
2884
+ for dependency in dependency_nodes[target].DeepDependencies():
2885
+ wanted_targets[dependency] = targets[dependency]
2886
+
2887
+ wanted_flat_list = [t for t in flat_list if t in wanted_targets]
2888
+
2889
+ # Prune unwanted targets from each build_file's data dict.
2890
+ for build_file in data["target_build_files"]:
2891
+ if "targets" not in data[build_file]:
2892
+ continue
2893
+ new_targets = []
2894
+ for target in data[build_file]["targets"]:
2895
+ qualified_name = gyp.common.QualifiedTarget(
2896
+ build_file, target["target_name"], target["toolset"]
2897
+ )
2898
+ if qualified_name in wanted_targets:
2899
+ new_targets.append(target)
2900
+ data[build_file]["targets"] = new_targets
2901
+
2902
+ return wanted_targets, wanted_flat_list
2903
+
2904
+
2905
+ def VerifyNoCollidingTargets(targets):
2906
+ """Verify that no two targets in the same directory share the same name.
2907
+
2908
+ Arguments:
2909
+ targets: A list of targets in the form 'path/to/file.gyp:target_name'.
2910
+ """
2911
+ # Keep a dict going from 'subdirectory:target_name' to 'foo.gyp'.
2912
+ used = {}
2913
+ for target in targets:
2914
+ # Separate out 'path/to/file.gyp, 'target_name' from
2915
+ # 'path/to/file.gyp:target_name'.
2916
+ path, name = target.rsplit(":", 1)
2917
+ # Separate out 'path/to', 'file.gyp' from 'path/to/file.gyp'.
2918
+ subdir, gyp = os.path.split(path)
2919
+ # Use '.' for the current directory '', so that the error messages make
2920
+ # more sense.
2921
+ if not subdir:
2922
+ subdir = "."
2923
+ # Prepare a key like 'path/to:target_name'.
2924
+ key = subdir + ":" + name
2925
+ if key in used:
2926
+ # Complain if this target is already used.
2927
+ raise GypError(
2928
+ 'Duplicate target name "%s" in directory "%s" used both '
2929
+ 'in "%s" and "%s".' % (name, subdir, gyp, used[key])
2930
+ )
2931
+ used[key] = gyp
2932
+
2933
+
2934
+ def SetGeneratorGlobals(generator_input_info):
2935
+ # Set up path_sections and non_configuration_keys with the default data plus
2936
+ # the generator-specific data.
2937
+ global path_sections
2938
+ path_sections = set(base_path_sections)
2939
+ path_sections.update(generator_input_info["path_sections"])
2940
+
2941
+ global non_configuration_keys
2942
+ non_configuration_keys = base_non_configuration_keys[:]
2943
+ non_configuration_keys.extend(generator_input_info["non_configuration_keys"])
2944
+
2945
+ global multiple_toolsets
2946
+ multiple_toolsets = generator_input_info["generator_supports_multiple_toolsets"]
2947
+
2948
+ global generator_filelist_paths
2949
+ generator_filelist_paths = generator_input_info["generator_filelist_paths"]
2950
+
2951
+
2952
+ def Load(
2953
+ build_files,
2954
+ variables,
2955
+ includes,
2956
+ depth,
2957
+ generator_input_info,
2958
+ check,
2959
+ circular_check,
2960
+ parallel,
2961
+ root_targets,
2962
+ ):
2963
+ SetGeneratorGlobals(generator_input_info)
2964
+ # A generator can have other lists (in addition to sources) be processed
2965
+ # for rules.
2966
+ extra_sources_for_rules = generator_input_info["extra_sources_for_rules"]
2967
+
2968
+ # Load build files. This loads every target-containing build file into
2969
+ # the |data| dictionary such that the keys to |data| are build file names,
2970
+ # and the values are the entire build file contents after "early" or "pre"
2971
+ # processing has been done and includes have been resolved.
2972
+ # NOTE: data contains both "target" files (.gyp) and "includes" (.gypi), as
2973
+ # well as meta-data (e.g. 'included_files' key). 'target_build_files' keeps
2974
+ # track of the keys corresponding to "target" files.
2975
+ data = {"target_build_files": set()}
2976
+ # Normalize paths everywhere. This is important because paths will be
2977
+ # used as keys to the data dict and for references between input files.
2978
+ build_files = set(map(os.path.normpath, build_files))
2979
+ if parallel:
2980
+ LoadTargetBuildFilesParallel(
2981
+ build_files, data, variables, includes, depth, check, generator_input_info
2982
+ )
2983
+ else:
2984
+ aux_data = {}
2985
+ for build_file in build_files:
2986
+ try:
2987
+ LoadTargetBuildFile(
2988
+ build_file, data, aux_data, variables, includes, depth, check, True
2989
+ )
2990
+ except Exception as e:
2991
+ gyp.common.ExceptionAppend(e, "while trying to load %s" % build_file)
2992
+ raise
2993
+
2994
+ # Build a dict to access each target's subdict by qualified name.
2995
+ targets = BuildTargetsDict(data)
2996
+
2997
+ # Fully qualify all dependency links.
2998
+ QualifyDependencies(targets)
2999
+
3000
+ # Remove self-dependencies from targets that have 'prune_self_dependencies'
3001
+ # set to 1.
3002
+ RemoveSelfDependencies(targets)
3003
+
3004
+ # Expand dependencies specified as build_file:*.
3005
+ ExpandWildcardDependencies(targets, data)
3006
+
3007
+ # Remove all dependencies marked as 'link_dependency' from the targets of
3008
+ # type 'none'.
3009
+ RemoveLinkDependenciesFromNoneTargets(targets)
3010
+
3011
+ # Apply exclude (!) and regex (/) list filters only for dependency_sections.
3012
+ for target_name, target_dict in targets.items():
3013
+ tmp_dict = {}
3014
+ for key_base in dependency_sections:
3015
+ for op in ("", "!", "/"):
3016
+ key = key_base + op
3017
+ if key in target_dict:
3018
+ tmp_dict[key] = target_dict[key]
3019
+ del target_dict[key]
3020
+ ProcessListFiltersInDict(target_name, tmp_dict)
3021
+ # Write the results back to |target_dict|.
3022
+ for key in tmp_dict:
3023
+ target_dict[key] = tmp_dict[key]
3024
+
3025
+ # Make sure every dependency appears at most once.
3026
+ RemoveDuplicateDependencies(targets)
3027
+
3028
+ if circular_check:
3029
+ # Make sure that any targets in a.gyp don't contain dependencies in other
3030
+ # .gyp files that further depend on a.gyp.
3031
+ VerifyNoGYPFileCircularDependencies(targets)
3032
+
3033
+ [dependency_nodes, flat_list] = BuildDependencyList(targets)
3034
+
3035
+ if root_targets:
3036
+ # Remove, from |targets| and |flat_list|, the targets that are not deep
3037
+ # dependencies of the targets specified in |root_targets|.
3038
+ targets, flat_list = PruneUnwantedTargets(
3039
+ targets, flat_list, dependency_nodes, root_targets, data
3040
+ )
3041
+
3042
+ # Check that no two targets in the same directory have the same name.
3043
+ VerifyNoCollidingTargets(flat_list)
3044
+
3045
+ # Handle dependent settings of various types.
3046
+ for settings_type in [
3047
+ "all_dependent_settings",
3048
+ "direct_dependent_settings",
3049
+ "link_settings",
3050
+ ]:
3051
+ DoDependentSettings(settings_type, flat_list, targets, dependency_nodes)
3052
+
3053
+ # Take out the dependent settings now that they've been published to all
3054
+ # of the targets that require them.
3055
+ for target in flat_list:
3056
+ if settings_type in targets[target]:
3057
+ del targets[target][settings_type]
3058
+
3059
+ # Make sure static libraries don't declare dependencies on other static
3060
+ # libraries, but that linkables depend on all unlinked static libraries
3061
+ # that they need so that their link steps will be correct.
3062
+ gii = generator_input_info
3063
+ if gii["generator_wants_static_library_dependencies_adjusted"]:
3064
+ AdjustStaticLibraryDependencies(
3065
+ flat_list,
3066
+ targets,
3067
+ dependency_nodes,
3068
+ gii["generator_wants_sorted_dependencies"],
3069
+ )
3070
+
3071
+ # Apply "post"/"late"/"target" variable expansions and condition evaluations.
3072
+ for target in flat_list:
3073
+ target_dict = targets[target]
3074
+ build_file = gyp.common.BuildFile(target)
3075
+ ProcessVariablesAndConditionsInDict(
3076
+ target_dict, PHASE_LATE, variables, build_file
3077
+ )
3078
+
3079
+ # Move everything that can go into a "configurations" section into one.
3080
+ for target in flat_list:
3081
+ target_dict = targets[target]
3082
+ SetUpConfigurations(target, target_dict)
3083
+
3084
+ # Apply exclude (!) and regex (/) list filters.
3085
+ for target in flat_list:
3086
+ target_dict = targets[target]
3087
+ ProcessListFiltersInDict(target, target_dict)
3088
+
3089
+ # Apply "latelate" variable expansions and condition evaluations.
3090
+ for target in flat_list:
3091
+ target_dict = targets[target]
3092
+ build_file = gyp.common.BuildFile(target)
3093
+ ProcessVariablesAndConditionsInDict(
3094
+ target_dict, PHASE_LATELATE, variables, build_file
3095
+ )
3096
+
3097
+ # Make sure that the rules make sense, and build up rule_sources lists as
3098
+ # needed. Not all generators will need to use the rule_sources lists, but
3099
+ # some may, and it seems best to build the list in a common spot.
3100
+ # Also validate actions and run_as elements in targets.
3101
+ for target in flat_list:
3102
+ target_dict = targets[target]
3103
+ build_file = gyp.common.BuildFile(target)
3104
+ ValidateTargetType(target, target_dict)
3105
+ ValidateRulesInTarget(target, target_dict, extra_sources_for_rules)
3106
+ ValidateRunAsInTarget(target, target_dict, build_file)
3107
+ ValidateActionsInTarget(target, target_dict, build_file)
3108
+
3109
+ # Generators might not expect ints. Turn them into strs.
3110
+ TurnIntIntoStrInDict(data)
3111
+
3112
+ # TODO(mark): Return |data| for now because the generator needs a list of
3113
+ # build files that came in. In the future, maybe it should just accept
3114
+ # a list, and not the whole data dict.
3115
+ return [flat_list, targets, data]