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,2711 @@
1
+ # Copyright (c) 2013 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
+ # Notes:
6
+ #
7
+ # This is all roughly based on the Makefile system used by the Linux
8
+ # kernel, but is a non-recursive make -- we put the entire dependency
9
+ # graph in front of make and let it figure it out.
10
+ #
11
+ # The code below generates a separate .mk file for each target, but
12
+ # all are sourced by the top-level Makefile. This means that all
13
+ # variables in .mk-files clobber one another. Be careful to use :=
14
+ # where appropriate for immediate evaluation, and similarly to watch
15
+ # that you're not relying on a variable value to last between different
16
+ # .mk files.
17
+ #
18
+ # TODOs:
19
+ #
20
+ # Global settings and utility functions are currently stuffed in the
21
+ # toplevel Makefile. It may make sense to generate some .mk files on
22
+ # the side to keep the files readable.
23
+
24
+
25
+ import os
26
+ import re
27
+ import subprocess
28
+ import gyp
29
+ import gyp.common
30
+ import gyp.xcode_emulation
31
+ from gyp.common import GetEnvironFallback
32
+
33
+ import hashlib
34
+
35
+ generator_default_variables = {
36
+ "EXECUTABLE_PREFIX": "",
37
+ "EXECUTABLE_SUFFIX": "",
38
+ "STATIC_LIB_PREFIX": "lib",
39
+ "SHARED_LIB_PREFIX": "lib",
40
+ "STATIC_LIB_SUFFIX": ".a",
41
+ "INTERMEDIATE_DIR": "$(obj).$(TOOLSET)/$(TARGET)/geni",
42
+ "SHARED_INTERMEDIATE_DIR": "$(obj)/gen",
43
+ "PRODUCT_DIR": "$(builddir)",
44
+ "RULE_INPUT_ROOT": "%(INPUT_ROOT)s", # This gets expanded by Python.
45
+ "RULE_INPUT_DIRNAME": "%(INPUT_DIRNAME)s", # This gets expanded by Python.
46
+ "RULE_INPUT_PATH": "$(abspath $<)",
47
+ "RULE_INPUT_EXT": "$(suffix $<)",
48
+ "RULE_INPUT_NAME": "$(notdir $<)",
49
+ "CONFIGURATION_NAME": "$(BUILDTYPE)",
50
+ }
51
+
52
+ # Make supports multiple toolsets
53
+ generator_supports_multiple_toolsets = gyp.common.CrossCompileRequested()
54
+
55
+ # Request sorted dependencies in the order from dependents to dependencies.
56
+ generator_wants_sorted_dependencies = False
57
+
58
+ # Placates pylint.
59
+ generator_additional_non_configuration_keys = []
60
+ generator_additional_path_sections = []
61
+ generator_extra_sources_for_rules = []
62
+ generator_filelist_paths = None
63
+
64
+
65
+ def CalculateVariables(default_variables, params):
66
+ """Calculate additional variables for use in the build (called by gyp)."""
67
+ flavor = gyp.common.GetFlavor(params)
68
+ if flavor == "mac":
69
+ default_variables.setdefault("OS", "mac")
70
+ default_variables.setdefault("SHARED_LIB_SUFFIX", ".dylib")
71
+ default_variables.setdefault(
72
+ "SHARED_LIB_DIR", generator_default_variables["PRODUCT_DIR"]
73
+ )
74
+ default_variables.setdefault(
75
+ "LIB_DIR", generator_default_variables["PRODUCT_DIR"]
76
+ )
77
+
78
+ # Copy additional generator configuration data from Xcode, which is shared
79
+ # by the Mac Make generator.
80
+ import gyp.generator.xcode as xcode_generator
81
+
82
+ global generator_additional_non_configuration_keys
83
+ generator_additional_non_configuration_keys = getattr(
84
+ xcode_generator, "generator_additional_non_configuration_keys", []
85
+ )
86
+ global generator_additional_path_sections
87
+ generator_additional_path_sections = getattr(
88
+ xcode_generator, "generator_additional_path_sections", []
89
+ )
90
+ global generator_extra_sources_for_rules
91
+ generator_extra_sources_for_rules = getattr(
92
+ xcode_generator, "generator_extra_sources_for_rules", []
93
+ )
94
+ COMPILABLE_EXTENSIONS.update({".m": "objc", ".mm": "objcxx"})
95
+ else:
96
+ operating_system = flavor
97
+ if flavor == "android":
98
+ operating_system = "linux" # Keep this legacy behavior for now.
99
+ default_variables.setdefault("OS", operating_system)
100
+ if flavor == "aix":
101
+ default_variables.setdefault("SHARED_LIB_SUFFIX", ".a")
102
+ elif flavor == "zos":
103
+ default_variables.setdefault("SHARED_LIB_SUFFIX", ".x")
104
+ COMPILABLE_EXTENSIONS.update({".pli": "pli"})
105
+ else:
106
+ default_variables.setdefault("SHARED_LIB_SUFFIX", ".so")
107
+ default_variables.setdefault("SHARED_LIB_DIR", "$(builddir)/lib.$(TOOLSET)")
108
+ default_variables.setdefault("LIB_DIR", "$(obj).$(TOOLSET)")
109
+
110
+
111
+ def CalculateGeneratorInputInfo(params):
112
+ """Calculate the generator specific info that gets fed to input (called by
113
+ gyp)."""
114
+ generator_flags = params.get("generator_flags", {})
115
+ android_ndk_version = generator_flags.get("android_ndk_version", None)
116
+ # Android NDK requires a strict link order.
117
+ if android_ndk_version:
118
+ global generator_wants_sorted_dependencies
119
+ generator_wants_sorted_dependencies = True
120
+
121
+ output_dir = params["options"].generator_output or params["options"].toplevel_dir
122
+ builddir_name = generator_flags.get("output_dir", "out")
123
+ qualified_out_dir = os.path.normpath(
124
+ os.path.join(output_dir, builddir_name, "gypfiles")
125
+ )
126
+
127
+ global generator_filelist_paths
128
+ generator_filelist_paths = {
129
+ "toplevel": params["options"].toplevel_dir,
130
+ "qualified_out_dir": qualified_out_dir,
131
+ }
132
+
133
+
134
+ # The .d checking code below uses these functions:
135
+ # wildcard, sort, foreach, shell, wordlist
136
+ # wildcard can handle spaces, the rest can't.
137
+ # Since I could find no way to make foreach work with spaces in filenames
138
+ # correctly, the .d files have spaces replaced with another character. The .d
139
+ # file for
140
+ # Chromium\ Framework.framework/foo
141
+ # is for example
142
+ # out/Release/.deps/out/Release/Chromium?Framework.framework/foo
143
+ # This is the replacement character.
144
+ SPACE_REPLACEMENT = "?"
145
+
146
+
147
+ LINK_COMMANDS_LINUX = """\
148
+ quiet_cmd_alink = AR($(TOOLSET)) $@
149
+ cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) crs $@ $(filter %.o,$^)
150
+
151
+ quiet_cmd_alink_thin = AR($(TOOLSET)) $@
152
+ cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^)
153
+
154
+ # Due to circular dependencies between libraries :(, we wrap the
155
+ # special "figure out circular dependencies" flags around the entire
156
+ # input list during linking.
157
+ quiet_cmd_link = LINK($(TOOLSET)) $@
158
+ cmd_link = $(LINK.$(TOOLSET)) -o $@ $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,--start-group $(LD_INPUTS) $(LIBS) -Wl,--end-group
159
+
160
+ # Note: this does not handle spaces in paths
161
+ define xargs
162
+ $(1) $(word 1,$(2))
163
+ $(if $(word 2,$(2)),$(call xargs,$(1),$(wordlist 2,$(words $(2)),$(2))))
164
+ endef
165
+
166
+ define write-to-file
167
+ @: >$(1)
168
+ $(call xargs,@printf "%s\\n" >>$(1),$(2))
169
+ endef
170
+
171
+ OBJ_FILE_LIST := ar-file-list
172
+
173
+ define create_archive
174
+ rm -f $(1) $(1).$(OBJ_FILE_LIST); mkdir -p `dirname $(1)`
175
+ $(call write-to-file,$(1).$(OBJ_FILE_LIST),$(filter %.o,$(2)))
176
+ $(AR.$(TOOLSET)) crs $(1) @$(1).$(OBJ_FILE_LIST)
177
+ endef
178
+
179
+ define create_thin_archive
180
+ rm -f $(1) $(OBJ_FILE_LIST); mkdir -p `dirname $(1)`
181
+ $(call write-to-file,$(1).$(OBJ_FILE_LIST),$(filter %.o,$(2)))
182
+ $(AR.$(TOOLSET)) crsT $(1) @$(1).$(OBJ_FILE_LIST)
183
+ endef
184
+
185
+ # We support two kinds of shared objects (.so):
186
+ # 1) shared_library, which is just bundling together many dependent libraries
187
+ # into a link line.
188
+ # 2) loadable_module, which is generating a module intended for dlopen().
189
+ #
190
+ # They differ only slightly:
191
+ # In the former case, we want to package all dependent code into the .so.
192
+ # In the latter case, we want to package just the API exposed by the
193
+ # outermost module.
194
+ # This means shared_library uses --whole-archive, while loadable_module doesn't.
195
+ # (Note that --whole-archive is incompatible with the --start-group used in
196
+ # normal linking.)
197
+
198
+ # Other shared-object link notes:
199
+ # - Set SONAME to the library filename so our binaries don't reference
200
+ # the local, absolute paths used on the link command-line.
201
+ quiet_cmd_solink = SOLINK($(TOOLSET)) $@
202
+ cmd_solink = $(LINK.$(TOOLSET)) -o $@ -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -Wl,--whole-archive $(LD_INPUTS) -Wl,--no-whole-archive $(LIBS)
203
+
204
+ quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
205
+ cmd_solink_module = $(LINK.$(TOOLSET)) -o $@ -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -Wl,--start-group $(filter-out FORCE_DO_CMD, $^) -Wl,--end-group $(LIBS)
206
+ """ # noqa: E501
207
+
208
+ LINK_COMMANDS_MAC = """\
209
+ quiet_cmd_alink = LIBTOOL-STATIC $@
210
+ cmd_alink = rm -f $@ && ./gyp-mac-tool filter-libtool libtool $(GYP_LIBTOOLFLAGS) -static -o $@ $(filter %.o,$^)
211
+
212
+ quiet_cmd_link = LINK($(TOOLSET)) $@
213
+ cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
214
+
215
+ quiet_cmd_solink = SOLINK($(TOOLSET)) $@
216
+ cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
217
+
218
+ quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
219
+ cmd_solink_module = $(LINK.$(TOOLSET)) -bundle $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS)
220
+ """ # noqa: E501
221
+
222
+ LINK_COMMANDS_ANDROID = """\
223
+ quiet_cmd_alink = AR($(TOOLSET)) $@
224
+ cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) crs $@ $(filter %.o,$^)
225
+
226
+ quiet_cmd_alink_thin = AR($(TOOLSET)) $@
227
+ cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^)
228
+
229
+ # Note: this does not handle spaces in paths
230
+ define xargs
231
+ $(1) $(word 1,$(2))
232
+ $(if $(word 2,$(2)),$(call xargs,$(1),$(wordlist 2,$(words $(2)),$(2))))
233
+ endef
234
+
235
+ define write-to-file
236
+ @: >$(1)
237
+ $(call xargs,@printf "%s\\n" >>$(1),$(2))
238
+ endef
239
+
240
+ OBJ_FILE_LIST := ar-file-list
241
+
242
+ define create_archive
243
+ rm -f $(1) $(1).$(OBJ_FILE_LIST); mkdir -p `dirname $(1)`
244
+ $(call write-to-file,$(1).$(OBJ_FILE_LIST),$(filter %.o,$(2)))
245
+ $(AR.$(TOOLSET)) crs $(1) @$(1).$(OBJ_FILE_LIST)
246
+ endef
247
+
248
+ define create_thin_archive
249
+ rm -f $(1) $(OBJ_FILE_LIST); mkdir -p `dirname $(1)`
250
+ $(call write-to-file,$(1).$(OBJ_FILE_LIST),$(filter %.o,$(2)))
251
+ $(AR.$(TOOLSET)) crsT $(1) @$(1).$(OBJ_FILE_LIST)
252
+ endef
253
+
254
+ # Due to circular dependencies between libraries :(, we wrap the
255
+ # special "figure out circular dependencies" flags around the entire
256
+ # input list during linking.
257
+ quiet_cmd_link = LINK($(TOOLSET)) $@
258
+ quiet_cmd_link_host = LINK($(TOOLSET)) $@
259
+ cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) -Wl,--end-group $(LIBS)
260
+ cmd_link_host = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) -Wl,--end-group $(LIBS)
261
+
262
+ # Other shared-object link notes:
263
+ # - Set SONAME to the library filename so our binaries don't reference
264
+ # the local, absolute paths used on the link command-line.
265
+ quiet_cmd_solink = SOLINK($(TOOLSET)) $@
266
+ cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ -Wl,--whole-archive $(LD_INPUTS) -Wl,--no-whole-archive $(LIBS)
267
+
268
+ quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
269
+ cmd_solink_module = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ -Wl,--start-group $(filter-out FORCE_DO_CMD, $^) -Wl,--end-group $(LIBS)
270
+ quiet_cmd_solink_module_host = SOLINK_MODULE($(TOOLSET)) $@
271
+ cmd_solink_module_host = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -Wl,-soname=$(@F) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS)
272
+ """ # noqa: E501
273
+
274
+
275
+ LINK_COMMANDS_AIX = """\
276
+ quiet_cmd_alink = AR($(TOOLSET)) $@
277
+ cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) -X32_64 crs $@ $(filter %.o,$^)
278
+
279
+ quiet_cmd_alink_thin = AR($(TOOLSET)) $@
280
+ cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) -X32_64 crs $@ $(filter %.o,$^)
281
+
282
+ quiet_cmd_link = LINK($(TOOLSET)) $@
283
+ cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS)
284
+
285
+ quiet_cmd_solink = SOLINK($(TOOLSET)) $@
286
+ cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS)
287
+
288
+ quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
289
+ cmd_solink_module = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS)
290
+ """ # noqa: E501
291
+
292
+
293
+ LINK_COMMANDS_OS400 = """\
294
+ quiet_cmd_alink = AR($(TOOLSET)) $@
295
+ cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) -X64 crs $@ $(filter %.o,$^)
296
+
297
+ quiet_cmd_alink_thin = AR($(TOOLSET)) $@
298
+ cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) -X64 crs $@ $(filter %.o,$^)
299
+
300
+ quiet_cmd_link = LINK($(TOOLSET)) $@
301
+ cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS)
302
+
303
+ quiet_cmd_solink = SOLINK($(TOOLSET)) $@
304
+ cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS)
305
+
306
+ quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
307
+ cmd_solink_module = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS)
308
+ """ # noqa: E501
309
+
310
+
311
+ LINK_COMMANDS_OS390 = """\
312
+ quiet_cmd_alink = AR($(TOOLSET)) $@
313
+ cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) crs $@ $(filter %.o,$^)
314
+
315
+ quiet_cmd_alink_thin = AR($(TOOLSET)) $@
316
+ cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^)
317
+
318
+ quiet_cmd_link = LINK($(TOOLSET)) $@
319
+ cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS)
320
+
321
+ quiet_cmd_solink = SOLINK($(TOOLSET)) $@
322
+ cmd_solink = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(LD_INPUTS) $(LIBS)
323
+
324
+ quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
325
+ cmd_solink_module = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS)
326
+ """ # noqa: E501
327
+
328
+
329
+ # Header of toplevel Makefile.
330
+ # This should go into the build tree, but it's easier to keep it here for now.
331
+ SHARED_HEADER = (
332
+ """\
333
+ # We borrow heavily from the kernel build setup, though we are simpler since
334
+ # we don't have Kconfig tweaking settings on us.
335
+
336
+ # The implicit make rules have it looking for RCS files, among other things.
337
+ # We instead explicitly write all the rules we care about.
338
+ # It's even quicker (saves ~200ms) to pass -r on the command line.
339
+ MAKEFLAGS=-r
340
+
341
+ # The source directory tree.
342
+ srcdir := %(srcdir)s
343
+ abs_srcdir := $(abspath $(srcdir))
344
+
345
+ # The name of the builddir.
346
+ builddir_name ?= %(builddir)s
347
+
348
+ # The V=1 flag on command line makes us verbosely print command lines.
349
+ ifdef V
350
+ quiet=
351
+ else
352
+ quiet=quiet_
353
+ endif
354
+
355
+ # Specify BUILDTYPE=Release on the command line for a release build.
356
+ BUILDTYPE ?= %(default_configuration)s
357
+
358
+ # Directory all our build output goes into.
359
+ # Note that this must be two directories beneath src/ for unit tests to pass,
360
+ # as they reach into the src/ directory for data with relative paths.
361
+ builddir ?= $(builddir_name)/$(BUILDTYPE)
362
+ abs_builddir := $(abspath $(builddir))
363
+ depsdir := $(builddir)/.deps
364
+
365
+ # Object output directory.
366
+ obj := $(builddir)/obj
367
+ abs_obj := $(abspath $(obj))
368
+
369
+ # We build up a list of every single one of the targets so we can slurp in the
370
+ # generated dependency rule Makefiles in one pass.
371
+ all_deps :=
372
+
373
+ %(make_global_settings)s
374
+
375
+ CC.target ?= %(CC.target)s
376
+ CFLAGS.target ?= $(CPPFLAGS) $(CFLAGS)
377
+ CXX.target ?= %(CXX.target)s
378
+ CXXFLAGS.target ?= $(CPPFLAGS) $(CXXFLAGS)
379
+ LINK.target ?= %(LINK.target)s
380
+ LDFLAGS.target ?= $(LDFLAGS)
381
+ AR.target ?= $(AR)
382
+ PLI.target ?= %(PLI.target)s
383
+
384
+ # C++ apps need to be linked with g++.
385
+ LINK ?= $(CXX.target)
386
+
387
+ # TODO(evan): move all cross-compilation logic to gyp-time so we don't need
388
+ # to replicate this environment fallback in make as well.
389
+ CC.host ?= %(CC.host)s
390
+ CFLAGS.host ?= $(CPPFLAGS_host) $(CFLAGS_host)
391
+ CXX.host ?= %(CXX.host)s
392
+ CXXFLAGS.host ?= $(CPPFLAGS_host) $(CXXFLAGS_host)
393
+ LINK.host ?= %(LINK.host)s
394
+ LDFLAGS.host ?= $(LDFLAGS_host)
395
+ AR.host ?= %(AR.host)s
396
+ PLI.host ?= %(PLI.host)s
397
+
398
+ # Define a dir function that can handle spaces.
399
+ # http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions
400
+ # "leading spaces cannot appear in the text of the first argument as written.
401
+ # These characters can be put into the argument value by variable substitution."
402
+ empty :=
403
+ space := $(empty) $(empty)
404
+
405
+ # http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces
406
+ replace_spaces = $(subst $(space),"""
407
+ + SPACE_REPLACEMENT
408
+ + """,$1)
409
+ unreplace_spaces = $(subst """
410
+ + SPACE_REPLACEMENT
411
+ + """,$(space),$1)
412
+ dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1)))
413
+
414
+ # Flags to make gcc output dependency info. Note that you need to be
415
+ # careful here to use the flags that ccache and distcc can understand.
416
+ # We write to a dep file on the side first and then rename at the end
417
+ # so we can't end up with a broken dep file.
418
+ depfile = $(depsdir)/$(call replace_spaces,$@).d
419
+ DEPFLAGS = %(makedep_args)s -MF $(depfile).raw
420
+
421
+ # We have to fixup the deps output in a few ways.
422
+ # (1) the file output should mention the proper .o file.
423
+ # ccache or distcc lose the path to the target, so we convert a rule of
424
+ # the form:
425
+ # foobar.o: DEP1 DEP2
426
+ # into
427
+ # path/to/foobar.o: DEP1 DEP2
428
+ # (2) we want missing files not to cause us to fail to build.
429
+ # We want to rewrite
430
+ # foobar.o: DEP1 DEP2 \\
431
+ # DEP3
432
+ # to
433
+ # DEP1:
434
+ # DEP2:
435
+ # DEP3:
436
+ # so if the files are missing, they're just considered phony rules.
437
+ # We have to do some pretty insane escaping to get those backslashes
438
+ # and dollar signs past make, the shell, and sed at the same time.
439
+ # Doesn't work with spaces, but that's fine: .d files have spaces in
440
+ # their names replaced with other characters."""
441
+ r"""
442
+ define fixup_dep
443
+ # The depfile may not exist if the input file didn't have any #includes.
444
+ touch $(depfile).raw
445
+ # Fixup path as in (1).
446
+ sed -e "s|^$(notdir $@)|$@|" $(depfile).raw >> $(depfile)
447
+ # Add extra rules as in (2).
448
+ # We remove slashes and replace spaces with new lines;
449
+ # remove blank lines;
450
+ # delete the first line and append a colon to the remaining lines.
451
+ sed -e 's|\\||' -e 'y| |\n|' $(depfile).raw |\
452
+ grep -v '^$$' |\
453
+ sed -e 1d -e 's|$$|:|' \
454
+ >> $(depfile)
455
+ rm $(depfile).raw
456
+ endef
457
+ """
458
+ """
459
+ # Command definitions:
460
+ # - cmd_foo is the actual command to run;
461
+ # - quiet_cmd_foo is the brief-output summary of the command.
462
+
463
+ quiet_cmd_cc = CC($(TOOLSET)) $@
464
+ cmd_cc = $(CC.$(TOOLSET)) -o $@ $< $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c
465
+
466
+ quiet_cmd_cxx = CXX($(TOOLSET)) $@
467
+ cmd_cxx = $(CXX.$(TOOLSET)) -o $@ $< $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c
468
+ %(extra_commands)s
469
+ quiet_cmd_touch = TOUCH $@
470
+ cmd_touch = touch $@
471
+
472
+ quiet_cmd_copy = COPY $@
473
+ # send stderr to /dev/null to ignore messages when linking directories.
474
+ cmd_copy = ln -f "$<" "$@" 2>/dev/null || (rm -rf "$@" && cp %(copy_archive_args)s "$<" "$@")
475
+
476
+ quiet_cmd_symlink = SYMLINK $@
477
+ cmd_symlink = ln -sf "$<" "$@"
478
+
479
+ %(link_commands)s
480
+ """ # noqa: E501
481
+ r"""
482
+ # Define an escape_quotes function to escape single quotes.
483
+ # This allows us to handle quotes properly as long as we always use
484
+ # use single quotes and escape_quotes.
485
+ escape_quotes = $(subst ','\'',$(1))
486
+ # This comment is here just to include a ' to unconfuse syntax highlighting.
487
+ # Define an escape_vars function to escape '$' variable syntax.
488
+ # This allows us to read/write command lines with shell variables (e.g.
489
+ # $LD_LIBRARY_PATH), without triggering make substitution.
490
+ escape_vars = $(subst $$,$$$$,$(1))
491
+ # Helper that expands to a shell command to echo a string exactly as it is in
492
+ # make. This uses printf instead of echo because printf's behaviour with respect
493
+ # to escape sequences is more portable than echo's across different shells
494
+ # (e.g., dash, bash).
495
+ exact_echo = printf '%%s\n' '$(call escape_quotes,$(1))'
496
+ """
497
+ """
498
+ # Helper to compare the command we're about to run against the command
499
+ # we logged the last time we ran the command. Produces an empty
500
+ # string (false) when the commands match.
501
+ # Tricky point: Make has no string-equality test function.
502
+ # The kernel uses the following, but it seems like it would have false
503
+ # positives, where one string reordered its arguments.
504
+ # arg_check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \\
505
+ # $(filter-out $(cmd_$@), $(cmd_$(1))))
506
+ # We instead substitute each for the empty string into the other, and
507
+ # say they're equal if both substitutions produce the empty string.
508
+ # .d files contain """
509
+ + SPACE_REPLACEMENT
510
+ + """ instead of spaces, take that into account.
511
+ command_changed = $(or $(subst $(cmd_$(1)),,$(cmd_$(call replace_spaces,$@))),\\
512
+ $(subst $(cmd_$(call replace_spaces,$@)),,$(cmd_$(1))))
513
+
514
+ # Helper that is non-empty when a prerequisite changes.
515
+ # Normally make does this implicitly, but we force rules to always run
516
+ # so we can check their command lines.
517
+ # $? -- new prerequisites
518
+ # $| -- order-only dependencies
519
+ prereq_changed = $(filter-out FORCE_DO_CMD,$(filter-out $|,$?))
520
+
521
+ # Helper that executes all postbuilds until one fails.
522
+ define do_postbuilds
523
+ @E=0;\\
524
+ for p in $(POSTBUILDS); do\\
525
+ eval $$p;\\
526
+ E=$$?;\\
527
+ if [ $$E -ne 0 ]; then\\
528
+ break;\\
529
+ fi;\\
530
+ done;\\
531
+ if [ $$E -ne 0 ]; then\\
532
+ rm -rf "$@";\\
533
+ exit $$E;\\
534
+ fi
535
+ endef
536
+
537
+ # do_cmd: run a command via the above cmd_foo names, if necessary.
538
+ # Should always run for a given target to handle command-line changes.
539
+ # Second argument, if non-zero, makes it do asm/C/C++ dependency munging.
540
+ # Third argument, if non-zero, makes it do POSTBUILDS processing.
541
+ # Note: We intentionally do NOT call dirx for depfile, since it contains """
542
+ + SPACE_REPLACEMENT
543
+ + """ for
544
+ # spaces already and dirx strips the """
545
+ + SPACE_REPLACEMENT
546
+ + """ characters.
547
+ define do_cmd
548
+ $(if $(or $(command_changed),$(prereq_changed)),
549
+ @$(call exact_echo, $($(quiet)cmd_$(1)))
550
+ @mkdir -p "$(call dirx,$@)" "$(dir $(depfile))"
551
+ $(if $(findstring flock,$(word %(flock_index)d,$(cmd_$1))),
552
+ @$(cmd_$(1))
553
+ @echo " $(quiet_cmd_$(1)): Finished",
554
+ @$(cmd_$(1))
555
+ )
556
+ @$(call exact_echo,$(call escape_vars,cmd_$(call replace_spaces,$@) := $(cmd_$(1)))) > $(depfile)
557
+ @$(if $(2),$(fixup_dep))
558
+ $(if $(and $(3), $(POSTBUILDS)),
559
+ $(call do_postbuilds)
560
+ )
561
+ )
562
+ endef
563
+
564
+ # Declare the "%(default_target)s" target first so it is the default,
565
+ # even though we don't have the deps yet.
566
+ .PHONY: %(default_target)s
567
+ %(default_target)s:
568
+
569
+ # make looks for ways to re-generate included makefiles, but in our case, we
570
+ # don't have a direct way. Explicitly telling make that it has nothing to do
571
+ # for them makes it go faster.
572
+ %%.d: ;
573
+
574
+ # Use FORCE_DO_CMD to force a target to run. Should be coupled with
575
+ # do_cmd.
576
+ .PHONY: FORCE_DO_CMD
577
+ FORCE_DO_CMD:
578
+
579
+ """ # noqa: E501
580
+ )
581
+
582
+ SHARED_HEADER_MAC_COMMANDS = """
583
+ quiet_cmd_objc = CXX($(TOOLSET)) $@
584
+ cmd_objc = $(CC.$(TOOLSET)) $(GYP_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
585
+
586
+ quiet_cmd_objcxx = CXX($(TOOLSET)) $@
587
+ cmd_objcxx = $(CXX.$(TOOLSET)) $(GYP_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
588
+
589
+ # Commands for precompiled header files.
590
+ quiet_cmd_pch_c = CXX($(TOOLSET)) $@
591
+ cmd_pch_c = $(CC.$(TOOLSET)) $(GYP_PCH_CFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
592
+ quiet_cmd_pch_cc = CXX($(TOOLSET)) $@
593
+ cmd_pch_cc = $(CC.$(TOOLSET)) $(GYP_PCH_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
594
+ quiet_cmd_pch_m = CXX($(TOOLSET)) $@
595
+ cmd_pch_m = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
596
+ quiet_cmd_pch_mm = CXX($(TOOLSET)) $@
597
+ cmd_pch_mm = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
598
+
599
+ # gyp-mac-tool is written next to the root Makefile by gyp.
600
+ # Use $(4) for the command, since $(2) and $(3) are used as flag by do_cmd
601
+ # already.
602
+ quiet_cmd_mac_tool = MACTOOL $(4) $<
603
+ cmd_mac_tool = ./gyp-mac-tool $(4) $< "$@"
604
+
605
+ quiet_cmd_mac_package_framework = PACKAGE FRAMEWORK $@
606
+ cmd_mac_package_framework = ./gyp-mac-tool package-framework "$@" $(4)
607
+
608
+ quiet_cmd_infoplist = INFOPLIST $@
609
+ cmd_infoplist = $(CC.$(TOOLSET)) -E -P -Wno-trigraphs -x c $(INFOPLIST_DEFINES) "$<" -o "$@"
610
+ """ # noqa: E501
611
+
612
+
613
+ def WriteRootHeaderSuffixRules(writer):
614
+ extensions = sorted(COMPILABLE_EXTENSIONS.keys(), key=str.lower)
615
+
616
+ writer.write("# Suffix rules, putting all outputs into $(obj).\n")
617
+ for ext in extensions:
618
+ writer.write("$(obj).$(TOOLSET)/%%.o: $(srcdir)/%%%s FORCE_DO_CMD\n" % ext)
619
+ writer.write("\t@$(call do_cmd,%s,1)\n" % COMPILABLE_EXTENSIONS[ext])
620
+
621
+ writer.write("\n# Try building from generated source, too.\n")
622
+ for ext in extensions:
623
+ writer.write(
624
+ "$(obj).$(TOOLSET)/%%.o: $(obj).$(TOOLSET)/%%%s FORCE_DO_CMD\n" % ext
625
+ )
626
+ writer.write("\t@$(call do_cmd,%s,1)\n" % COMPILABLE_EXTENSIONS[ext])
627
+ writer.write("\n")
628
+ for ext in extensions:
629
+ writer.write("$(obj).$(TOOLSET)/%%.o: $(obj)/%%%s FORCE_DO_CMD\n" % ext)
630
+ writer.write("\t@$(call do_cmd,%s,1)\n" % COMPILABLE_EXTENSIONS[ext])
631
+ writer.write("\n")
632
+
633
+
634
+ SHARED_HEADER_OS390_COMMANDS = """
635
+ PLIFLAGS.target ?= -qlp=64 -qlimits=extname=31 $(PLIFLAGS)
636
+ PLIFLAGS.host ?= -qlp=64 -qlimits=extname=31 $(PLIFLAGS)
637
+
638
+ quiet_cmd_pli = PLI($(TOOLSET)) $@
639
+ cmd_pli = $(PLI.$(TOOLSET)) $(GYP_PLIFLAGS) $(PLIFLAGS.$(TOOLSET)) -c $< && \
640
+ if [ -f $(notdir $@) ]; then /bin/cp $(notdir $@) $@; else true; fi
641
+ """
642
+
643
+ SHARED_HEADER_SUFFIX_RULES_COMMENT1 = """\
644
+ # Suffix rules, putting all outputs into $(obj).
645
+ """
646
+
647
+
648
+ SHARED_HEADER_SUFFIX_RULES_COMMENT2 = """\
649
+ # Try building from generated source, too.
650
+ """
651
+
652
+
653
+ SHARED_FOOTER = """\
654
+ # "all" is a concatenation of the "all" targets from all the included
655
+ # sub-makefiles. This is just here to clarify.
656
+ all:
657
+
658
+ # Add in dependency-tracking rules. $(all_deps) is the list of every single
659
+ # target in our tree. Only consider the ones with .d (dependency) info:
660
+ d_files := $(wildcard $(foreach f,$(all_deps),$(depsdir)/$(f).d))
661
+ ifneq ($(d_files),)
662
+ include $(d_files)
663
+ endif
664
+ """
665
+
666
+ header = """\
667
+ # This file is generated by gyp; do not edit.
668
+
669
+ """
670
+
671
+ # Maps every compilable file extension to the do_cmd that compiles it.
672
+ COMPILABLE_EXTENSIONS = {
673
+ ".c": "cc",
674
+ ".cc": "cxx",
675
+ ".cpp": "cxx",
676
+ ".cxx": "cxx",
677
+ ".s": "cc",
678
+ ".S": "cc",
679
+ }
680
+
681
+
682
+ def Compilable(filename):
683
+ """Return true if the file is compilable (should be in OBJS)."""
684
+ return any(res for res in (filename.endswith(e) for e in COMPILABLE_EXTENSIONS))
685
+
686
+
687
+ def Linkable(filename):
688
+ """Return true if the file is linkable (should be on the link line)."""
689
+ return filename.endswith(".o")
690
+
691
+
692
+ def Target(filename):
693
+ """Translate a compilable filename to its .o target."""
694
+ return os.path.splitext(filename)[0] + ".o"
695
+
696
+
697
+ def EscapeShellArgument(s):
698
+ """Quotes an argument so that it will be interpreted literally by a POSIX
699
+ shell. Taken from
700
+ http://stackoverflow.com/questions/35817/whats-the-best-way-to-escape-ossystem-calls-in-python
701
+ """
702
+ return "'" + s.replace("'", "'\\''") + "'"
703
+
704
+
705
+ def EscapeMakeVariableExpansion(s):
706
+ """Make has its own variable expansion syntax using $. We must escape it for
707
+ string to be interpreted literally."""
708
+ return s.replace("$", "$$")
709
+
710
+
711
+ def EscapeCppDefine(s):
712
+ """Escapes a CPP define so that it will reach the compiler unaltered."""
713
+ s = EscapeShellArgument(s)
714
+ s = EscapeMakeVariableExpansion(s)
715
+ # '#' characters must be escaped even embedded in a string, else Make will
716
+ # treat it as the start of a comment.
717
+ return s.replace("#", r"\#")
718
+
719
+
720
+ def QuoteIfNecessary(string):
721
+ """TODO: Should this ideally be replaced with one or more of the above
722
+ functions?"""
723
+ if '"' in string:
724
+ string = '"' + string.replace('"', '\\"') + '"'
725
+ return string
726
+
727
+
728
+ def StringToMakefileVariable(string):
729
+ """Convert a string to a value that is acceptable as a make variable name."""
730
+ return re.sub("[^a-zA-Z0-9_]", "_", string)
731
+
732
+
733
+ srcdir_prefix = ""
734
+
735
+
736
+ def Sourceify(path):
737
+ """Convert a path to its source directory form."""
738
+ if "$(" in path:
739
+ return path
740
+ if os.path.isabs(path):
741
+ return path
742
+ return srcdir_prefix + path
743
+
744
+
745
+ def QuoteSpaces(s, quote=r"\ "):
746
+ return s.replace(" ", quote)
747
+
748
+
749
+ def SourceifyAndQuoteSpaces(path):
750
+ """Convert a path to its source directory form and quote spaces."""
751
+ return QuoteSpaces(Sourceify(path))
752
+
753
+
754
+ # Map from qualified target to path to output.
755
+ target_outputs = {}
756
+ # Map from qualified target to any linkable output. A subset
757
+ # of target_outputs. E.g. when mybinary depends on liba, we want to
758
+ # include liba in the linker line; when otherbinary depends on
759
+ # mybinary, we just want to build mybinary first.
760
+ target_link_deps = {}
761
+
762
+
763
+ class MakefileWriter:
764
+ """MakefileWriter packages up the writing of one target-specific foobar.mk.
765
+
766
+ Its only real entry point is Write(), and is mostly used for namespacing.
767
+ """
768
+
769
+ def __init__(self, generator_flags, flavor):
770
+ self.generator_flags = generator_flags
771
+ self.flavor = flavor
772
+
773
+ self.suffix_rules_srcdir = {}
774
+ self.suffix_rules_objdir1 = {}
775
+ self.suffix_rules_objdir2 = {}
776
+
777
+ # Generate suffix rules for all compilable extensions.
778
+ for ext in COMPILABLE_EXTENSIONS:
779
+ # Suffix rules for source folder.
780
+ self.suffix_rules_srcdir.update(
781
+ {
782
+ ext: (
783
+ """\
784
+ $(obj).$(TOOLSET)/$(TARGET)/%%.o: $(srcdir)/%%%s FORCE_DO_CMD
785
+ \t@$(call do_cmd,%s,1)
786
+ """
787
+ % (ext, COMPILABLE_EXTENSIONS[ext])
788
+ )
789
+ }
790
+ )
791
+
792
+ # Suffix rules for generated source files.
793
+ self.suffix_rules_objdir1.update(
794
+ {
795
+ ext: (
796
+ """\
797
+ $(obj).$(TOOLSET)/$(TARGET)/%%.o: $(obj).$(TOOLSET)/%%%s FORCE_DO_CMD
798
+ \t@$(call do_cmd,%s,1)
799
+ """
800
+ % (ext, COMPILABLE_EXTENSIONS[ext])
801
+ )
802
+ }
803
+ )
804
+ self.suffix_rules_objdir2.update(
805
+ {
806
+ ext: (
807
+ """\
808
+ $(obj).$(TOOLSET)/$(TARGET)/%%.o: $(obj)/%%%s FORCE_DO_CMD
809
+ \t@$(call do_cmd,%s,1)
810
+ """
811
+ % (ext, COMPILABLE_EXTENSIONS[ext])
812
+ )
813
+ }
814
+ )
815
+
816
+ def Write(
817
+ self, qualified_target, base_path, output_filename, spec, configs, part_of_all
818
+ ):
819
+ """The main entry point: writes a .mk file for a single target.
820
+
821
+ Arguments:
822
+ qualified_target: target we're generating
823
+ base_path: path relative to source root we're building in, used to resolve
824
+ target-relative paths
825
+ output_filename: output .mk file name to write
826
+ spec, configs: gyp info
827
+ part_of_all: flag indicating this target is part of 'all'
828
+ """
829
+ gyp.common.EnsureDirExists(output_filename)
830
+
831
+ self.fp = open(output_filename, "w")
832
+
833
+ self.fp.write(header)
834
+
835
+ self.qualified_target = qualified_target
836
+ self.path = base_path
837
+ self.target = spec["target_name"]
838
+ self.type = spec["type"]
839
+ self.toolset = spec["toolset"]
840
+
841
+ self.is_mac_bundle = gyp.xcode_emulation.IsMacBundle(self.flavor, spec)
842
+ if self.flavor == "mac":
843
+ self.xcode_settings = gyp.xcode_emulation.XcodeSettings(spec)
844
+ else:
845
+ self.xcode_settings = None
846
+
847
+ deps, link_deps = self.ComputeDeps(spec)
848
+
849
+ # Some of the generation below can add extra output, sources, or
850
+ # link dependencies. All of the out params of the functions that
851
+ # follow use names like extra_foo.
852
+ extra_outputs = []
853
+ extra_sources = []
854
+ extra_link_deps = []
855
+ extra_mac_bundle_resources = []
856
+ mac_bundle_deps = []
857
+
858
+ if self.is_mac_bundle:
859
+ self.output = self.ComputeMacBundleOutput(spec)
860
+ self.output_binary = self.ComputeMacBundleBinaryOutput(spec)
861
+ else:
862
+ self.output = self.output_binary = self.ComputeOutput(spec)
863
+
864
+ self.is_standalone_static_library = bool(
865
+ spec.get("standalone_static_library", 0)
866
+ )
867
+ self._INSTALLABLE_TARGETS = ("executable", "loadable_module", "shared_library")
868
+ if self.is_standalone_static_library or self.type in self._INSTALLABLE_TARGETS:
869
+ self.alias = os.path.basename(self.output)
870
+ install_path = self._InstallableTargetInstallPath()
871
+ else:
872
+ self.alias = self.output
873
+ install_path = self.output
874
+
875
+ self.WriteLn("TOOLSET := " + self.toolset)
876
+ self.WriteLn("TARGET := " + self.target)
877
+
878
+ # Actions must come first, since they can generate more OBJs for use below.
879
+ if "actions" in spec:
880
+ self.WriteActions(
881
+ spec["actions"],
882
+ extra_sources,
883
+ extra_outputs,
884
+ extra_mac_bundle_resources,
885
+ part_of_all,
886
+ )
887
+
888
+ # Rules must be early like actions.
889
+ if "rules" in spec:
890
+ self.WriteRules(
891
+ spec["rules"],
892
+ extra_sources,
893
+ extra_outputs,
894
+ extra_mac_bundle_resources,
895
+ part_of_all,
896
+ )
897
+
898
+ if "copies" in spec:
899
+ self.WriteCopies(spec["copies"], extra_outputs, part_of_all)
900
+
901
+ # Bundle resources.
902
+ if self.is_mac_bundle:
903
+ all_mac_bundle_resources = (
904
+ spec.get("mac_bundle_resources", []) + extra_mac_bundle_resources
905
+ )
906
+ self.WriteMacBundleResources(all_mac_bundle_resources, mac_bundle_deps)
907
+ self.WriteMacInfoPlist(mac_bundle_deps)
908
+
909
+ # Sources.
910
+ all_sources = spec.get("sources", []) + extra_sources
911
+ if all_sources:
912
+ self.WriteSources(
913
+ configs,
914
+ deps,
915
+ all_sources,
916
+ extra_outputs,
917
+ extra_link_deps,
918
+ part_of_all,
919
+ gyp.xcode_emulation.MacPrefixHeader(
920
+ self.xcode_settings,
921
+ lambda p: Sourceify(self.Absolutify(p)),
922
+ self.Pchify,
923
+ ),
924
+ )
925
+ sources = [x for x in all_sources if Compilable(x)]
926
+ if sources:
927
+ self.WriteLn(SHARED_HEADER_SUFFIX_RULES_COMMENT1)
928
+ extensions = {os.path.splitext(s)[1] for s in sources}
929
+ for ext in extensions:
930
+ if ext in self.suffix_rules_srcdir:
931
+ self.WriteLn(self.suffix_rules_srcdir[ext])
932
+ self.WriteLn(SHARED_HEADER_SUFFIX_RULES_COMMENT2)
933
+ for ext in extensions:
934
+ if ext in self.suffix_rules_objdir1:
935
+ self.WriteLn(self.suffix_rules_objdir1[ext])
936
+ for ext in extensions:
937
+ if ext in self.suffix_rules_objdir2:
938
+ self.WriteLn(self.suffix_rules_objdir2[ext])
939
+ self.WriteLn("# End of this set of suffix rules")
940
+
941
+ # Add dependency from bundle to bundle binary.
942
+ if self.is_mac_bundle:
943
+ mac_bundle_deps.append(self.output_binary)
944
+
945
+ self.WriteTarget(
946
+ spec,
947
+ configs,
948
+ deps,
949
+ extra_link_deps + link_deps,
950
+ mac_bundle_deps,
951
+ extra_outputs,
952
+ part_of_all,
953
+ )
954
+
955
+ # Update global list of target outputs, used in dependency tracking.
956
+ target_outputs[qualified_target] = install_path
957
+
958
+ # Update global list of link dependencies.
959
+ if self.type in ("static_library", "shared_library"):
960
+ target_link_deps[qualified_target] = self.output_binary
961
+
962
+ # Currently any versions have the same effect, but in future the behavior
963
+ # could be different.
964
+ if self.generator_flags.get("android_ndk_version", None):
965
+ self.WriteAndroidNdkModuleRule(self.target, all_sources, link_deps)
966
+
967
+ self.fp.close()
968
+
969
+ def WriteSubMake(self, output_filename, makefile_path, targets, build_dir):
970
+ """Write a "sub-project" Makefile.
971
+
972
+ This is a small, wrapper Makefile that calls the top-level Makefile to build
973
+ the targets from a single gyp file (i.e. a sub-project).
974
+
975
+ Arguments:
976
+ output_filename: sub-project Makefile name to write
977
+ makefile_path: path to the top-level Makefile
978
+ targets: list of "all" targets for this sub-project
979
+ build_dir: build output directory, relative to the sub-project
980
+ """
981
+ gyp.common.EnsureDirExists(output_filename)
982
+ self.fp = open(output_filename, "w")
983
+ self.fp.write(header)
984
+ # For consistency with other builders, put sub-project build output in the
985
+ # sub-project dir (see test/subdirectory/gyptest-subdir-all.py).
986
+ self.WriteLn(
987
+ "export builddir_name ?= %s"
988
+ % os.path.join(os.path.dirname(output_filename), build_dir)
989
+ )
990
+ self.WriteLn(".PHONY: all")
991
+ self.WriteLn("all:")
992
+ if makefile_path:
993
+ makefile_path = " -C " + makefile_path
994
+ self.WriteLn("\t$(MAKE){} {}".format(makefile_path, " ".join(targets)))
995
+ self.fp.close()
996
+
997
+ def WriteActions(
998
+ self,
999
+ actions,
1000
+ extra_sources,
1001
+ extra_outputs,
1002
+ extra_mac_bundle_resources,
1003
+ part_of_all,
1004
+ ):
1005
+ """Write Makefile code for any 'actions' from the gyp input.
1006
+
1007
+ extra_sources: a list that will be filled in with newly generated source
1008
+ files, if any
1009
+ extra_outputs: a list that will be filled in with any outputs of these
1010
+ actions (used to make other pieces dependent on these
1011
+ actions)
1012
+ part_of_all: flag indicating this target is part of 'all'
1013
+ """
1014
+ env = self.GetSortedXcodeEnv()
1015
+ for action in actions:
1016
+ name = StringToMakefileVariable(
1017
+ "{}_{}".format(self.qualified_target, action["action_name"])
1018
+ )
1019
+ self.WriteLn('### Rules for action "%s":' % action["action_name"])
1020
+ inputs = action["inputs"]
1021
+ outputs = action["outputs"]
1022
+
1023
+ # Build up a list of outputs.
1024
+ # Collect the output dirs we'll need.
1025
+ dirs = set()
1026
+ for out in outputs:
1027
+ dir = os.path.split(out)[0]
1028
+ if dir:
1029
+ dirs.add(dir)
1030
+ if int(action.get("process_outputs_as_sources", False)):
1031
+ extra_sources += outputs
1032
+ if int(action.get("process_outputs_as_mac_bundle_resources", False)):
1033
+ extra_mac_bundle_resources += outputs
1034
+
1035
+ # Write the actual command.
1036
+ action_commands = action["action"]
1037
+ if self.flavor == "mac":
1038
+ action_commands = [
1039
+ gyp.xcode_emulation.ExpandEnvVars(command, env)
1040
+ for command in action_commands
1041
+ ]
1042
+ command = gyp.common.EncodePOSIXShellList(action_commands)
1043
+ if "message" in action:
1044
+ self.WriteLn(
1045
+ "quiet_cmd_{} = ACTION {} $@".format(name, action["message"])
1046
+ )
1047
+ else:
1048
+ self.WriteLn(f"quiet_cmd_{name} = ACTION {name} $@")
1049
+ if len(dirs) > 0:
1050
+ command = "mkdir -p %s" % " ".join(dirs) + "; " + command
1051
+
1052
+ cd_action = "cd %s; " % Sourceify(self.path or ".")
1053
+
1054
+ # command and cd_action get written to a toplevel variable called
1055
+ # cmd_foo. Toplevel variables can't handle things that change per
1056
+ # makefile like $(TARGET), so hardcode the target.
1057
+ command = command.replace("$(TARGET)", self.target)
1058
+ cd_action = cd_action.replace("$(TARGET)", self.target)
1059
+
1060
+ # Set LD_LIBRARY_PATH in case the action runs an executable from this
1061
+ # build which links to shared libs from this build.
1062
+ # actions run on the host, so they should in theory only use host
1063
+ # libraries, but until everything is made cross-compile safe, also use
1064
+ # target libraries.
1065
+ # TODO(piman): when everything is cross-compile safe, remove lib.target
1066
+ if self.flavor in {"zos", "aix"}:
1067
+ self.WriteLn(
1068
+ "cmd_%s = LIBPATH=$(builddir)/lib.host:"
1069
+ "$(builddir)/lib.target:$$LIBPATH; "
1070
+ "export LIBPATH; "
1071
+ "%s%s" % (name, cd_action, command)
1072
+ )
1073
+ else:
1074
+ self.WriteLn(
1075
+ "cmd_%s = LD_LIBRARY_PATH=$(builddir)/lib.host:"
1076
+ "$(builddir)/lib.target:$$LD_LIBRARY_PATH; "
1077
+ "export LD_LIBRARY_PATH; "
1078
+ "%s%s" % (name, cd_action, command)
1079
+ )
1080
+ self.WriteLn()
1081
+ outputs = [self.Absolutify(o) for o in outputs]
1082
+ # The makefile rules are all relative to the top dir, but the gyp actions
1083
+ # are defined relative to their containing dir. This replaces the obj
1084
+ # variable for the action rule with an absolute version so that the output
1085
+ # goes in the right place.
1086
+ # Only write the 'obj' and 'builddir' rules for the "primary" output (:1);
1087
+ # it's superfluous for the "extra outputs", and this avoids accidentally
1088
+ # writing duplicate dummy rules for those outputs.
1089
+ # Same for environment.
1090
+ self.WriteLn("%s: obj := $(abs_obj)" % QuoteSpaces(outputs[0]))
1091
+ self.WriteLn("%s: builddir := $(abs_builddir)" % QuoteSpaces(outputs[0]))
1092
+ self.WriteSortedXcodeEnv(outputs[0], self.GetSortedXcodeEnv())
1093
+
1094
+ for input in inputs:
1095
+ assert " " not in input, (
1096
+ "Spaces in action input filenames not supported (%s)" % input
1097
+ )
1098
+ for output in outputs:
1099
+ assert " " not in output, (
1100
+ "Spaces in action output filenames not supported (%s)" % output
1101
+ )
1102
+
1103
+ # See the comment in WriteCopies about expanding env vars.
1104
+ outputs = [gyp.xcode_emulation.ExpandEnvVars(o, env) for o in outputs]
1105
+ inputs = [gyp.xcode_emulation.ExpandEnvVars(i, env) for i in inputs]
1106
+
1107
+ self.WriteDoCmd(
1108
+ outputs,
1109
+ [Sourceify(self.Absolutify(i)) for i in inputs],
1110
+ part_of_all=part_of_all,
1111
+ command=name,
1112
+ )
1113
+
1114
+ # Stuff the outputs in a variable so we can refer to them later.
1115
+ outputs_variable = "action_%s_outputs" % name
1116
+ self.WriteLn("{} := {}".format(outputs_variable, " ".join(outputs)))
1117
+ extra_outputs.append("$(%s)" % outputs_variable)
1118
+ self.WriteLn()
1119
+
1120
+ self.WriteLn()
1121
+
1122
+ def WriteRules(
1123
+ self,
1124
+ rules,
1125
+ extra_sources,
1126
+ extra_outputs,
1127
+ extra_mac_bundle_resources,
1128
+ part_of_all,
1129
+ ):
1130
+ """Write Makefile code for any 'rules' from the gyp input.
1131
+
1132
+ extra_sources: a list that will be filled in with newly generated source
1133
+ files, if any
1134
+ extra_outputs: a list that will be filled in with any outputs of these
1135
+ rules (used to make other pieces dependent on these rules)
1136
+ part_of_all: flag indicating this target is part of 'all'
1137
+ """
1138
+ env = self.GetSortedXcodeEnv()
1139
+ for rule in rules:
1140
+ name = StringToMakefileVariable(
1141
+ "{}_{}".format(self.qualified_target, rule["rule_name"])
1142
+ )
1143
+ count = 0
1144
+ self.WriteLn("### Generated for rule %s:" % name)
1145
+
1146
+ all_outputs = []
1147
+
1148
+ for rule_source in rule.get("rule_sources", []):
1149
+ dirs = set()
1150
+ (rule_source_dirname, rule_source_basename) = os.path.split(rule_source)
1151
+ (rule_source_root, rule_source_ext) = os.path.splitext(
1152
+ rule_source_basename
1153
+ )
1154
+
1155
+ outputs = [
1156
+ self.ExpandInputRoot(out, rule_source_root, rule_source_dirname)
1157
+ for out in rule["outputs"]
1158
+ ]
1159
+
1160
+ for out in outputs:
1161
+ dir = os.path.dirname(out)
1162
+ if dir:
1163
+ dirs.add(dir)
1164
+ if int(rule.get("process_outputs_as_sources", False)):
1165
+ extra_sources += outputs
1166
+ if int(rule.get("process_outputs_as_mac_bundle_resources", False)):
1167
+ extra_mac_bundle_resources += outputs
1168
+ inputs = [
1169
+ Sourceify(self.Absolutify(i))
1170
+ for i in [rule_source] + rule.get("inputs", [])
1171
+ ]
1172
+ actions = ["$(call do_cmd,%s_%d)" % (name, count)]
1173
+
1174
+ if name == "resources_grit":
1175
+ # HACK: This is ugly. Grit intentionally doesn't touch the
1176
+ # timestamp of its output file when the file doesn't change,
1177
+ # which is fine in hash-based dependency systems like scons
1178
+ # and forge, but not kosher in the make world. After some
1179
+ # discussion, hacking around it here seems like the least
1180
+ # amount of pain.
1181
+ actions += ["@touch --no-create $@"]
1182
+
1183
+ # See the comment in WriteCopies about expanding env vars.
1184
+ outputs = [gyp.xcode_emulation.ExpandEnvVars(o, env) for o in outputs]
1185
+ inputs = [gyp.xcode_emulation.ExpandEnvVars(i, env) for i in inputs]
1186
+
1187
+ outputs = [self.Absolutify(o) for o in outputs]
1188
+ all_outputs += outputs
1189
+ # Only write the 'obj' and 'builddir' rules for the "primary" output
1190
+ # (:1); it's superfluous for the "extra outputs", and this avoids
1191
+ # accidentally writing duplicate dummy rules for those outputs.
1192
+ self.WriteLn("%s: obj := $(abs_obj)" % outputs[0])
1193
+ self.WriteLn("%s: builddir := $(abs_builddir)" % outputs[0])
1194
+ self.WriteMakeRule(
1195
+ outputs, inputs, actions, command="%s_%d" % (name, count)
1196
+ )
1197
+ # Spaces in rule filenames are not supported, but rule variables have
1198
+ # spaces in them (e.g. RULE_INPUT_PATH expands to '$(abspath $<)').
1199
+ # The spaces within the variables are valid, so remove the variables
1200
+ # before checking.
1201
+ variables_with_spaces = re.compile(r"\$\([^ ]* \$<\)")
1202
+ for output in outputs:
1203
+ output = re.sub(variables_with_spaces, "", output)
1204
+ assert " " not in output, (
1205
+ "Spaces in rule filenames not yet supported (%s)" % output
1206
+ )
1207
+ self.WriteLn("all_deps += %s" % " ".join(outputs))
1208
+
1209
+ action = [
1210
+ self.ExpandInputRoot(ac, rule_source_root, rule_source_dirname)
1211
+ for ac in rule["action"]
1212
+ ]
1213
+ mkdirs = ""
1214
+ if len(dirs) > 0:
1215
+ mkdirs = "mkdir -p %s; " % " ".join(dirs)
1216
+ cd_action = "cd %s; " % Sourceify(self.path or ".")
1217
+
1218
+ # action, cd_action, and mkdirs get written to a toplevel variable
1219
+ # called cmd_foo. Toplevel variables can't handle things that change
1220
+ # per makefile like $(TARGET), so hardcode the target.
1221
+ if self.flavor == "mac":
1222
+ action = [
1223
+ gyp.xcode_emulation.ExpandEnvVars(command, env)
1224
+ for command in action
1225
+ ]
1226
+ action = gyp.common.EncodePOSIXShellList(action)
1227
+ action = action.replace("$(TARGET)", self.target)
1228
+ cd_action = cd_action.replace("$(TARGET)", self.target)
1229
+ mkdirs = mkdirs.replace("$(TARGET)", self.target)
1230
+
1231
+ # Set LD_LIBRARY_PATH in case the rule runs an executable from this
1232
+ # build which links to shared libs from this build.
1233
+ # rules run on the host, so they should in theory only use host
1234
+ # libraries, but until everything is made cross-compile safe, also use
1235
+ # target libraries.
1236
+ # TODO(piman): when everything is cross-compile safe, remove lib.target
1237
+ self.WriteLn(
1238
+ "cmd_%(name)s_%(count)d = LD_LIBRARY_PATH="
1239
+ "$(builddir)/lib.host:$(builddir)/lib.target:$$LD_LIBRARY_PATH; "
1240
+ "export LD_LIBRARY_PATH; "
1241
+ "%(cd_action)s%(mkdirs)s%(action)s"
1242
+ % {
1243
+ "action": action,
1244
+ "cd_action": cd_action,
1245
+ "count": count,
1246
+ "mkdirs": mkdirs,
1247
+ "name": name,
1248
+ }
1249
+ )
1250
+ self.WriteLn(
1251
+ "quiet_cmd_%(name)s_%(count)d = RULE %(name)s_%(count)d $@"
1252
+ % {"count": count, "name": name}
1253
+ )
1254
+ self.WriteLn()
1255
+ count += 1
1256
+
1257
+ outputs_variable = "rule_%s_outputs" % name
1258
+ self.WriteList(all_outputs, outputs_variable)
1259
+ extra_outputs.append("$(%s)" % outputs_variable)
1260
+
1261
+ self.WriteLn("### Finished generating for rule: %s" % name)
1262
+ self.WriteLn()
1263
+ self.WriteLn("### Finished generating for all rules")
1264
+ self.WriteLn("")
1265
+
1266
+ def WriteCopies(self, copies, extra_outputs, part_of_all):
1267
+ """Write Makefile code for any 'copies' from the gyp input.
1268
+
1269
+ extra_outputs: a list that will be filled in with any outputs of this action
1270
+ (used to make other pieces dependent on this action)
1271
+ part_of_all: flag indicating this target is part of 'all'
1272
+ """
1273
+ self.WriteLn("### Generated for copy rule.")
1274
+
1275
+ variable = StringToMakefileVariable(self.qualified_target + "_copies")
1276
+ outputs = []
1277
+ for copy in copies:
1278
+ for path in copy["files"]:
1279
+ # Absolutify() may call normpath, and will strip trailing slashes.
1280
+ path = Sourceify(self.Absolutify(path))
1281
+ filename = os.path.split(path)[1]
1282
+ output = Sourceify(
1283
+ self.Absolutify(os.path.join(copy["destination"], filename))
1284
+ )
1285
+
1286
+ # If the output path has variables in it, which happens in practice for
1287
+ # 'copies', writing the environment as target-local doesn't work,
1288
+ # because the variables are already needed for the target name.
1289
+ # Copying the environment variables into global make variables doesn't
1290
+ # work either, because then the .d files will potentially contain spaces
1291
+ # after variable expansion, and .d file handling cannot handle spaces.
1292
+ # As a workaround, manually expand variables at gyp time. Since 'copies'
1293
+ # can't run scripts, there's no need to write the env then.
1294
+ # WriteDoCmd() will escape spaces for .d files.
1295
+ env = self.GetSortedXcodeEnv()
1296
+ output = gyp.xcode_emulation.ExpandEnvVars(output, env)
1297
+ path = gyp.xcode_emulation.ExpandEnvVars(path, env)
1298
+ self.WriteDoCmd([output], [path], "copy", part_of_all)
1299
+ outputs.append(output)
1300
+ self.WriteLn(
1301
+ "{} = {}".format(variable, " ".join(QuoteSpaces(o) for o in outputs))
1302
+ )
1303
+ extra_outputs.append("$(%s)" % variable)
1304
+ self.WriteLn()
1305
+
1306
+ def WriteMacBundleResources(self, resources, bundle_deps):
1307
+ """Writes Makefile code for 'mac_bundle_resources'."""
1308
+ self.WriteLn("### Generated for mac_bundle_resources")
1309
+
1310
+ for output, res in gyp.xcode_emulation.GetMacBundleResources(
1311
+ generator_default_variables["PRODUCT_DIR"],
1312
+ self.xcode_settings,
1313
+ [Sourceify(self.Absolutify(r)) for r in resources],
1314
+ ):
1315
+ _, ext = os.path.splitext(output)
1316
+ if ext != ".xcassets":
1317
+ # Make does not supports '.xcassets' emulation.
1318
+ self.WriteDoCmd(
1319
+ [output], [res], "mac_tool,,,copy-bundle-resource", part_of_all=True
1320
+ )
1321
+ bundle_deps.append(output)
1322
+
1323
+ def WriteMacInfoPlist(self, bundle_deps):
1324
+ """Write Makefile code for bundle Info.plist files."""
1325
+ info_plist, out, defines, extra_env = gyp.xcode_emulation.GetMacInfoPlist(
1326
+ generator_default_variables["PRODUCT_DIR"],
1327
+ self.xcode_settings,
1328
+ lambda p: Sourceify(self.Absolutify(p)),
1329
+ )
1330
+ if not info_plist:
1331
+ return
1332
+ if defines:
1333
+ # Create an intermediate file to store preprocessed results.
1334
+ intermediate_plist = "$(obj).$(TOOLSET)/$(TARGET)/" + os.path.basename(
1335
+ info_plist
1336
+ )
1337
+ self.WriteList(
1338
+ defines,
1339
+ intermediate_plist + ": INFOPLIST_DEFINES",
1340
+ "-D",
1341
+ quoter=EscapeCppDefine,
1342
+ )
1343
+ self.WriteMakeRule(
1344
+ [intermediate_plist],
1345
+ [info_plist],
1346
+ [
1347
+ "$(call do_cmd,infoplist)",
1348
+ # "Convert" the plist so that any weird whitespace changes from the
1349
+ # preprocessor do not affect the XML parser in mac_tool.
1350
+ "@plutil -convert xml1 $@ $@",
1351
+ ],
1352
+ )
1353
+ info_plist = intermediate_plist
1354
+ # plists can contain envvars and substitute them into the file.
1355
+ self.WriteSortedXcodeEnv(
1356
+ out, self.GetSortedXcodeEnv(additional_settings=extra_env)
1357
+ )
1358
+ self.WriteDoCmd(
1359
+ [out], [info_plist], "mac_tool,,,copy-info-plist", part_of_all=True
1360
+ )
1361
+ bundle_deps.append(out)
1362
+
1363
+ def WriteSources(
1364
+ self,
1365
+ configs,
1366
+ deps,
1367
+ sources,
1368
+ extra_outputs,
1369
+ extra_link_deps,
1370
+ part_of_all,
1371
+ precompiled_header,
1372
+ ):
1373
+ """Write Makefile code for any 'sources' from the gyp input.
1374
+ These are source files necessary to build the current target.
1375
+
1376
+ configs, deps, sources: input from gyp.
1377
+ extra_outputs: a list of extra outputs this action should be dependent on;
1378
+ used to serialize action/rules before compilation
1379
+ extra_link_deps: a list that will be filled in with any outputs of
1380
+ compilation (to be used in link lines)
1381
+ part_of_all: flag indicating this target is part of 'all'
1382
+ """
1383
+
1384
+ # Write configuration-specific variables for CFLAGS, etc.
1385
+ for configname in sorted(configs.keys()):
1386
+ config = configs[configname]
1387
+ self.WriteList(
1388
+ config.get("defines"),
1389
+ "DEFS_%s" % configname,
1390
+ prefix="-D",
1391
+ quoter=EscapeCppDefine,
1392
+ )
1393
+
1394
+ if self.flavor == "mac":
1395
+ cflags = self.xcode_settings.GetCflags(
1396
+ configname, arch=config.get("xcode_configuration_platform")
1397
+ )
1398
+ cflags_c = self.xcode_settings.GetCflagsC(configname)
1399
+ cflags_cc = self.xcode_settings.GetCflagsCC(configname)
1400
+ cflags_objc = self.xcode_settings.GetCflagsObjC(configname)
1401
+ cflags_objcc = self.xcode_settings.GetCflagsObjCC(configname)
1402
+ else:
1403
+ cflags = config.get("cflags")
1404
+ cflags_c = config.get("cflags_c")
1405
+ cflags_cc = config.get("cflags_cc")
1406
+
1407
+ self.WriteLn("# Flags passed to all source files.")
1408
+ self.WriteList(cflags, "CFLAGS_%s" % configname)
1409
+ self.WriteLn("# Flags passed to only C files.")
1410
+ self.WriteList(cflags_c, "CFLAGS_C_%s" % configname)
1411
+ self.WriteLn("# Flags passed to only C++ files.")
1412
+ self.WriteList(cflags_cc, "CFLAGS_CC_%s" % configname)
1413
+ if self.flavor == "mac":
1414
+ self.WriteLn("# Flags passed to only ObjC files.")
1415
+ self.WriteList(cflags_objc, "CFLAGS_OBJC_%s" % configname)
1416
+ self.WriteLn("# Flags passed to only ObjC++ files.")
1417
+ self.WriteList(cflags_objcc, "CFLAGS_OBJCC_%s" % configname)
1418
+ includes = config.get("include_dirs")
1419
+ if includes:
1420
+ includes = [Sourceify(self.Absolutify(i)) for i in includes]
1421
+ self.WriteList(includes, "INCS_%s" % configname, prefix="-I")
1422
+
1423
+ compilable = list(filter(Compilable, sources))
1424
+ objs = [self.Objectify(self.Absolutify(Target(c))) for c in compilable]
1425
+ self.WriteList(objs, "OBJS")
1426
+
1427
+ for obj in objs:
1428
+ assert " " not in obj, "Spaces in object filenames not supported (%s)" % obj
1429
+ self.WriteLn(
1430
+ "# Add to the list of files we specially track " "dependencies for."
1431
+ )
1432
+ self.WriteLn("all_deps += $(OBJS)")
1433
+ self.WriteLn()
1434
+
1435
+ # Make sure our dependencies are built first.
1436
+ if deps:
1437
+ self.WriteMakeRule(
1438
+ ["$(OBJS)"],
1439
+ deps,
1440
+ comment="Make sure our dependencies are built " "before any of us.",
1441
+ order_only=True,
1442
+ )
1443
+
1444
+ # Make sure the actions and rules run first.
1445
+ # If they generate any extra headers etc., the per-.o file dep tracking
1446
+ # will catch the proper rebuilds, so order only is still ok here.
1447
+ if extra_outputs:
1448
+ self.WriteMakeRule(
1449
+ ["$(OBJS)"],
1450
+ extra_outputs,
1451
+ comment="Make sure our actions/rules run " "before any of us.",
1452
+ order_only=True,
1453
+ )
1454
+
1455
+ pchdeps = precompiled_header.GetObjDependencies(compilable, objs)
1456
+ if pchdeps:
1457
+ self.WriteLn("# Dependencies from obj files to their precompiled headers")
1458
+ for source, obj, gch in pchdeps:
1459
+ self.WriteLn(f"{obj}: {gch}")
1460
+ self.WriteLn("# End precompiled header dependencies")
1461
+
1462
+ if objs:
1463
+ extra_link_deps.append("$(OBJS)")
1464
+ self.WriteLn(
1465
+ """\
1466
+ # CFLAGS et al overrides must be target-local.
1467
+ # See "Target-specific Variable Values" in the GNU Make manual."""
1468
+ )
1469
+ self.WriteLn("$(OBJS): TOOLSET := $(TOOLSET)")
1470
+ self.WriteLn(
1471
+ "$(OBJS): GYP_CFLAGS := "
1472
+ "$(DEFS_$(BUILDTYPE)) "
1473
+ "$(INCS_$(BUILDTYPE)) "
1474
+ "%s " % precompiled_header.GetInclude("c") + "$(CFLAGS_$(BUILDTYPE)) "
1475
+ "$(CFLAGS_C_$(BUILDTYPE))"
1476
+ )
1477
+ self.WriteLn(
1478
+ "$(OBJS): GYP_CXXFLAGS := "
1479
+ "$(DEFS_$(BUILDTYPE)) "
1480
+ "$(INCS_$(BUILDTYPE)) "
1481
+ "%s " % precompiled_header.GetInclude("cc") + "$(CFLAGS_$(BUILDTYPE)) "
1482
+ "$(CFLAGS_CC_$(BUILDTYPE))"
1483
+ )
1484
+ if self.flavor == "mac":
1485
+ self.WriteLn(
1486
+ "$(OBJS): GYP_OBJCFLAGS := "
1487
+ "$(DEFS_$(BUILDTYPE)) "
1488
+ "$(INCS_$(BUILDTYPE)) "
1489
+ "%s " % precompiled_header.GetInclude("m")
1490
+ + "$(CFLAGS_$(BUILDTYPE)) "
1491
+ "$(CFLAGS_C_$(BUILDTYPE)) "
1492
+ "$(CFLAGS_OBJC_$(BUILDTYPE))"
1493
+ )
1494
+ self.WriteLn(
1495
+ "$(OBJS): GYP_OBJCXXFLAGS := "
1496
+ "$(DEFS_$(BUILDTYPE)) "
1497
+ "$(INCS_$(BUILDTYPE)) "
1498
+ "%s " % precompiled_header.GetInclude("mm")
1499
+ + "$(CFLAGS_$(BUILDTYPE)) "
1500
+ "$(CFLAGS_CC_$(BUILDTYPE)) "
1501
+ "$(CFLAGS_OBJCC_$(BUILDTYPE))"
1502
+ )
1503
+
1504
+ self.WritePchTargets(precompiled_header.GetPchBuildCommands())
1505
+
1506
+ # If there are any object files in our input file list, link them into our
1507
+ # output.
1508
+ extra_link_deps += [source for source in sources if Linkable(source)]
1509
+
1510
+ self.WriteLn()
1511
+
1512
+ def WritePchTargets(self, pch_commands):
1513
+ """Writes make rules to compile prefix headers."""
1514
+ if not pch_commands:
1515
+ return
1516
+
1517
+ for gch, lang_flag, lang, input in pch_commands:
1518
+ extra_flags = {
1519
+ "c": "$(CFLAGS_C_$(BUILDTYPE))",
1520
+ "cc": "$(CFLAGS_CC_$(BUILDTYPE))",
1521
+ "m": "$(CFLAGS_C_$(BUILDTYPE)) $(CFLAGS_OBJC_$(BUILDTYPE))",
1522
+ "mm": "$(CFLAGS_CC_$(BUILDTYPE)) $(CFLAGS_OBJCC_$(BUILDTYPE))",
1523
+ }[lang]
1524
+ var_name = {
1525
+ "c": "GYP_PCH_CFLAGS",
1526
+ "cc": "GYP_PCH_CXXFLAGS",
1527
+ "m": "GYP_PCH_OBJCFLAGS",
1528
+ "mm": "GYP_PCH_OBJCXXFLAGS",
1529
+ }[lang]
1530
+ self.WriteLn(
1531
+ f"{gch}: {var_name} := {lang_flag} " + "$(DEFS_$(BUILDTYPE)) "
1532
+ "$(INCS_$(BUILDTYPE)) "
1533
+ "$(CFLAGS_$(BUILDTYPE)) " + extra_flags
1534
+ )
1535
+
1536
+ self.WriteLn(f"{gch}: {input} FORCE_DO_CMD")
1537
+ self.WriteLn("\t@$(call do_cmd,pch_%s,1)" % lang)
1538
+ self.WriteLn("")
1539
+ assert " " not in gch, "Spaces in gch filenames not supported (%s)" % gch
1540
+ self.WriteLn("all_deps += %s" % gch)
1541
+ self.WriteLn("")
1542
+
1543
+ def ComputeOutputBasename(self, spec):
1544
+ """Return the 'output basename' of a gyp spec.
1545
+
1546
+ E.g., the loadable module 'foobar' in directory 'baz' will produce
1547
+ 'libfoobar.so'
1548
+ """
1549
+ assert not self.is_mac_bundle
1550
+
1551
+ if self.flavor == "mac" and self.type in (
1552
+ "static_library",
1553
+ "executable",
1554
+ "shared_library",
1555
+ "loadable_module",
1556
+ ):
1557
+ return self.xcode_settings.GetExecutablePath()
1558
+
1559
+ target = spec["target_name"]
1560
+ target_prefix = ""
1561
+ target_ext = ""
1562
+ if self.type == "static_library":
1563
+ if target[:3] == "lib":
1564
+ target = target[3:]
1565
+ target_prefix = "lib"
1566
+ target_ext = ".a"
1567
+ elif self.type in ("loadable_module", "shared_library"):
1568
+ if target[:3] == "lib":
1569
+ target = target[3:]
1570
+ target_prefix = "lib"
1571
+ if self.flavor == "aix":
1572
+ target_ext = ".a"
1573
+ elif self.flavor == "zos":
1574
+ target_ext = ".x"
1575
+ else:
1576
+ target_ext = ".so"
1577
+ elif self.type == "none":
1578
+ target = "%s.stamp" % target
1579
+ elif self.type != "executable":
1580
+ print(
1581
+ "ERROR: What output file should be generated?",
1582
+ "type",
1583
+ self.type,
1584
+ "target",
1585
+ target,
1586
+ )
1587
+
1588
+ target_prefix = spec.get("product_prefix", target_prefix)
1589
+ target = spec.get("product_name", target)
1590
+ product_ext = spec.get("product_extension")
1591
+ if product_ext:
1592
+ target_ext = "." + product_ext
1593
+
1594
+ return target_prefix + target + target_ext
1595
+
1596
+ def _InstallImmediately(self):
1597
+ return (
1598
+ self.toolset == "target"
1599
+ and self.flavor == "mac"
1600
+ and self.type
1601
+ in ("static_library", "executable", "shared_library", "loadable_module")
1602
+ )
1603
+
1604
+ def ComputeOutput(self, spec):
1605
+ """Return the 'output' (full output path) of a gyp spec.
1606
+
1607
+ E.g., the loadable module 'foobar' in directory 'baz' will produce
1608
+ '$(obj)/baz/libfoobar.so'
1609
+ """
1610
+ assert not self.is_mac_bundle
1611
+
1612
+ path = os.path.join("$(obj)." + self.toolset, self.path)
1613
+ if self.type == "executable" or self._InstallImmediately():
1614
+ path = "$(builddir)"
1615
+ path = spec.get("product_dir", path)
1616
+ return os.path.join(path, self.ComputeOutputBasename(spec))
1617
+
1618
+ def ComputeMacBundleOutput(self, spec):
1619
+ """Return the 'output' (full output path) to a bundle output directory."""
1620
+ assert self.is_mac_bundle
1621
+ path = generator_default_variables["PRODUCT_DIR"]
1622
+ return os.path.join(path, self.xcode_settings.GetWrapperName())
1623
+
1624
+ def ComputeMacBundleBinaryOutput(self, spec):
1625
+ """Return the 'output' (full output path) to the binary in a bundle."""
1626
+ path = generator_default_variables["PRODUCT_DIR"]
1627
+ return os.path.join(path, self.xcode_settings.GetExecutablePath())
1628
+
1629
+ def ComputeDeps(self, spec):
1630
+ """Compute the dependencies of a gyp spec.
1631
+
1632
+ Returns a tuple (deps, link_deps), where each is a list of
1633
+ filenames that will need to be put in front of make for either
1634
+ building (deps) or linking (link_deps).
1635
+ """
1636
+ deps = []
1637
+ link_deps = []
1638
+ if "dependencies" in spec:
1639
+ deps.extend(
1640
+ [
1641
+ target_outputs[dep]
1642
+ for dep in spec["dependencies"]
1643
+ if target_outputs[dep]
1644
+ ]
1645
+ )
1646
+ for dep in spec["dependencies"]:
1647
+ if dep in target_link_deps:
1648
+ link_deps.append(target_link_deps[dep])
1649
+ deps.extend(link_deps)
1650
+ # TODO: It seems we need to transitively link in libraries (e.g. -lfoo)?
1651
+ # This hack makes it work:
1652
+ # link_deps.extend(spec.get('libraries', []))
1653
+ return (gyp.common.uniquer(deps), gyp.common.uniquer(link_deps))
1654
+
1655
+ def GetSharedObjectFromSidedeck(self, sidedeck):
1656
+ """Return the shared object files based on sidedeck"""
1657
+ return re.sub(r"\.x$", ".so", sidedeck)
1658
+
1659
+ def GetUnversionedSidedeckFromSidedeck(self, sidedeck):
1660
+ """Return the shared object files based on sidedeck"""
1661
+ return re.sub(r"\.\d+\.x$", ".x", sidedeck)
1662
+
1663
+ def WriteDependencyOnExtraOutputs(self, target, extra_outputs):
1664
+ self.WriteMakeRule(
1665
+ [self.output_binary],
1666
+ extra_outputs,
1667
+ comment="Build our special outputs first.",
1668
+ order_only=True,
1669
+ )
1670
+
1671
+ def WriteTarget(
1672
+ self, spec, configs, deps, link_deps, bundle_deps, extra_outputs, part_of_all
1673
+ ):
1674
+ """Write Makefile code to produce the final target of the gyp spec.
1675
+
1676
+ spec, configs: input from gyp.
1677
+ deps, link_deps: dependency lists; see ComputeDeps()
1678
+ extra_outputs: any extra outputs that our target should depend on
1679
+ part_of_all: flag indicating this target is part of 'all'
1680
+ """
1681
+
1682
+ self.WriteLn("### Rules for final target.")
1683
+
1684
+ if extra_outputs:
1685
+ self.WriteDependencyOnExtraOutputs(self.output_binary, extra_outputs)
1686
+ self.WriteMakeRule(
1687
+ extra_outputs,
1688
+ deps,
1689
+ comment=("Preserve order dependency of " "special output on deps."),
1690
+ order_only=True,
1691
+ )
1692
+
1693
+ target_postbuilds = {}
1694
+ if self.type != "none":
1695
+ for configname in sorted(configs.keys()):
1696
+ config = configs[configname]
1697
+ if self.flavor == "mac":
1698
+ ldflags = self.xcode_settings.GetLdflags(
1699
+ configname,
1700
+ generator_default_variables["PRODUCT_DIR"],
1701
+ lambda p: Sourceify(self.Absolutify(p)),
1702
+ arch=config.get("xcode_configuration_platform"),
1703
+ )
1704
+
1705
+ # TARGET_POSTBUILDS_$(BUILDTYPE) is added to postbuilds later on.
1706
+ gyp_to_build = gyp.common.InvertRelativePath(self.path)
1707
+ target_postbuild = self.xcode_settings.AddImplicitPostbuilds(
1708
+ configname,
1709
+ QuoteSpaces(
1710
+ os.path.normpath(os.path.join(gyp_to_build, self.output))
1711
+ ),
1712
+ QuoteSpaces(
1713
+ os.path.normpath(
1714
+ os.path.join(gyp_to_build, self.output_binary)
1715
+ )
1716
+ ),
1717
+ )
1718
+ if target_postbuild:
1719
+ target_postbuilds[configname] = target_postbuild
1720
+ else:
1721
+ ldflags = config.get("ldflags", [])
1722
+ # Compute an rpath for this output if needed.
1723
+ if any(dep.endswith(".so") or ".so." in dep for dep in deps):
1724
+ # We want to get the literal string "$ORIGIN"
1725
+ # into the link command, so we need lots of escaping.
1726
+ ldflags.append(r"-Wl,-rpath=\$$ORIGIN/")
1727
+ ldflags.append(r"-Wl,-rpath-link=\$(builddir)/")
1728
+ library_dirs = config.get("library_dirs", [])
1729
+ ldflags += [("-L%s" % library_dir) for library_dir in library_dirs]
1730
+ self.WriteList(ldflags, "LDFLAGS_%s" % configname)
1731
+ if self.flavor == "mac":
1732
+ self.WriteList(
1733
+ self.xcode_settings.GetLibtoolflags(configname),
1734
+ "LIBTOOLFLAGS_%s" % configname,
1735
+ )
1736
+ libraries = spec.get("libraries")
1737
+ if libraries:
1738
+ # Remove duplicate entries
1739
+ libraries = gyp.common.uniquer(libraries)
1740
+ if self.flavor == "mac":
1741
+ libraries = self.xcode_settings.AdjustLibraries(libraries)
1742
+ self.WriteList(libraries, "LIBS")
1743
+ self.WriteLn(
1744
+ "%s: GYP_LDFLAGS := $(LDFLAGS_$(BUILDTYPE))"
1745
+ % QuoteSpaces(self.output_binary)
1746
+ )
1747
+ self.WriteLn("%s: LIBS := $(LIBS)" % QuoteSpaces(self.output_binary))
1748
+
1749
+ if self.flavor == "mac":
1750
+ self.WriteLn(
1751
+ "%s: GYP_LIBTOOLFLAGS := $(LIBTOOLFLAGS_$(BUILDTYPE))"
1752
+ % QuoteSpaces(self.output_binary)
1753
+ )
1754
+
1755
+ # Postbuild actions. Like actions, but implicitly depend on the target's
1756
+ # output.
1757
+ postbuilds = []
1758
+ if self.flavor == "mac":
1759
+ if target_postbuilds:
1760
+ postbuilds.append("$(TARGET_POSTBUILDS_$(BUILDTYPE))")
1761
+ postbuilds.extend(gyp.xcode_emulation.GetSpecPostbuildCommands(spec))
1762
+
1763
+ if postbuilds:
1764
+ # Envvars may be referenced by TARGET_POSTBUILDS_$(BUILDTYPE),
1765
+ # so we must output its definition first, since we declare variables
1766
+ # using ":=".
1767
+ self.WriteSortedXcodeEnv(self.output, self.GetSortedXcodePostbuildEnv())
1768
+
1769
+ for configname in target_postbuilds:
1770
+ self.WriteLn(
1771
+ "%s: TARGET_POSTBUILDS_%s := %s"
1772
+ % (
1773
+ QuoteSpaces(self.output),
1774
+ configname,
1775
+ gyp.common.EncodePOSIXShellList(target_postbuilds[configname]),
1776
+ )
1777
+ )
1778
+
1779
+ # Postbuilds expect to be run in the gyp file's directory, so insert an
1780
+ # implicit postbuild to cd to there.
1781
+ postbuilds.insert(0, gyp.common.EncodePOSIXShellList(["cd", self.path]))
1782
+ for i, postbuild in enumerate(postbuilds):
1783
+ if not postbuild.startswith("$"):
1784
+ postbuilds[i] = EscapeShellArgument(postbuild)
1785
+ self.WriteLn("%s: builddir := $(abs_builddir)" % QuoteSpaces(self.output))
1786
+ self.WriteLn(
1787
+ "%s: POSTBUILDS := %s"
1788
+ % (QuoteSpaces(self.output), " ".join(postbuilds))
1789
+ )
1790
+
1791
+ # A bundle directory depends on its dependencies such as bundle resources
1792
+ # and bundle binary. When all dependencies have been built, the bundle
1793
+ # needs to be packaged.
1794
+ if self.is_mac_bundle:
1795
+ # If the framework doesn't contain a binary, then nothing depends
1796
+ # on the actions -- make the framework depend on them directly too.
1797
+ self.WriteDependencyOnExtraOutputs(self.output, extra_outputs)
1798
+
1799
+ # Bundle dependencies. Note that the code below adds actions to this
1800
+ # target, so if you move these two lines, move the lines below as well.
1801
+ self.WriteList([QuoteSpaces(dep) for dep in bundle_deps], "BUNDLE_DEPS")
1802
+ self.WriteLn("%s: $(BUNDLE_DEPS)" % QuoteSpaces(self.output))
1803
+
1804
+ # After the framework is built, package it. Needs to happen before
1805
+ # postbuilds, since postbuilds depend on this.
1806
+ if self.type in ("shared_library", "loadable_module"):
1807
+ self.WriteLn(
1808
+ "\t@$(call do_cmd,mac_package_framework,,,%s)"
1809
+ % self.xcode_settings.GetFrameworkVersion()
1810
+ )
1811
+
1812
+ # Bundle postbuilds can depend on the whole bundle, so run them after
1813
+ # the bundle is packaged, not already after the bundle binary is done.
1814
+ if postbuilds:
1815
+ self.WriteLn("\t@$(call do_postbuilds)")
1816
+ postbuilds = [] # Don't write postbuilds for target's output.
1817
+
1818
+ # Needed by test/mac/gyptest-rebuild.py.
1819
+ self.WriteLn("\t@true # No-op, used by tests")
1820
+
1821
+ # Since this target depends on binary and resources which are in
1822
+ # nested subfolders, the framework directory will be older than
1823
+ # its dependencies usually. To prevent this rule from executing
1824
+ # on every build (expensive, especially with postbuilds), expliclity
1825
+ # update the time on the framework directory.
1826
+ self.WriteLn("\t@touch -c %s" % QuoteSpaces(self.output))
1827
+
1828
+ if postbuilds:
1829
+ assert not self.is_mac_bundle, (
1830
+ "Postbuilds for bundles should be done "
1831
+ "on the bundle, not the binary (target '%s')" % self.target
1832
+ )
1833
+ assert "product_dir" not in spec, (
1834
+ "Postbuilds do not work with " "custom product_dir"
1835
+ )
1836
+
1837
+ if self.type == "executable":
1838
+ self.WriteLn(
1839
+ "%s: LD_INPUTS := %s"
1840
+ % (
1841
+ QuoteSpaces(self.output_binary),
1842
+ " ".join(QuoteSpaces(dep) for dep in link_deps),
1843
+ )
1844
+ )
1845
+ if self.toolset == "host" and self.flavor == "android":
1846
+ self.WriteDoCmd(
1847
+ [self.output_binary],
1848
+ link_deps,
1849
+ "link_host",
1850
+ part_of_all,
1851
+ postbuilds=postbuilds,
1852
+ )
1853
+ else:
1854
+ self.WriteDoCmd(
1855
+ [self.output_binary],
1856
+ link_deps,
1857
+ "link",
1858
+ part_of_all,
1859
+ postbuilds=postbuilds,
1860
+ )
1861
+
1862
+ elif self.type == "static_library":
1863
+ for link_dep in link_deps:
1864
+ assert " " not in link_dep, (
1865
+ "Spaces in alink input filenames not supported (%s)" % link_dep
1866
+ )
1867
+ if (
1868
+ self.flavor not in ("mac", "openbsd", "netbsd", "win")
1869
+ and not self.is_standalone_static_library
1870
+ ):
1871
+ if self.flavor in ("linux", "android"):
1872
+ self.WriteMakeRule(
1873
+ [self.output_binary],
1874
+ link_deps,
1875
+ actions=["$(call create_thin_archive,$@,$^)"],
1876
+ )
1877
+ else:
1878
+ self.WriteDoCmd(
1879
+ [self.output_binary],
1880
+ link_deps,
1881
+ "alink_thin",
1882
+ part_of_all,
1883
+ postbuilds=postbuilds,
1884
+ )
1885
+ else:
1886
+ if self.flavor in ("linux", "android"):
1887
+ self.WriteMakeRule(
1888
+ [self.output_binary],
1889
+ link_deps,
1890
+ actions=["$(call create_archive,$@,$^)"],
1891
+ )
1892
+ else:
1893
+ self.WriteDoCmd(
1894
+ [self.output_binary],
1895
+ link_deps,
1896
+ "alink",
1897
+ part_of_all,
1898
+ postbuilds=postbuilds,
1899
+ )
1900
+ elif self.type == "shared_library":
1901
+ self.WriteLn(
1902
+ "%s: LD_INPUTS := %s"
1903
+ % (
1904
+ QuoteSpaces(self.output_binary),
1905
+ " ".join(QuoteSpaces(dep) for dep in link_deps),
1906
+ )
1907
+ )
1908
+ self.WriteDoCmd(
1909
+ [self.output_binary],
1910
+ link_deps,
1911
+ "solink",
1912
+ part_of_all,
1913
+ postbuilds=postbuilds,
1914
+ )
1915
+ # z/OS has a .so target as well as a sidedeck .x target
1916
+ if self.flavor == "zos":
1917
+ self.WriteLn(
1918
+ "%s: %s"
1919
+ % (
1920
+ QuoteSpaces(
1921
+ self.GetSharedObjectFromSidedeck(self.output_binary)
1922
+ ),
1923
+ QuoteSpaces(self.output_binary),
1924
+ )
1925
+ )
1926
+ elif self.type == "loadable_module":
1927
+ for link_dep in link_deps:
1928
+ assert " " not in link_dep, (
1929
+ "Spaces in module input filenames not supported (%s)" % link_dep
1930
+ )
1931
+ if self.toolset == "host" and self.flavor == "android":
1932
+ self.WriteDoCmd(
1933
+ [self.output_binary],
1934
+ link_deps,
1935
+ "solink_module_host",
1936
+ part_of_all,
1937
+ postbuilds=postbuilds,
1938
+ )
1939
+ else:
1940
+ self.WriteDoCmd(
1941
+ [self.output_binary],
1942
+ link_deps,
1943
+ "solink_module",
1944
+ part_of_all,
1945
+ postbuilds=postbuilds,
1946
+ )
1947
+ elif self.type == "none":
1948
+ # Write a stamp line.
1949
+ self.WriteDoCmd(
1950
+ [self.output_binary], deps, "touch", part_of_all, postbuilds=postbuilds
1951
+ )
1952
+ else:
1953
+ print("WARNING: no output for", self.type, self.target)
1954
+
1955
+ # Add an alias for each target (if there are any outputs).
1956
+ # Installable target aliases are created below.
1957
+ if (self.output and self.output != self.target) and (
1958
+ self.type not in self._INSTALLABLE_TARGETS
1959
+ ):
1960
+ self.WriteMakeRule(
1961
+ [self.target], [self.output], comment="Add target alias", phony=True
1962
+ )
1963
+ if part_of_all:
1964
+ self.WriteMakeRule(
1965
+ ["all"],
1966
+ [self.target],
1967
+ comment='Add target alias to "all" target.',
1968
+ phony=True,
1969
+ )
1970
+
1971
+ # Add special-case rules for our installable targets.
1972
+ # 1) They need to install to the build dir or "product" dir.
1973
+ # 2) They get shortcuts for building (e.g. "make chrome").
1974
+ # 3) They are part of "make all".
1975
+ if self.type in self._INSTALLABLE_TARGETS or self.is_standalone_static_library:
1976
+ if self.type == "shared_library":
1977
+ file_desc = "shared library"
1978
+ elif self.type == "static_library":
1979
+ file_desc = "static library"
1980
+ else:
1981
+ file_desc = "executable"
1982
+ install_path = self._InstallableTargetInstallPath()
1983
+ installable_deps = []
1984
+ if self.flavor != "zos":
1985
+ installable_deps.append(self.output)
1986
+ if (
1987
+ self.flavor == "mac"
1988
+ and "product_dir" not in spec
1989
+ and self.toolset == "target"
1990
+ ):
1991
+ # On mac, products are created in install_path immediately.
1992
+ assert install_path == self.output, f"{install_path} != {self.output}"
1993
+
1994
+ # Point the target alias to the final binary output.
1995
+ self.WriteMakeRule(
1996
+ [self.target], [install_path], comment="Add target alias", phony=True
1997
+ )
1998
+ if install_path != self.output:
1999
+ assert not self.is_mac_bundle # See comment a few lines above.
2000
+ self.WriteDoCmd(
2001
+ [install_path],
2002
+ [self.output],
2003
+ "copy",
2004
+ comment="Copy this to the %s output path." % file_desc,
2005
+ part_of_all=part_of_all,
2006
+ )
2007
+ if self.flavor != "zos":
2008
+ installable_deps.append(install_path)
2009
+ if self.flavor == "zos" and self.type == "shared_library":
2010
+ # lib.target/libnode.so has a dependency on $(obj).target/libnode.so
2011
+ self.WriteDoCmd(
2012
+ [self.GetSharedObjectFromSidedeck(install_path)],
2013
+ [self.GetSharedObjectFromSidedeck(self.output)],
2014
+ "copy",
2015
+ comment="Copy this to the %s output path." % file_desc,
2016
+ part_of_all=part_of_all,
2017
+ )
2018
+ # Create a symlink of libnode.x to libnode.version.x
2019
+ self.WriteDoCmd(
2020
+ [self.GetUnversionedSidedeckFromSidedeck(install_path)],
2021
+ [install_path],
2022
+ "symlink",
2023
+ comment="Symlnk this to the %s output path." % file_desc,
2024
+ part_of_all=part_of_all,
2025
+ )
2026
+ # Place libnode.version.so and libnode.x symlink in lib.target dir
2027
+ installable_deps.append(self.GetSharedObjectFromSidedeck(install_path))
2028
+ installable_deps.append(
2029
+ self.GetUnversionedSidedeckFromSidedeck(install_path)
2030
+ )
2031
+ if self.alias not in (self.output, self.target):
2032
+ self.WriteMakeRule(
2033
+ [self.alias],
2034
+ installable_deps,
2035
+ comment="Short alias for building this %s." % file_desc,
2036
+ phony=True,
2037
+ )
2038
+ if self.flavor == "zos" and self.type == "shared_library":
2039
+ # Make sure that .x symlink target is run
2040
+ self.WriteMakeRule(
2041
+ ["all"],
2042
+ [
2043
+ self.GetUnversionedSidedeckFromSidedeck(install_path),
2044
+ self.GetSharedObjectFromSidedeck(install_path),
2045
+ ],
2046
+ comment='Add %s to "all" target.' % file_desc,
2047
+ phony=True,
2048
+ )
2049
+ elif part_of_all:
2050
+ self.WriteMakeRule(
2051
+ ["all"],
2052
+ [install_path],
2053
+ comment='Add %s to "all" target.' % file_desc,
2054
+ phony=True,
2055
+ )
2056
+
2057
+ def WriteList(self, value_list, variable=None, prefix="", quoter=QuoteIfNecessary):
2058
+ """Write a variable definition that is a list of values.
2059
+
2060
+ E.g. WriteList(['a','b'], 'foo', prefix='blah') writes out
2061
+ foo = blaha blahb
2062
+ but in a pretty-printed style.
2063
+ """
2064
+ values = ""
2065
+ if value_list:
2066
+ value_list = [quoter(prefix + value) for value in value_list]
2067
+ values = " \\\n\t" + " \\\n\t".join(value_list)
2068
+ self.fp.write(f"{variable} :={values}\n\n")
2069
+
2070
+ def WriteDoCmd(
2071
+ self, outputs, inputs, command, part_of_all, comment=None, postbuilds=False
2072
+ ):
2073
+ """Write a Makefile rule that uses do_cmd.
2074
+
2075
+ This makes the outputs dependent on the command line that was run,
2076
+ as well as support the V= make command line flag.
2077
+ """
2078
+ suffix = ""
2079
+ if postbuilds:
2080
+ assert "," not in command
2081
+ suffix = ",,1" # Tell do_cmd to honor $POSTBUILDS
2082
+ self.WriteMakeRule(
2083
+ outputs,
2084
+ inputs,
2085
+ actions=[f"$(call do_cmd,{command}{suffix})"],
2086
+ comment=comment,
2087
+ command=command,
2088
+ force=True,
2089
+ )
2090
+ # Add our outputs to the list of targets we read depfiles from.
2091
+ # all_deps is only used for deps file reading, and for deps files we replace
2092
+ # spaces with ? because escaping doesn't work with make's $(sort) and
2093
+ # other functions.
2094
+ outputs = [QuoteSpaces(o, SPACE_REPLACEMENT) for o in outputs]
2095
+ self.WriteLn("all_deps += %s" % " ".join(outputs))
2096
+
2097
+ def WriteMakeRule(
2098
+ self,
2099
+ outputs,
2100
+ inputs,
2101
+ actions=None,
2102
+ comment=None,
2103
+ order_only=False,
2104
+ force=False,
2105
+ phony=False,
2106
+ command=None,
2107
+ ):
2108
+ """Write a Makefile rule, with some extra tricks.
2109
+
2110
+ outputs: a list of outputs for the rule (note: this is not directly
2111
+ supported by make; see comments below)
2112
+ inputs: a list of inputs for the rule
2113
+ actions: a list of shell commands to run for the rule
2114
+ comment: a comment to put in the Makefile above the rule (also useful
2115
+ for making this Python script's code self-documenting)
2116
+ order_only: if true, makes the dependency order-only
2117
+ force: if true, include FORCE_DO_CMD as an order-only dep
2118
+ phony: if true, the rule does not actually generate the named output, the
2119
+ output is just a name to run the rule
2120
+ command: (optional) command name to generate unambiguous labels
2121
+ """
2122
+ outputs = [QuoteSpaces(o) for o in outputs]
2123
+ inputs = [QuoteSpaces(i) for i in inputs]
2124
+
2125
+ if comment:
2126
+ self.WriteLn("# " + comment)
2127
+ if phony:
2128
+ self.WriteLn(".PHONY: " + " ".join(outputs))
2129
+ if actions:
2130
+ self.WriteLn("%s: TOOLSET := $(TOOLSET)" % outputs[0])
2131
+ force_append = " FORCE_DO_CMD" if force else ""
2132
+
2133
+ if order_only:
2134
+ # Order only rule: Just write a simple rule.
2135
+ # TODO(evanm): just make order_only a list of deps instead of this hack.
2136
+ self.WriteLn(
2137
+ "{}: | {}{}".format(" ".join(outputs), " ".join(inputs), force_append)
2138
+ )
2139
+ elif len(outputs) == 1:
2140
+ # Regular rule, one output: Just write a simple rule.
2141
+ self.WriteLn("{}: {}{}".format(outputs[0], " ".join(inputs), force_append))
2142
+ else:
2143
+ # Regular rule, more than one output: Multiple outputs are tricky in
2144
+ # make. We will write three rules:
2145
+ # - All outputs depend on an intermediate file.
2146
+ # - Make .INTERMEDIATE depend on the intermediate.
2147
+ # - The intermediate file depends on the inputs and executes the
2148
+ # actual command.
2149
+ # - The intermediate recipe will 'touch' the intermediate file.
2150
+ # - The multi-output rule will have an do-nothing recipe.
2151
+
2152
+ # Hash the target name to avoid generating overlong filenames.
2153
+ cmddigest = hashlib.sha1(
2154
+ (command or self.target).encode("utf-8")
2155
+ ).hexdigest()
2156
+ intermediate = "%s.intermediate" % cmddigest
2157
+ self.WriteLn("{}: {}".format(" ".join(outputs), intermediate))
2158
+ self.WriteLn("\t%s" % "@:")
2159
+ self.WriteLn("{}: {}".format(".INTERMEDIATE", intermediate))
2160
+ self.WriteLn(
2161
+ "{}: {}{}".format(intermediate, " ".join(inputs), force_append)
2162
+ )
2163
+ actions.insert(0, "$(call do_cmd,touch)")
2164
+
2165
+ if actions:
2166
+ for action in actions:
2167
+ self.WriteLn("\t%s" % action)
2168
+ self.WriteLn()
2169
+
2170
+ def WriteAndroidNdkModuleRule(self, module_name, all_sources, link_deps):
2171
+ """Write a set of LOCAL_XXX definitions for Android NDK.
2172
+
2173
+ These variable definitions will be used by Android NDK but do nothing for
2174
+ non-Android applications.
2175
+
2176
+ Arguments:
2177
+ module_name: Android NDK module name, which must be unique among all
2178
+ module names.
2179
+ all_sources: A list of source files (will be filtered by Compilable).
2180
+ link_deps: A list of link dependencies, which must be sorted in
2181
+ the order from dependencies to dependents.
2182
+ """
2183
+ if self.type not in ("executable", "shared_library", "static_library"):
2184
+ return
2185
+
2186
+ self.WriteLn("# Variable definitions for Android applications")
2187
+ self.WriteLn("include $(CLEAR_VARS)")
2188
+ self.WriteLn("LOCAL_MODULE := " + module_name)
2189
+ self.WriteLn(
2190
+ "LOCAL_CFLAGS := $(CFLAGS_$(BUILDTYPE)) "
2191
+ "$(DEFS_$(BUILDTYPE)) "
2192
+ # LOCAL_CFLAGS is applied to both of C and C++. There is
2193
+ # no way to specify $(CFLAGS_C_$(BUILDTYPE)) only for C
2194
+ # sources.
2195
+ "$(CFLAGS_C_$(BUILDTYPE)) "
2196
+ # $(INCS_$(BUILDTYPE)) includes the prefix '-I' while
2197
+ # LOCAL_C_INCLUDES does not expect it. So put it in
2198
+ # LOCAL_CFLAGS.
2199
+ "$(INCS_$(BUILDTYPE))"
2200
+ )
2201
+ # LOCAL_CXXFLAGS is obsolete and LOCAL_CPPFLAGS is preferred.
2202
+ self.WriteLn("LOCAL_CPPFLAGS := $(CFLAGS_CC_$(BUILDTYPE))")
2203
+ self.WriteLn("LOCAL_C_INCLUDES :=")
2204
+ self.WriteLn("LOCAL_LDLIBS := $(LDFLAGS_$(BUILDTYPE)) $(LIBS)")
2205
+
2206
+ # Detect the C++ extension.
2207
+ cpp_ext = {".cc": 0, ".cpp": 0, ".cxx": 0}
2208
+ default_cpp_ext = ".cpp"
2209
+ for filename in all_sources:
2210
+ ext = os.path.splitext(filename)[1]
2211
+ if ext in cpp_ext:
2212
+ cpp_ext[ext] += 1
2213
+ if cpp_ext[ext] > cpp_ext[default_cpp_ext]:
2214
+ default_cpp_ext = ext
2215
+ self.WriteLn("LOCAL_CPP_EXTENSION := " + default_cpp_ext)
2216
+
2217
+ self.WriteList(
2218
+ list(map(self.Absolutify, filter(Compilable, all_sources))),
2219
+ "LOCAL_SRC_FILES",
2220
+ )
2221
+
2222
+ # Filter out those which do not match prefix and suffix and produce
2223
+ # the resulting list without prefix and suffix.
2224
+ def DepsToModules(deps, prefix, suffix):
2225
+ modules = []
2226
+ for filepath in deps:
2227
+ filename = os.path.basename(filepath)
2228
+ if filename.startswith(prefix) and filename.endswith(suffix):
2229
+ modules.append(filename[len(prefix) : -len(suffix)])
2230
+ return modules
2231
+
2232
+ # Retrieve the default value of 'SHARED_LIB_SUFFIX'
2233
+ params = {"flavor": "linux"}
2234
+ default_variables = {}
2235
+ CalculateVariables(default_variables, params)
2236
+
2237
+ self.WriteList(
2238
+ DepsToModules(
2239
+ link_deps,
2240
+ generator_default_variables["SHARED_LIB_PREFIX"],
2241
+ default_variables["SHARED_LIB_SUFFIX"],
2242
+ ),
2243
+ "LOCAL_SHARED_LIBRARIES",
2244
+ )
2245
+ self.WriteList(
2246
+ DepsToModules(
2247
+ link_deps,
2248
+ generator_default_variables["STATIC_LIB_PREFIX"],
2249
+ generator_default_variables["STATIC_LIB_SUFFIX"],
2250
+ ),
2251
+ "LOCAL_STATIC_LIBRARIES",
2252
+ )
2253
+
2254
+ if self.type == "executable":
2255
+ self.WriteLn("include $(BUILD_EXECUTABLE)")
2256
+ elif self.type == "shared_library":
2257
+ self.WriteLn("include $(BUILD_SHARED_LIBRARY)")
2258
+ elif self.type == "static_library":
2259
+ self.WriteLn("include $(BUILD_STATIC_LIBRARY)")
2260
+ self.WriteLn()
2261
+
2262
+ def WriteLn(self, text=""):
2263
+ self.fp.write(text + "\n")
2264
+
2265
+ def GetSortedXcodeEnv(self, additional_settings=None):
2266
+ return gyp.xcode_emulation.GetSortedXcodeEnv(
2267
+ self.xcode_settings,
2268
+ "$(abs_builddir)",
2269
+ os.path.join("$(abs_srcdir)", self.path),
2270
+ "$(BUILDTYPE)",
2271
+ additional_settings,
2272
+ )
2273
+
2274
+ def GetSortedXcodePostbuildEnv(self):
2275
+ # CHROMIUM_STRIP_SAVE_FILE is a chromium-specific hack.
2276
+ # TODO(thakis): It would be nice to have some general mechanism instead.
2277
+ strip_save_file = self.xcode_settings.GetPerTargetSetting(
2278
+ "CHROMIUM_STRIP_SAVE_FILE", ""
2279
+ )
2280
+ # Even if strip_save_file is empty, explicitly write it. Else a postbuild
2281
+ # might pick up an export from an earlier target.
2282
+ return self.GetSortedXcodeEnv(
2283
+ additional_settings={"CHROMIUM_STRIP_SAVE_FILE": strip_save_file}
2284
+ )
2285
+
2286
+ def WriteSortedXcodeEnv(self, target, env):
2287
+ for k, v in env:
2288
+ # For
2289
+ # foo := a\ b
2290
+ # the escaped space does the right thing. For
2291
+ # export foo := a\ b
2292
+ # it does not -- the backslash is written to the env as literal character.
2293
+ # So don't escape spaces in |env[k]|.
2294
+ self.WriteLn(f"{QuoteSpaces(target)}: export {k} := {v}")
2295
+
2296
+ def Objectify(self, path):
2297
+ """Convert a path to its output directory form."""
2298
+ if "$(" in path:
2299
+ path = path.replace("$(obj)/", "$(obj).%s/$(TARGET)/" % self.toolset)
2300
+ if "$(obj)" not in path:
2301
+ path = f"$(obj).{self.toolset}/$(TARGET)/{path}"
2302
+ return path
2303
+
2304
+ def Pchify(self, path, lang):
2305
+ """Convert a prefix header path to its output directory form."""
2306
+ path = self.Absolutify(path)
2307
+ if "$(" in path:
2308
+ path = path.replace(
2309
+ "$(obj)/", f"$(obj).{self.toolset}/$(TARGET)/pch-{lang}"
2310
+ )
2311
+ return path
2312
+ return f"$(obj).{self.toolset}/$(TARGET)/pch-{lang}/{path}"
2313
+
2314
+ def Absolutify(self, path):
2315
+ """Convert a subdirectory-relative path into a base-relative path.
2316
+ Skips over paths that contain variables."""
2317
+ if "$(" in path:
2318
+ # Don't call normpath in this case, as it might collapse the
2319
+ # path too aggressively if it features '..'. However it's still
2320
+ # important to strip trailing slashes.
2321
+ return path.rstrip("/")
2322
+ return os.path.normpath(os.path.join(self.path, path))
2323
+
2324
+ def ExpandInputRoot(self, template, expansion, dirname):
2325
+ if "%(INPUT_ROOT)s" not in template and "%(INPUT_DIRNAME)s" not in template:
2326
+ return template
2327
+ path = template % {
2328
+ "INPUT_ROOT": expansion,
2329
+ "INPUT_DIRNAME": dirname,
2330
+ }
2331
+ return path
2332
+
2333
+ def _InstallableTargetInstallPath(self):
2334
+ """Returns the location of the final output for an installable target."""
2335
+ # Functionality removed for all platforms to match Xcode and hoist
2336
+ # shared libraries into PRODUCT_DIR for users:
2337
+ # Xcode puts shared_library results into PRODUCT_DIR, and some gyp files
2338
+ # rely on this. Emulate this behavior for mac.
2339
+ # if self.type == "shared_library" and (
2340
+ # self.flavor != "mac" or self.toolset != "target"
2341
+ # ):
2342
+ # # Install all shared libs into a common directory (per toolset) for
2343
+ # # convenient access with LD_LIBRARY_PATH.
2344
+ # return "$(builddir)/lib.%s/%s" % (self.toolset, self.alias)
2345
+ if self.flavor == "zos" and self.type == "shared_library":
2346
+ return "$(builddir)/lib.%s/%s" % (self.toolset, self.alias)
2347
+
2348
+ return "$(builddir)/" + self.alias
2349
+
2350
+
2351
+ def WriteAutoRegenerationRule(params, root_makefile, makefile_name, build_files):
2352
+ """Write the target to regenerate the Makefile."""
2353
+ options = params["options"]
2354
+ build_files_args = [
2355
+ gyp.common.RelativePath(filename, options.toplevel_dir)
2356
+ for filename in params["build_files_arg"]
2357
+ ]
2358
+
2359
+ gyp_binary = gyp.common.FixIfRelativePath(
2360
+ params["gyp_binary"], options.toplevel_dir
2361
+ )
2362
+ if not gyp_binary.startswith(os.sep):
2363
+ gyp_binary = os.path.join(".", gyp_binary)
2364
+
2365
+ root_makefile.write(
2366
+ "quiet_cmd_regen_makefile = ACTION Regenerating $@\n"
2367
+ "cmd_regen_makefile = cd $(srcdir); %(cmd)s\n"
2368
+ "%(makefile_name)s: %(deps)s\n"
2369
+ "\t$(call do_cmd,regen_makefile)\n\n"
2370
+ % {
2371
+ "makefile_name": makefile_name,
2372
+ "deps": " ".join(SourceifyAndQuoteSpaces(bf) for bf in build_files),
2373
+ "cmd": gyp.common.EncodePOSIXShellList(
2374
+ [gyp_binary, "-fmake"] + gyp.RegenerateFlags(options) + build_files_args
2375
+ ),
2376
+ }
2377
+ )
2378
+
2379
+
2380
+ def PerformBuild(data, configurations, params):
2381
+ options = params["options"]
2382
+ for config in configurations:
2383
+ arguments = ["make"]
2384
+ if options.toplevel_dir and options.toplevel_dir != ".":
2385
+ arguments += "-C", options.toplevel_dir
2386
+ arguments.append("BUILDTYPE=" + config)
2387
+ print(f"Building [{config}]: {arguments}")
2388
+ subprocess.check_call(arguments)
2389
+
2390
+
2391
+ def GenerateOutput(target_list, target_dicts, data, params):
2392
+ options = params["options"]
2393
+ flavor = gyp.common.GetFlavor(params)
2394
+ generator_flags = params.get("generator_flags", {})
2395
+ builddir_name = generator_flags.get("output_dir", "out")
2396
+ android_ndk_version = generator_flags.get("android_ndk_version", None)
2397
+ default_target = generator_flags.get("default_target", "all")
2398
+
2399
+ def CalculateMakefilePath(build_file, base_name):
2400
+ """Determine where to write a Makefile for a given gyp file."""
2401
+ # Paths in gyp files are relative to the .gyp file, but we want
2402
+ # paths relative to the source root for the master makefile. Grab
2403
+ # the path of the .gyp file as the base to relativize against.
2404
+ # E.g. "foo/bar" when we're constructing targets for "foo/bar/baz.gyp".
2405
+ base_path = gyp.common.RelativePath(os.path.dirname(build_file), options.depth)
2406
+ # We write the file in the base_path directory.
2407
+ output_file = os.path.join(options.depth, base_path, base_name)
2408
+ if options.generator_output:
2409
+ output_file = os.path.join(
2410
+ options.depth, options.generator_output, base_path, base_name
2411
+ )
2412
+ base_path = gyp.common.RelativePath(
2413
+ os.path.dirname(build_file), options.toplevel_dir
2414
+ )
2415
+ return base_path, output_file
2416
+
2417
+ # TODO: search for the first non-'Default' target. This can go
2418
+ # away when we add verification that all targets have the
2419
+ # necessary configurations.
2420
+ default_configuration = None
2421
+ toolsets = {target_dicts[target]["toolset"] for target in target_list}
2422
+ for target in target_list:
2423
+ spec = target_dicts[target]
2424
+ if spec["default_configuration"] != "Default":
2425
+ default_configuration = spec["default_configuration"]
2426
+ break
2427
+ if not default_configuration:
2428
+ default_configuration = "Default"
2429
+
2430
+ srcdir = "."
2431
+ makefile_name = "Makefile" + options.suffix
2432
+ makefile_path = os.path.join(options.toplevel_dir, makefile_name)
2433
+ if options.generator_output:
2434
+ global srcdir_prefix
2435
+ makefile_path = os.path.join(
2436
+ options.toplevel_dir, options.generator_output, makefile_name
2437
+ )
2438
+ srcdir = gyp.common.RelativePath(srcdir, options.generator_output)
2439
+ srcdir_prefix = "$(srcdir)/"
2440
+
2441
+ flock_command = "flock"
2442
+ copy_archive_arguments = "-af"
2443
+ makedep_arguments = "-MMD"
2444
+ header_params = {
2445
+ "default_target": default_target,
2446
+ "builddir": builddir_name,
2447
+ "default_configuration": default_configuration,
2448
+ "flock": flock_command,
2449
+ "flock_index": 1,
2450
+ "link_commands": LINK_COMMANDS_LINUX,
2451
+ "extra_commands": "",
2452
+ "srcdir": srcdir,
2453
+ "copy_archive_args": copy_archive_arguments,
2454
+ "makedep_args": makedep_arguments,
2455
+ "CC.target": GetEnvironFallback(("CC_target", "CC"), "$(CC)"),
2456
+ "AR.target": GetEnvironFallback(("AR_target", "AR"), "$(AR)"),
2457
+ "CXX.target": GetEnvironFallback(("CXX_target", "CXX"), "$(CXX)"),
2458
+ "LINK.target": GetEnvironFallback(("LINK_target", "LINK"), "$(LINK)"),
2459
+ "PLI.target": GetEnvironFallback(("PLI_target", "PLI"), "pli"),
2460
+ "CC.host": GetEnvironFallback(("CC_host", "CC"), "gcc"),
2461
+ "AR.host": GetEnvironFallback(("AR_host", "AR"), "ar"),
2462
+ "CXX.host": GetEnvironFallback(("CXX_host", "CXX"), "g++"),
2463
+ "LINK.host": GetEnvironFallback(("LINK_host", "LINK"), "$(CXX.host)"),
2464
+ "PLI.host": GetEnvironFallback(("PLI_host", "PLI"), "pli"),
2465
+ }
2466
+ if flavor == "mac":
2467
+ flock_command = "./gyp-mac-tool flock"
2468
+ header_params.update(
2469
+ {
2470
+ "flock": flock_command,
2471
+ "flock_index": 2,
2472
+ "link_commands": LINK_COMMANDS_MAC,
2473
+ "extra_commands": SHARED_HEADER_MAC_COMMANDS,
2474
+ }
2475
+ )
2476
+ elif flavor == "android":
2477
+ header_params.update({"link_commands": LINK_COMMANDS_ANDROID})
2478
+ elif flavor == "zos":
2479
+ copy_archive_arguments = "-fPR"
2480
+ CC_target = GetEnvironFallback(("CC_target", "CC"), "njsc")
2481
+ makedep_arguments = "-MMD"
2482
+ if CC_target == "clang":
2483
+ CC_host = GetEnvironFallback(("CC_host", "CC"), "clang")
2484
+ CXX_target = GetEnvironFallback(("CXX_target", "CXX"), "clang++")
2485
+ CXX_host = GetEnvironFallback(("CXX_host", "CXX"), "clang++")
2486
+ elif CC_target == "ibm-clang64":
2487
+ CC_host = GetEnvironFallback(("CC_host", "CC"), "ibm-clang64")
2488
+ CXX_target = GetEnvironFallback(("CXX_target", "CXX"), "ibm-clang++64")
2489
+ CXX_host = GetEnvironFallback(("CXX_host", "CXX"), "ibm-clang++64")
2490
+ elif CC_target == "ibm-clang":
2491
+ CC_host = GetEnvironFallback(("CC_host", "CC"), "ibm-clang")
2492
+ CXX_target = GetEnvironFallback(("CXX_target", "CXX"), "ibm-clang++")
2493
+ CXX_host = GetEnvironFallback(("CXX_host", "CXX"), "ibm-clang++")
2494
+ else:
2495
+ # Node.js versions prior to v18:
2496
+ makedep_arguments = "-qmakedep=gcc"
2497
+ CC_host = GetEnvironFallback(("CC_host", "CC"), "njsc")
2498
+ CXX_target = GetEnvironFallback(("CXX_target", "CXX"), "njsc++")
2499
+ CXX_host = GetEnvironFallback(("CXX_host", "CXX"), "njsc++")
2500
+ header_params.update(
2501
+ {
2502
+ "copy_archive_args": copy_archive_arguments,
2503
+ "makedep_args": makedep_arguments,
2504
+ "link_commands": LINK_COMMANDS_OS390,
2505
+ "extra_commands": SHARED_HEADER_OS390_COMMANDS,
2506
+ "CC.target": CC_target,
2507
+ "CXX.target": CXX_target,
2508
+ "CC.host": CC_host,
2509
+ "CXX.host": CXX_host,
2510
+ }
2511
+ )
2512
+ elif flavor == "solaris":
2513
+ copy_archive_arguments = "-pPRf@"
2514
+ header_params.update(
2515
+ {
2516
+ "copy_archive_args": copy_archive_arguments,
2517
+ "flock": "./gyp-flock-tool flock",
2518
+ "flock_index": 2,
2519
+ }
2520
+ )
2521
+ elif flavor == "freebsd":
2522
+ # Note: OpenBSD has sysutils/flock. lockf seems to be FreeBSD specific.
2523
+ header_params.update({"flock": "lockf"})
2524
+ elif flavor == "openbsd":
2525
+ copy_archive_arguments = "-pPRf"
2526
+ header_params.update({"copy_archive_args": copy_archive_arguments})
2527
+ elif flavor == "aix":
2528
+ copy_archive_arguments = "-pPRf"
2529
+ header_params.update(
2530
+ {
2531
+ "copy_archive_args": copy_archive_arguments,
2532
+ "link_commands": LINK_COMMANDS_AIX,
2533
+ "flock": "./gyp-flock-tool flock",
2534
+ "flock_index": 2,
2535
+ }
2536
+ )
2537
+ elif flavor == "os400":
2538
+ copy_archive_arguments = "-pPRf"
2539
+ header_params.update(
2540
+ {
2541
+ "copy_archive_args": copy_archive_arguments,
2542
+ "link_commands": LINK_COMMANDS_OS400,
2543
+ "flock": "./gyp-flock-tool flock",
2544
+ "flock_index": 2,
2545
+ }
2546
+ )
2547
+
2548
+ build_file, _, _ = gyp.common.ParseQualifiedTarget(target_list[0])
2549
+ make_global_settings_array = data[build_file].get("make_global_settings", [])
2550
+ wrappers = {}
2551
+ for key, value in make_global_settings_array:
2552
+ if key.endswith("_wrapper"):
2553
+ wrappers[key[: -len("_wrapper")]] = "$(abspath %s)" % value
2554
+ make_global_settings = ""
2555
+ for key, value in make_global_settings_array:
2556
+ if re.match(".*_wrapper", key):
2557
+ continue
2558
+ if value[0] != "$":
2559
+ value = "$(abspath %s)" % value
2560
+ wrapper = wrappers.get(key)
2561
+ if wrapper:
2562
+ value = f"{wrapper} {value}"
2563
+ del wrappers[key]
2564
+ if key in ("CC", "CC.host", "CXX", "CXX.host"):
2565
+ make_global_settings += (
2566
+ "ifneq (,$(filter $(origin %s), undefined default))\n" % key
2567
+ )
2568
+ # Let gyp-time envvars win over global settings.
2569
+ env_key = key.replace(".", "_") # CC.host -> CC_host
2570
+ if env_key in os.environ:
2571
+ value = os.environ[env_key]
2572
+ make_global_settings += f" {key} = {value}\n"
2573
+ make_global_settings += "endif\n"
2574
+ else:
2575
+ make_global_settings += f"{key} ?= {value}\n"
2576
+ # TODO(ukai): define cmd when only wrapper is specified in
2577
+ # make_global_settings.
2578
+
2579
+ header_params["make_global_settings"] = make_global_settings
2580
+
2581
+ gyp.common.EnsureDirExists(makefile_path)
2582
+ root_makefile = open(makefile_path, "w")
2583
+ root_makefile.write(SHARED_HEADER % header_params)
2584
+ # Currently any versions have the same effect, but in future the behavior
2585
+ # could be different.
2586
+ if android_ndk_version:
2587
+ root_makefile.write(
2588
+ "# Define LOCAL_PATH for build of Android applications.\n"
2589
+ "LOCAL_PATH := $(call my-dir)\n"
2590
+ "\n"
2591
+ )
2592
+ for toolset in toolsets:
2593
+ root_makefile.write("TOOLSET := %s\n" % toolset)
2594
+ WriteRootHeaderSuffixRules(root_makefile)
2595
+
2596
+ # Put build-time support tools next to the root Makefile.
2597
+ dest_path = os.path.dirname(makefile_path)
2598
+ gyp.common.CopyTool(flavor, dest_path)
2599
+
2600
+ # Find the list of targets that derive from the gyp file(s) being built.
2601
+ needed_targets = set()
2602
+ for build_file in params["build_files"]:
2603
+ for target in gyp.common.AllTargets(target_list, target_dicts, build_file):
2604
+ needed_targets.add(target)
2605
+
2606
+ build_files = set()
2607
+ include_list = set()
2608
+ for qualified_target in target_list:
2609
+ build_file, target, toolset = gyp.common.ParseQualifiedTarget(qualified_target)
2610
+
2611
+ this_make_global_settings = data[build_file].get("make_global_settings", [])
2612
+ assert make_global_settings_array == this_make_global_settings, (
2613
+ "make_global_settings needs to be the same for all targets "
2614
+ f"{this_make_global_settings} vs. {make_global_settings}"
2615
+ )
2616
+
2617
+ build_files.add(gyp.common.RelativePath(build_file, options.toplevel_dir))
2618
+ included_files = data[build_file]["included_files"]
2619
+ for included_file in included_files:
2620
+ # The included_files entries are relative to the dir of the build file
2621
+ # that included them, so we have to undo that and then make them relative
2622
+ # to the root dir.
2623
+ relative_include_file = gyp.common.RelativePath(
2624
+ gyp.common.UnrelativePath(included_file, build_file),
2625
+ options.toplevel_dir,
2626
+ )
2627
+ abs_include_file = os.path.abspath(relative_include_file)
2628
+ # If the include file is from the ~/.gyp dir, we should use absolute path
2629
+ # so that relocating the src dir doesn't break the path.
2630
+ if params["home_dot_gyp"] and abs_include_file.startswith(
2631
+ params["home_dot_gyp"]
2632
+ ):
2633
+ build_files.add(abs_include_file)
2634
+ else:
2635
+ build_files.add(relative_include_file)
2636
+
2637
+ base_path, output_file = CalculateMakefilePath(
2638
+ build_file, target + "." + toolset + options.suffix + ".mk"
2639
+ )
2640
+
2641
+ spec = target_dicts[qualified_target]
2642
+ configs = spec["configurations"]
2643
+
2644
+ if flavor == "mac":
2645
+ gyp.xcode_emulation.MergeGlobalXcodeSettingsToSpec(data[build_file], spec)
2646
+
2647
+ writer = MakefileWriter(generator_flags, flavor)
2648
+ writer.Write(
2649
+ qualified_target,
2650
+ base_path,
2651
+ output_file,
2652
+ spec,
2653
+ configs,
2654
+ part_of_all=qualified_target in needed_targets,
2655
+ )
2656
+
2657
+ # Our root_makefile lives at the source root. Compute the relative path
2658
+ # from there to the output_file for including.
2659
+ mkfile_rel_path = gyp.common.RelativePath(
2660
+ output_file, os.path.dirname(makefile_path)
2661
+ )
2662
+ include_list.add(mkfile_rel_path)
2663
+
2664
+ # Write out per-gyp (sub-project) Makefiles.
2665
+ depth_rel_path = gyp.common.RelativePath(options.depth, os.getcwd())
2666
+ for build_file in build_files:
2667
+ # The paths in build_files were relativized above, so undo that before
2668
+ # testing against the non-relativized items in target_list and before
2669
+ # calculating the Makefile path.
2670
+ build_file = os.path.join(depth_rel_path, build_file)
2671
+ gyp_targets = [
2672
+ target_dicts[qualified_target]["target_name"]
2673
+ for qualified_target in target_list
2674
+ if qualified_target.startswith(build_file)
2675
+ and qualified_target in needed_targets
2676
+ ]
2677
+ # Only generate Makefiles for gyp files with targets.
2678
+ if not gyp_targets:
2679
+ continue
2680
+ base_path, output_file = CalculateMakefilePath(
2681
+ build_file, os.path.splitext(os.path.basename(build_file))[0] + ".Makefile"
2682
+ )
2683
+ makefile_rel_path = gyp.common.RelativePath(
2684
+ os.path.dirname(makefile_path), os.path.dirname(output_file)
2685
+ )
2686
+ writer.WriteSubMake(output_file, makefile_rel_path, gyp_targets, builddir_name)
2687
+
2688
+ # Write out the sorted list of includes.
2689
+ root_makefile.write("\n")
2690
+ for include_file in sorted(include_list):
2691
+ # We wrap each .mk include in an if statement so users can tell make to
2692
+ # not load a file by setting NO_LOAD. The below make code says, only
2693
+ # load the .mk file if the .mk filename doesn't start with a token in
2694
+ # NO_LOAD.
2695
+ root_makefile.write(
2696
+ "ifeq ($(strip $(foreach prefix,$(NO_LOAD),\\\n"
2697
+ " $(findstring $(join ^,$(prefix)),\\\n"
2698
+ " $(join ^," + include_file + ")))),)\n"
2699
+ )
2700
+ root_makefile.write(" include " + include_file + "\n")
2701
+ root_makefile.write("endif\n")
2702
+ root_makefile.write("\n")
2703
+
2704
+ if not generator_flags.get("standalone") and generator_flags.get(
2705
+ "auto_regeneration", True
2706
+ ):
2707
+ WriteAutoRegenerationRule(params, root_makefile, makefile_name, build_files)
2708
+
2709
+ root_makefile.write(SHARED_FOOTER)
2710
+
2711
+ root_makefile.close()