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,3198 @@
1
+ # Copyright (c) 2012 Google Inc. All rights reserved.
2
+ # Use of this source code is governed by a BSD-style license that can be
3
+ # found in the LICENSE file.
4
+
5
+ """Xcode project file generator.
6
+
7
+ This module is both an Xcode project file generator and a documentation of the
8
+ Xcode project file format. Knowledge of the project file format was gained
9
+ based on extensive experience with Xcode, and by making changes to projects in
10
+ Xcode.app and observing the resultant changes in the associated project files.
11
+
12
+ XCODE PROJECT FILES
13
+
14
+ The generator targets the file format as written by Xcode 3.2 (specifically,
15
+ 3.2.6), but past experience has taught that the format has not changed
16
+ significantly in the past several years, and future versions of Xcode are able
17
+ to read older project files.
18
+
19
+ Xcode project files are "bundled": the project "file" from an end-user's
20
+ perspective is actually a directory with an ".xcodeproj" extension. The
21
+ project file from this module's perspective is actually a file inside this
22
+ directory, always named "project.pbxproj". This file contains a complete
23
+ description of the project and is all that is needed to use the xcodeproj.
24
+ Other files contained in the xcodeproj directory are simply used to store
25
+ per-user settings, such as the state of various UI elements in the Xcode
26
+ application.
27
+
28
+ The project.pbxproj file is a property list, stored in a format almost
29
+ identical to the NeXTstep property list format. The file is able to carry
30
+ Unicode data, and is encoded in UTF-8. The root element in the property list
31
+ is a dictionary that contains several properties of minimal interest, and two
32
+ properties of immense interest. The most important property is a dictionary
33
+ named "objects". The entire structure of the project is represented by the
34
+ children of this property. The objects dictionary is keyed by unique 96-bit
35
+ values represented by 24 uppercase hexadecimal characters. Each value in the
36
+ objects dictionary is itself a dictionary, describing an individual object.
37
+
38
+ Each object in the dictionary is a member of a class, which is identified by
39
+ the "isa" property of each object. A variety of classes are represented in a
40
+ project file. Objects can refer to other objects by ID, using the 24-character
41
+ hexadecimal object key. A project's objects form a tree, with a root object
42
+ of class PBXProject at the root. As an example, the PBXProject object serves
43
+ as parent to an XCConfigurationList object defining the build configurations
44
+ used in the project, a PBXGroup object serving as a container for all files
45
+ referenced in the project, and a list of target objects, each of which defines
46
+ a target in the project. There are several different types of target object,
47
+ such as PBXNativeTarget and PBXAggregateTarget. In this module, this
48
+ relationship is expressed by having each target type derive from an abstract
49
+ base named XCTarget.
50
+
51
+ The project.pbxproj file's root dictionary also contains a property, sibling to
52
+ the "objects" dictionary, named "rootObject". The value of rootObject is a
53
+ 24-character object key referring to the root PBXProject object in the
54
+ objects dictionary.
55
+
56
+ In Xcode, every file used as input to a target or produced as a final product
57
+ of a target must appear somewhere in the hierarchy rooted at the PBXGroup
58
+ object referenced by the PBXProject's mainGroup property. A PBXGroup is
59
+ generally represented as a folder in the Xcode application. PBXGroups can
60
+ contain other PBXGroups as well as PBXFileReferences, which are pointers to
61
+ actual files.
62
+
63
+ Each XCTarget contains a list of build phases, represented in this module by
64
+ the abstract base XCBuildPhase. Examples of concrete XCBuildPhase derivations
65
+ are PBXSourcesBuildPhase and PBXFrameworksBuildPhase, which correspond to the
66
+ "Compile Sources" and "Link Binary With Libraries" phases displayed in the
67
+ Xcode application. Files used as input to these phases (for example, source
68
+ files in the former case and libraries and frameworks in the latter) are
69
+ represented by PBXBuildFile objects, referenced by elements of "files" lists
70
+ in XCTarget objects. Each PBXBuildFile object refers to a PBXBuildFile
71
+ object as a "weak" reference: it does not "own" the PBXBuildFile, which is
72
+ owned by the root object's mainGroup or a descendant group. In most cases, the
73
+ layer of indirection between an XCBuildPhase and a PBXFileReference via a
74
+ PBXBuildFile appears extraneous, but there's actually one reason for this:
75
+ file-specific compiler flags are added to the PBXBuildFile object so as to
76
+ allow a single file to be a member of multiple targets while having distinct
77
+ compiler flags for each. These flags can be modified in the Xcode applciation
78
+ in the "Build" tab of a File Info window.
79
+
80
+ When a project is open in the Xcode application, Xcode will rewrite it. As
81
+ such, this module is careful to adhere to the formatting used by Xcode, to
82
+ avoid insignificant changes appearing in the file when it is used in the
83
+ Xcode application. This will keep version control repositories happy, and
84
+ makes it possible to compare a project file used in Xcode to one generated by
85
+ this module to determine if any significant changes were made in the
86
+ application.
87
+
88
+ Xcode has its own way of assigning 24-character identifiers to each object,
89
+ which is not duplicated here. Because the identifier only is only generated
90
+ once, when an object is created, and is then left unchanged, there is no need
91
+ to attempt to duplicate Xcode's behavior in this area. The generator is free
92
+ to select any identifier, even at random, to refer to the objects it creates,
93
+ and Xcode will retain those identifiers and use them when subsequently
94
+ rewriting the project file. However, the generator would choose new random
95
+ identifiers each time the project files are generated, leading to difficulties
96
+ comparing "used" project files to "pristine" ones produced by this module,
97
+ and causing the appearance of changes as every object identifier is changed
98
+ when updated projects are checked in to a version control repository. To
99
+ mitigate this problem, this module chooses identifiers in a more deterministic
100
+ way, by hashing a description of each object as well as its parent and ancestor
101
+ objects. This strategy should result in minimal "shift" in IDs as successive
102
+ generations of project files are produced.
103
+
104
+ THIS MODULE
105
+
106
+ This module introduces several classes, all derived from the XCObject class.
107
+ Nearly all of the "brains" are built into the XCObject class, which understands
108
+ how to create and modify objects, maintain the proper tree structure, compute
109
+ identifiers, and print objects. For the most part, classes derived from
110
+ XCObject need only provide a _schema class object, a dictionary that
111
+ expresses what properties objects of the class may contain.
112
+
113
+ Given this structure, it's possible to build a minimal project file by creating
114
+ objects of the appropriate types and making the proper connections:
115
+
116
+ config_list = XCConfigurationList()
117
+ group = PBXGroup()
118
+ project = PBXProject({'buildConfigurationList': config_list,
119
+ 'mainGroup': group})
120
+
121
+ With the project object set up, it can be added to an XCProjectFile object.
122
+ XCProjectFile is a pseudo-class in the sense that it is a concrete XCObject
123
+ subclass that does not actually correspond to a class type found in a project
124
+ file. Rather, it is used to represent the project file's root dictionary.
125
+ Printing an XCProjectFile will print the entire project file, including the
126
+ full "objects" dictionary.
127
+
128
+ project_file = XCProjectFile({'rootObject': project})
129
+ project_file.ComputeIDs()
130
+ project_file.Print()
131
+
132
+ Xcode project files are always encoded in UTF-8. This module will accept
133
+ strings of either the str class or the unicode class. Strings of class str
134
+ are assumed to already be encoded in UTF-8. Obviously, if you're just using
135
+ ASCII, you won't encounter difficulties because ASCII is a UTF-8 subset.
136
+ Strings of class unicode are handled properly and encoded in UTF-8 when
137
+ a project file is output.
138
+ """
139
+
140
+ import gyp.common
141
+ from functools import cmp_to_key
142
+ import hashlib
143
+ from operator import attrgetter
144
+ import posixpath
145
+ import re
146
+ import struct
147
+ import sys
148
+
149
+
150
+ def cmp(x, y):
151
+ return (x > y) - (x < y)
152
+
153
+
154
+ # See XCObject._EncodeString. This pattern is used to determine when a string
155
+ # can be printed unquoted. Strings that match this pattern may be printed
156
+ # unquoted. Strings that do not match must be quoted and may be further
157
+ # transformed to be properly encoded. Note that this expression matches the
158
+ # characters listed with "+", for 1 or more occurrences: if a string is empty,
159
+ # it must not match this pattern, because it needs to be encoded as "".
160
+ _unquoted = re.compile("^[A-Za-z0-9$./_]+$")
161
+
162
+ # Strings that match this pattern are quoted regardless of what _unquoted says.
163
+ # Oddly, Xcode will quote any string with a run of three or more underscores.
164
+ _quoted = re.compile("___")
165
+
166
+ # This pattern should match any character that needs to be escaped by
167
+ # XCObject._EncodeString. See that function.
168
+ _escaped = re.compile('[\\\\"]|[\x00-\x1f]')
169
+
170
+
171
+ # Used by SourceTreeAndPathFromPath
172
+ _path_leading_variable = re.compile(r"^\$\((.*?)\)(/(.*))?$")
173
+
174
+
175
+ def SourceTreeAndPathFromPath(input_path):
176
+ """Given input_path, returns a tuple with sourceTree and path values.
177
+
178
+ Examples:
179
+ input_path (source_tree, output_path)
180
+ '$(VAR)/path' ('VAR', 'path')
181
+ '$(VAR)' ('VAR', None)
182
+ 'path' (None, 'path')
183
+ """
184
+
185
+ source_group_match = _path_leading_variable.match(input_path)
186
+ if source_group_match:
187
+ source_tree = source_group_match.group(1)
188
+ output_path = source_group_match.group(3) # This may be None.
189
+ else:
190
+ source_tree = None
191
+ output_path = input_path
192
+
193
+ return (source_tree, output_path)
194
+
195
+
196
+ def ConvertVariablesToShellSyntax(input_string):
197
+ return re.sub(r"\$\((.*?)\)", "${\\1}", input_string)
198
+
199
+
200
+ class XCObject:
201
+ """The abstract base of all class types used in Xcode project files.
202
+
203
+ Class variables:
204
+ _schema: A dictionary defining the properties of this class. The keys to
205
+ _schema are string property keys as used in project files. Values
206
+ are a list of four or five elements:
207
+ [ is_list, property_type, is_strong, is_required, default ]
208
+ is_list: True if the property described is a list, as opposed
209
+ to a single element.
210
+ property_type: The type to use as the value of the property,
211
+ or if is_list is True, the type to use for each
212
+ element of the value's list. property_type must
213
+ be an XCObject subclass, or one of the built-in
214
+ types str, int, or dict.
215
+ is_strong: If property_type is an XCObject subclass, is_strong
216
+ is True to assert that this class "owns," or serves
217
+ as parent, to the property value (or, if is_list is
218
+ True, values). is_strong must be False if
219
+ property_type is not an XCObject subclass.
220
+ is_required: True if the property is required for the class.
221
+ Note that is_required being True does not preclude
222
+ an empty string ("", in the case of property_type
223
+ str) or list ([], in the case of is_list True) from
224
+ being set for the property.
225
+ default: Optional. If is_required is True, default may be set
226
+ to provide a default value for objects that do not supply
227
+ their own value. If is_required is True and default
228
+ is not provided, users of the class must supply their own
229
+ value for the property.
230
+ Note that although the values of the array are expressed in
231
+ boolean terms, subclasses provide values as integers to conserve
232
+ horizontal space.
233
+ _should_print_single_line: False in XCObject. Subclasses whose objects
234
+ should be written to the project file in the
235
+ alternate single-line format, such as
236
+ PBXFileReference and PBXBuildFile, should
237
+ set this to True.
238
+ _encode_transforms: Used by _EncodeString to encode unprintable characters.
239
+ The index into this list is the ordinal of the
240
+ character to transform; each value is a string
241
+ used to represent the character in the output. XCObject
242
+ provides an _encode_transforms list suitable for most
243
+ XCObject subclasses.
244
+ _alternate_encode_transforms: Provided for subclasses that wish to use
245
+ the alternate encoding rules. Xcode seems
246
+ to use these rules when printing objects in
247
+ single-line format. Subclasses that desire
248
+ this behavior should set _encode_transforms
249
+ to _alternate_encode_transforms.
250
+ _hashables: A list of XCObject subclasses that can be hashed by ComputeIDs
251
+ to construct this object's ID. Most classes that need custom
252
+ hashing behavior should do it by overriding Hashables,
253
+ but in some cases an object's parent may wish to push a
254
+ hashable value into its child, and it can do so by appending
255
+ to _hashables.
256
+ Attributes:
257
+ id: The object's identifier, a 24-character uppercase hexadecimal string.
258
+ Usually, objects being created should not set id until the entire
259
+ project file structure is built. At that point, UpdateIDs() should
260
+ be called on the root object to assign deterministic values for id to
261
+ each object in the tree.
262
+ parent: The object's parent. This is set by a parent XCObject when a child
263
+ object is added to it.
264
+ _properties: The object's property dictionary. An object's properties are
265
+ described by its class' _schema variable.
266
+ """
267
+
268
+ _schema = {}
269
+ _should_print_single_line = False
270
+
271
+ # See _EncodeString.
272
+ _encode_transforms = []
273
+ i = 0
274
+ while i < ord(" "):
275
+ _encode_transforms.append("\\U%04x" % i)
276
+ i = i + 1
277
+ _encode_transforms[7] = "\\a"
278
+ _encode_transforms[8] = "\\b"
279
+ _encode_transforms[9] = "\\t"
280
+ _encode_transforms[10] = "\\n"
281
+ _encode_transforms[11] = "\\v"
282
+ _encode_transforms[12] = "\\f"
283
+ _encode_transforms[13] = "\\n"
284
+
285
+ _alternate_encode_transforms = list(_encode_transforms)
286
+ _alternate_encode_transforms[9] = chr(9)
287
+ _alternate_encode_transforms[10] = chr(10)
288
+ _alternate_encode_transforms[11] = chr(11)
289
+
290
+ def __init__(self, properties=None, id=None, parent=None):
291
+ self.id = id
292
+ self.parent = parent
293
+ self._properties = {}
294
+ self._hashables = []
295
+ self._SetDefaultsFromSchema()
296
+ self.UpdateProperties(properties)
297
+
298
+ def __repr__(self):
299
+ try:
300
+ name = self.Name()
301
+ except NotImplementedError:
302
+ return f"<{self.__class__.__name__} at 0x{id(self):x}>"
303
+ return f"<{self.__class__.__name__} {name!r} at 0x{id(self):x}>"
304
+
305
+ def Copy(self):
306
+ """Make a copy of this object.
307
+
308
+ The new object will have its own copy of lists and dicts. Any XCObject
309
+ objects owned by this object (marked "strong") will be copied in the
310
+ new object, even those found in lists. If this object has any weak
311
+ references to other XCObjects, the same references are added to the new
312
+ object without making a copy.
313
+ """
314
+
315
+ that = self.__class__(id=self.id, parent=self.parent)
316
+ for key, value in self._properties.items():
317
+ is_strong = self._schema[key][2]
318
+
319
+ if isinstance(value, XCObject):
320
+ if is_strong:
321
+ new_value = value.Copy()
322
+ new_value.parent = that
323
+ that._properties[key] = new_value
324
+ else:
325
+ that._properties[key] = value
326
+ elif isinstance(value, (str, int)):
327
+ that._properties[key] = value
328
+ elif isinstance(value, list):
329
+ if is_strong:
330
+ # If is_strong is True, each element is an XCObject, so it's safe to
331
+ # call Copy.
332
+ that._properties[key] = []
333
+ for item in value:
334
+ new_item = item.Copy()
335
+ new_item.parent = that
336
+ that._properties[key].append(new_item)
337
+ else:
338
+ that._properties[key] = value[:]
339
+ elif isinstance(value, dict):
340
+ # dicts are never strong.
341
+ if is_strong:
342
+ raise TypeError(
343
+ "Strong dict for key " + key + " in " + self.__class__.__name__
344
+ )
345
+ else:
346
+ that._properties[key] = value.copy()
347
+ else:
348
+ raise TypeError(
349
+ "Unexpected type "
350
+ + value.__class__.__name__
351
+ + " for key "
352
+ + key
353
+ + " in "
354
+ + self.__class__.__name__
355
+ )
356
+
357
+ return that
358
+
359
+ def Name(self):
360
+ """Return the name corresponding to an object.
361
+
362
+ Not all objects necessarily need to be nameable, and not all that do have
363
+ a "name" property. Override as needed.
364
+ """
365
+
366
+ # If the schema indicates that "name" is required, try to access the
367
+ # property even if it doesn't exist. This will result in a KeyError
368
+ # being raised for the property that should be present, which seems more
369
+ # appropriate than NotImplementedError in this case.
370
+ if "name" in self._properties or (
371
+ "name" in self._schema and self._schema["name"][3]
372
+ ):
373
+ return self._properties["name"]
374
+
375
+ raise NotImplementedError(self.__class__.__name__ + " must implement Name")
376
+
377
+ def Comment(self):
378
+ """Return a comment string for the object.
379
+
380
+ Most objects just use their name as the comment, but PBXProject uses
381
+ different values.
382
+
383
+ The returned comment is not escaped and does not have any comment marker
384
+ strings applied to it.
385
+ """
386
+
387
+ return self.Name()
388
+
389
+ def Hashables(self):
390
+ hashables = [self.__class__.__name__]
391
+
392
+ name = self.Name()
393
+ if name is not None:
394
+ hashables.append(name)
395
+
396
+ hashables.extend(self._hashables)
397
+
398
+ return hashables
399
+
400
+ def HashablesForChild(self):
401
+ return None
402
+
403
+ def ComputeIDs(self, recursive=True, overwrite=True, seed_hash=None):
404
+ """Set "id" properties deterministically.
405
+
406
+ An object's "id" property is set based on a hash of its class type and
407
+ name, as well as the class type and name of all ancestor objects. As
408
+ such, it is only advisable to call ComputeIDs once an entire project file
409
+ tree is built.
410
+
411
+ If recursive is True, recurse into all descendant objects and update their
412
+ hashes.
413
+
414
+ If overwrite is True, any existing value set in the "id" property will be
415
+ replaced.
416
+ """
417
+
418
+ def _HashUpdate(hash, data):
419
+ """Update hash with data's length and contents.
420
+
421
+ If the hash were updated only with the value of data, it would be
422
+ possible for clowns to induce collisions by manipulating the names of
423
+ their objects. By adding the length, it's exceedingly less likely that
424
+ ID collisions will be encountered, intentionally or not.
425
+ """
426
+
427
+ hash.update(struct.pack(">i", len(data)))
428
+ if isinstance(data, str):
429
+ data = data.encode("utf-8")
430
+ hash.update(data)
431
+
432
+ if seed_hash is None:
433
+ seed_hash = hashlib.sha1()
434
+
435
+ hash = seed_hash.copy()
436
+
437
+ hashables = self.Hashables()
438
+ assert len(hashables) > 0
439
+ for hashable in hashables:
440
+ _HashUpdate(hash, hashable)
441
+
442
+ if recursive:
443
+ hashables_for_child = self.HashablesForChild()
444
+ if hashables_for_child is None:
445
+ child_hash = hash
446
+ else:
447
+ assert len(hashables_for_child) > 0
448
+ child_hash = seed_hash.copy()
449
+ for hashable in hashables_for_child:
450
+ _HashUpdate(child_hash, hashable)
451
+
452
+ for child in self.Children():
453
+ child.ComputeIDs(recursive, overwrite, child_hash)
454
+
455
+ if overwrite or self.id is None:
456
+ # Xcode IDs are only 96 bits (24 hex characters), but a SHA-1 digest is
457
+ # is 160 bits. Instead of throwing out 64 bits of the digest, xor them
458
+ # into the portion that gets used.
459
+ assert hash.digest_size % 4 == 0
460
+ digest_int_count = hash.digest_size // 4
461
+ digest_ints = struct.unpack(">" + "I" * digest_int_count, hash.digest())
462
+ id_ints = [0, 0, 0]
463
+ for index in range(0, digest_int_count):
464
+ id_ints[index % 3] ^= digest_ints[index]
465
+ self.id = "%08X%08X%08X" % tuple(id_ints)
466
+
467
+ def EnsureNoIDCollisions(self):
468
+ """Verifies that no two objects have the same ID. Checks all descendants.
469
+ """
470
+
471
+ ids = {}
472
+ descendants = self.Descendants()
473
+ for descendant in descendants:
474
+ if descendant.id in ids:
475
+ other = ids[descendant.id]
476
+ raise KeyError(
477
+ 'Duplicate ID %s, objects "%s" and "%s" in "%s"'
478
+ % (
479
+ descendant.id,
480
+ str(descendant._properties),
481
+ str(other._properties),
482
+ self._properties["rootObject"].Name(),
483
+ )
484
+ )
485
+ ids[descendant.id] = descendant
486
+
487
+ def Children(self):
488
+ """Returns a list of all of this object's owned (strong) children."""
489
+
490
+ children = []
491
+ for property, attributes in self._schema.items():
492
+ (is_list, property_type, is_strong) = attributes[0:3]
493
+ if is_strong and property in self._properties:
494
+ if not is_list:
495
+ children.append(self._properties[property])
496
+ else:
497
+ children.extend(self._properties[property])
498
+ return children
499
+
500
+ def Descendants(self):
501
+ """Returns a list of all of this object's descendants, including this
502
+ object.
503
+ """
504
+
505
+ children = self.Children()
506
+ descendants = [self]
507
+ for child in children:
508
+ descendants.extend(child.Descendants())
509
+ return descendants
510
+
511
+ def PBXProjectAncestor(self):
512
+ # The base case for recursion is defined at PBXProject.PBXProjectAncestor.
513
+ if self.parent:
514
+ return self.parent.PBXProjectAncestor()
515
+ return None
516
+
517
+ def _EncodeComment(self, comment):
518
+ """Encodes a comment to be placed in the project file output, mimicking
519
+ Xcode behavior.
520
+ """
521
+
522
+ # This mimics Xcode behavior by wrapping the comment in "/*" and "*/". If
523
+ # the string already contains a "*/", it is turned into "(*)/". This keeps
524
+ # the file writer from outputting something that would be treated as the
525
+ # end of a comment in the middle of something intended to be entirely a
526
+ # comment.
527
+
528
+ return "/* " + comment.replace("*/", "(*)/") + " */"
529
+
530
+ def _EncodeTransform(self, match):
531
+ # This function works closely with _EncodeString. It will only be called
532
+ # by re.sub with match.group(0) containing a character matched by the
533
+ # the _escaped expression.
534
+ char = match.group(0)
535
+
536
+ # Backslashes (\) and quotation marks (") are always replaced with a
537
+ # backslash-escaped version of the same. Everything else gets its
538
+ # replacement from the class' _encode_transforms array.
539
+ if char == "\\":
540
+ return "\\\\"
541
+ if char == '"':
542
+ return '\\"'
543
+ return self._encode_transforms[ord(char)]
544
+
545
+ def _EncodeString(self, value):
546
+ """Encodes a string to be placed in the project file output, mimicking
547
+ Xcode behavior.
548
+ """
549
+
550
+ # Use quotation marks when any character outside of the range A-Z, a-z, 0-9,
551
+ # $ (dollar sign), . (period), and _ (underscore) is present. Also use
552
+ # quotation marks to represent empty strings.
553
+ #
554
+ # Escape " (double-quote) and \ (backslash) by preceding them with a
555
+ # backslash.
556
+ #
557
+ # Some characters below the printable ASCII range are encoded specially:
558
+ # 7 ^G BEL is encoded as "\a"
559
+ # 8 ^H BS is encoded as "\b"
560
+ # 11 ^K VT is encoded as "\v"
561
+ # 12 ^L NP is encoded as "\f"
562
+ # 127 ^? DEL is passed through as-is without escaping
563
+ # - In PBXFileReference and PBXBuildFile objects:
564
+ # 9 ^I HT is passed through as-is without escaping
565
+ # 10 ^J NL is passed through as-is without escaping
566
+ # 13 ^M CR is passed through as-is without escaping
567
+ # - In other objects:
568
+ # 9 ^I HT is encoded as "\t"
569
+ # 10 ^J NL is encoded as "\n"
570
+ # 13 ^M CR is encoded as "\n" rendering it indistinguishable from
571
+ # 10 ^J NL
572
+ # All other characters within the ASCII control character range (0 through
573
+ # 31 inclusive) are encoded as "\U001f" referring to the Unicode code point
574
+ # in hexadecimal. For example, character 14 (^N SO) is encoded as "\U000e".
575
+ # Characters above the ASCII range are passed through to the output encoded
576
+ # as UTF-8 without any escaping. These mappings are contained in the
577
+ # class' _encode_transforms list.
578
+
579
+ if _unquoted.search(value) and not _quoted.search(value):
580
+ return value
581
+
582
+ return '"' + _escaped.sub(self._EncodeTransform, value) + '"'
583
+
584
+ def _XCPrint(self, file, tabs, line):
585
+ file.write("\t" * tabs + line)
586
+
587
+ def _XCPrintableValue(self, tabs, value, flatten_list=False):
588
+ """Returns a representation of value that may be printed in a project file,
589
+ mimicking Xcode's behavior.
590
+
591
+ _XCPrintableValue can handle str and int values, XCObjects (which are
592
+ made printable by returning their id property), and list and dict objects
593
+ composed of any of the above types. When printing a list or dict, and
594
+ _should_print_single_line is False, the tabs parameter is used to determine
595
+ how much to indent the lines corresponding to the items in the list or
596
+ dict.
597
+
598
+ If flatten_list is True, single-element lists will be transformed into
599
+ strings.
600
+ """
601
+
602
+ printable = ""
603
+ comment = None
604
+
605
+ if self._should_print_single_line:
606
+ sep = " "
607
+ element_tabs = ""
608
+ end_tabs = ""
609
+ else:
610
+ sep = "\n"
611
+ element_tabs = "\t" * (tabs + 1)
612
+ end_tabs = "\t" * tabs
613
+
614
+ if isinstance(value, XCObject):
615
+ printable += value.id
616
+ comment = value.Comment()
617
+ elif isinstance(value, str):
618
+ printable += self._EncodeString(value)
619
+ elif isinstance(value, str):
620
+ printable += self._EncodeString(value.encode("utf-8"))
621
+ elif isinstance(value, int):
622
+ printable += str(value)
623
+ elif isinstance(value, list):
624
+ if flatten_list and len(value) <= 1:
625
+ if len(value) == 0:
626
+ printable += self._EncodeString("")
627
+ else:
628
+ printable += self._EncodeString(value[0])
629
+ else:
630
+ printable = "(" + sep
631
+ for item in value:
632
+ printable += (
633
+ element_tabs
634
+ + self._XCPrintableValue(tabs + 1, item, flatten_list)
635
+ + ","
636
+ + sep
637
+ )
638
+ printable += end_tabs + ")"
639
+ elif isinstance(value, dict):
640
+ printable = "{" + sep
641
+ for item_key, item_value in sorted(value.items()):
642
+ printable += (
643
+ element_tabs
644
+ + self._XCPrintableValue(tabs + 1, item_key, flatten_list)
645
+ + " = "
646
+ + self._XCPrintableValue(tabs + 1, item_value, flatten_list)
647
+ + ";"
648
+ + sep
649
+ )
650
+ printable += end_tabs + "}"
651
+ else:
652
+ raise TypeError("Can't make " + value.__class__.__name__ + " printable")
653
+
654
+ if comment:
655
+ printable += " " + self._EncodeComment(comment)
656
+
657
+ return printable
658
+
659
+ def _XCKVPrint(self, file, tabs, key, value):
660
+ """Prints a key and value, members of an XCObject's _properties dictionary,
661
+ to file.
662
+
663
+ tabs is an int identifying the indentation level. If the class'
664
+ _should_print_single_line variable is True, tabs is ignored and the
665
+ key-value pair will be followed by a space insead of a newline.
666
+ """
667
+
668
+ if self._should_print_single_line:
669
+ printable = ""
670
+ after_kv = " "
671
+ else:
672
+ printable = "\t" * tabs
673
+ after_kv = "\n"
674
+
675
+ # Xcode usually prints remoteGlobalIDString values in PBXContainerItemProxy
676
+ # objects without comments. Sometimes it prints them with comments, but
677
+ # the majority of the time, it doesn't. To avoid unnecessary changes to
678
+ # the project file after Xcode opens it, don't write comments for
679
+ # remoteGlobalIDString. This is a sucky hack and it would certainly be
680
+ # cleaner to extend the schema to indicate whether or not a comment should
681
+ # be printed, but since this is the only case where the problem occurs and
682
+ # Xcode itself can't seem to make up its mind, the hack will suffice.
683
+ #
684
+ # Also see PBXContainerItemProxy._schema['remoteGlobalIDString'].
685
+ if key == "remoteGlobalIDString" and isinstance(self, PBXContainerItemProxy):
686
+ value_to_print = value.id
687
+ else:
688
+ value_to_print = value
689
+
690
+ # PBXBuildFile's settings property is represented in the output as a dict,
691
+ # but a hack here has it represented as a string. Arrange to strip off the
692
+ # quotes so that it shows up in the output as expected.
693
+ if key == "settings" and isinstance(self, PBXBuildFile):
694
+ strip_value_quotes = True
695
+ else:
696
+ strip_value_quotes = False
697
+
698
+ # In another one-off, let's set flatten_list on buildSettings properties
699
+ # of XCBuildConfiguration objects, because that's how Xcode treats them.
700
+ if key == "buildSettings" and isinstance(self, XCBuildConfiguration):
701
+ flatten_list = True
702
+ else:
703
+ flatten_list = False
704
+
705
+ try:
706
+ printable_key = self._XCPrintableValue(tabs, key, flatten_list)
707
+ printable_value = self._XCPrintableValue(tabs, value_to_print, flatten_list)
708
+ if (
709
+ strip_value_quotes
710
+ and len(printable_value) > 1
711
+ and printable_value[0] == '"'
712
+ and printable_value[-1] == '"'
713
+ ):
714
+ printable_value = printable_value[1:-1]
715
+ printable += printable_key + " = " + printable_value + ";" + after_kv
716
+ except TypeError as e:
717
+ gyp.common.ExceptionAppend(e, 'while printing key "%s"' % key)
718
+ raise
719
+
720
+ self._XCPrint(file, 0, printable)
721
+
722
+ def Print(self, file=sys.stdout):
723
+ """Prints a reprentation of this object to file, adhering to Xcode output
724
+ formatting.
725
+ """
726
+
727
+ self.VerifyHasRequiredProperties()
728
+
729
+ if self._should_print_single_line:
730
+ # When printing an object in a single line, Xcode doesn't put any space
731
+ # between the beginning of a dictionary (or presumably a list) and the
732
+ # first contained item, so you wind up with snippets like
733
+ # ...CDEF = {isa = PBXFileReference; fileRef = 0123...
734
+ # If it were me, I would have put a space in there after the opening
735
+ # curly, but I guess this is just another one of those inconsistencies
736
+ # between how Xcode prints PBXFileReference and PBXBuildFile objects as
737
+ # compared to other objects. Mimic Xcode's behavior here by using an
738
+ # empty string for sep.
739
+ sep = ""
740
+ end_tabs = 0
741
+ else:
742
+ sep = "\n"
743
+ end_tabs = 2
744
+
745
+ # Start the object. For example, '\t\tPBXProject = {\n'.
746
+ self._XCPrint(file, 2, self._XCPrintableValue(2, self) + " = {" + sep)
747
+
748
+ # "isa" isn't in the _properties dictionary, it's an intrinsic property
749
+ # of the class which the object belongs to. Xcode always outputs "isa"
750
+ # as the first element of an object dictionary.
751
+ self._XCKVPrint(file, 3, "isa", self.__class__.__name__)
752
+
753
+ # The remaining elements of an object dictionary are sorted alphabetically.
754
+ for property, value in sorted(self._properties.items()):
755
+ self._XCKVPrint(file, 3, property, value)
756
+
757
+ # End the object.
758
+ self._XCPrint(file, end_tabs, "};\n")
759
+
760
+ def UpdateProperties(self, properties, do_copy=False):
761
+ """Merge the supplied properties into the _properties dictionary.
762
+
763
+ The input properties must adhere to the class schema or a KeyError or
764
+ TypeError exception will be raised. If adding an object of an XCObject
765
+ subclass and the schema indicates a strong relationship, the object's
766
+ parent will be set to this object.
767
+
768
+ If do_copy is True, then lists, dicts, strong-owned XCObjects, and
769
+ strong-owned XCObjects in lists will be copied instead of having their
770
+ references added.
771
+ """
772
+
773
+ if properties is None:
774
+ return
775
+
776
+ for property, value in properties.items():
777
+ # Make sure the property is in the schema.
778
+ if property not in self._schema:
779
+ raise KeyError(property + " not in " + self.__class__.__name__)
780
+
781
+ # Make sure the property conforms to the schema.
782
+ (is_list, property_type, is_strong) = self._schema[property][0:3]
783
+ if is_list:
784
+ if value.__class__ != list:
785
+ raise TypeError(
786
+ property
787
+ + " of "
788
+ + self.__class__.__name__
789
+ + " must be list, not "
790
+ + value.__class__.__name__
791
+ )
792
+ for item in value:
793
+ if not isinstance(item, property_type) and not (
794
+ isinstance(item, str) and property_type == str
795
+ ):
796
+ # Accept unicode where str is specified. str is treated as
797
+ # UTF-8-encoded.
798
+ raise TypeError(
799
+ "item of "
800
+ + property
801
+ + " of "
802
+ + self.__class__.__name__
803
+ + " must be "
804
+ + property_type.__name__
805
+ + ", not "
806
+ + item.__class__.__name__
807
+ )
808
+ elif not isinstance(value, property_type) and not (
809
+ isinstance(value, str) and property_type == str
810
+ ):
811
+ # Accept unicode where str is specified. str is treated as
812
+ # UTF-8-encoded.
813
+ raise TypeError(
814
+ property
815
+ + " of "
816
+ + self.__class__.__name__
817
+ + " must be "
818
+ + property_type.__name__
819
+ + ", not "
820
+ + value.__class__.__name__
821
+ )
822
+
823
+ # Checks passed, perform the assignment.
824
+ if do_copy:
825
+ if isinstance(value, XCObject):
826
+ if is_strong:
827
+ self._properties[property] = value.Copy()
828
+ else:
829
+ self._properties[property] = value
830
+ elif isinstance(value, (str, int)):
831
+ self._properties[property] = value
832
+ elif isinstance(value, list):
833
+ if is_strong:
834
+ # If is_strong is True, each element is an XCObject,
835
+ # so it's safe to call Copy.
836
+ self._properties[property] = []
837
+ for item in value:
838
+ self._properties[property].append(item.Copy())
839
+ else:
840
+ self._properties[property] = value[:]
841
+ elif isinstance(value, dict):
842
+ self._properties[property] = value.copy()
843
+ else:
844
+ raise TypeError(
845
+ "Don't know how to copy a "
846
+ + value.__class__.__name__
847
+ + " object for "
848
+ + property
849
+ + " in "
850
+ + self.__class__.__name__
851
+ )
852
+ else:
853
+ self._properties[property] = value
854
+
855
+ # Set up the child's back-reference to this object. Don't use |value|
856
+ # any more because it may not be right if do_copy is true.
857
+ if is_strong:
858
+ if not is_list:
859
+ self._properties[property].parent = self
860
+ else:
861
+ for item in self._properties[property]:
862
+ item.parent = self
863
+
864
+ def HasProperty(self, key):
865
+ return key in self._properties
866
+
867
+ def GetProperty(self, key):
868
+ return self._properties[key]
869
+
870
+ def SetProperty(self, key, value):
871
+ self.UpdateProperties({key: value})
872
+
873
+ def DelProperty(self, key):
874
+ if key in self._properties:
875
+ del self._properties[key]
876
+
877
+ def AppendProperty(self, key, value):
878
+ # TODO(mark): Support ExtendProperty too (and make this call that)?
879
+
880
+ # Schema validation.
881
+ if key not in self._schema:
882
+ raise KeyError(key + " not in " + self.__class__.__name__)
883
+
884
+ (is_list, property_type, is_strong) = self._schema[key][0:3]
885
+ if not is_list:
886
+ raise TypeError(key + " of " + self.__class__.__name__ + " must be list")
887
+ if not isinstance(value, property_type):
888
+ raise TypeError(
889
+ "item of "
890
+ + key
891
+ + " of "
892
+ + self.__class__.__name__
893
+ + " must be "
894
+ + property_type.__name__
895
+ + ", not "
896
+ + value.__class__.__name__
897
+ )
898
+
899
+ # If the property doesn't exist yet, create a new empty list to receive the
900
+ # item.
901
+ self._properties[key] = self._properties.get(key, [])
902
+
903
+ # Set up the ownership link.
904
+ if is_strong:
905
+ value.parent = self
906
+
907
+ # Store the item.
908
+ self._properties[key].append(value)
909
+
910
+ def VerifyHasRequiredProperties(self):
911
+ """Ensure that all properties identified as required by the schema are
912
+ set.
913
+ """
914
+
915
+ # TODO(mark): A stronger verification mechanism is needed. Some
916
+ # subclasses need to perform validation beyond what the schema can enforce.
917
+ for property, attributes in self._schema.items():
918
+ (is_list, property_type, is_strong, is_required) = attributes[0:4]
919
+ if is_required and property not in self._properties:
920
+ raise KeyError(self.__class__.__name__ + " requires " + property)
921
+
922
+ def _SetDefaultsFromSchema(self):
923
+ """Assign object default values according to the schema. This will not
924
+ overwrite properties that have already been set."""
925
+
926
+ defaults = {}
927
+ for property, attributes in self._schema.items():
928
+ (is_list, property_type, is_strong, is_required) = attributes[0:4]
929
+ if (
930
+ is_required
931
+ and len(attributes) >= 5
932
+ and property not in self._properties
933
+ ):
934
+ default = attributes[4]
935
+
936
+ defaults[property] = default
937
+
938
+ if len(defaults) > 0:
939
+ # Use do_copy=True so that each new object gets its own copy of strong
940
+ # objects, lists, and dicts.
941
+ self.UpdateProperties(defaults, do_copy=True)
942
+
943
+
944
+ class XCHierarchicalElement(XCObject):
945
+ """Abstract base for PBXGroup and PBXFileReference. Not represented in a
946
+ project file."""
947
+
948
+ # TODO(mark): Do name and path belong here? Probably so.
949
+ # If path is set and name is not, name may have a default value. Name will
950
+ # be set to the basename of path, if the basename of path is different from
951
+ # the full value of path. If path is already just a leaf name, name will
952
+ # not be set.
953
+ _schema = XCObject._schema.copy()
954
+ _schema.update(
955
+ {
956
+ "comments": [0, str, 0, 0],
957
+ "fileEncoding": [0, str, 0, 0],
958
+ "includeInIndex": [0, int, 0, 0],
959
+ "indentWidth": [0, int, 0, 0],
960
+ "lineEnding": [0, int, 0, 0],
961
+ "sourceTree": [0, str, 0, 1, "<group>"],
962
+ "tabWidth": [0, int, 0, 0],
963
+ "usesTabs": [0, int, 0, 0],
964
+ "wrapsLines": [0, int, 0, 0],
965
+ }
966
+ )
967
+
968
+ def __init__(self, properties=None, id=None, parent=None):
969
+ # super
970
+ XCObject.__init__(self, properties, id, parent)
971
+ if "path" in self._properties and "name" not in self._properties:
972
+ path = self._properties["path"]
973
+ name = posixpath.basename(path)
974
+ if name not in ("", path):
975
+ self.SetProperty("name", name)
976
+
977
+ if "path" in self._properties and (
978
+ "sourceTree" not in self._properties
979
+ or self._properties["sourceTree"] == "<group>"
980
+ ):
981
+ # If the pathname begins with an Xcode variable like "$(SDKROOT)/", take
982
+ # the variable out and make the path be relative to that variable by
983
+ # assigning the variable name as the sourceTree.
984
+ (source_tree, path) = SourceTreeAndPathFromPath(self._properties["path"])
985
+ if source_tree is not None:
986
+ self._properties["sourceTree"] = source_tree
987
+ if path is not None:
988
+ self._properties["path"] = path
989
+ if (
990
+ source_tree is not None
991
+ and path is None
992
+ and "name" not in self._properties
993
+ ):
994
+ # The path was of the form "$(SDKROOT)" with no path following it.
995
+ # This object is now relative to that variable, so it has no path
996
+ # attribute of its own. It does, however, keep a name.
997
+ del self._properties["path"]
998
+ self._properties["name"] = source_tree
999
+
1000
+ def Name(self):
1001
+ if "name" in self._properties:
1002
+ return self._properties["name"]
1003
+ elif "path" in self._properties:
1004
+ return self._properties["path"]
1005
+ else:
1006
+ # This happens in the case of the root PBXGroup.
1007
+ return None
1008
+
1009
+ def Hashables(self):
1010
+ """Custom hashables for XCHierarchicalElements.
1011
+
1012
+ XCHierarchicalElements are special. Generally, their hashes shouldn't
1013
+ change if the paths don't change. The normal XCObject implementation of
1014
+ Hashables adds a hashable for each object, which means that if
1015
+ the hierarchical structure changes (possibly due to changes caused when
1016
+ TakeOverOnlyChild runs and encounters slight changes in the hierarchy),
1017
+ the hashes will change. For example, if a project file initially contains
1018
+ a/b/f1 and a/b becomes collapsed into a/b, f1 will have a single parent
1019
+ a/b. If someone later adds a/f2 to the project file, a/b can no longer be
1020
+ collapsed, and f1 winds up with parent b and grandparent a. That would
1021
+ be sufficient to change f1's hash.
1022
+
1023
+ To counteract this problem, hashables for all XCHierarchicalElements except
1024
+ for the main group (which has neither a name nor a path) are taken to be
1025
+ just the set of path components. Because hashables are inherited from
1026
+ parents, this provides assurance that a/b/f1 has the same set of hashables
1027
+ whether its parent is b or a/b.
1028
+
1029
+ The main group is a special case. As it is permitted to have no name or
1030
+ path, it is permitted to use the standard XCObject hash mechanism. This
1031
+ is not considered a problem because there can be only one main group.
1032
+ """
1033
+
1034
+ if self == self.PBXProjectAncestor()._properties["mainGroup"]:
1035
+ # super
1036
+ return XCObject.Hashables(self)
1037
+
1038
+ hashables = []
1039
+
1040
+ # Put the name in first, ensuring that if TakeOverOnlyChild collapses
1041
+ # children into a top-level group like "Source", the name always goes
1042
+ # into the list of hashables without interfering with path components.
1043
+ if "name" in self._properties:
1044
+ # Make it less likely for people to manipulate hashes by following the
1045
+ # pattern of always pushing an object type value onto the list first.
1046
+ hashables.append(self.__class__.__name__ + ".name")
1047
+ hashables.append(self._properties["name"])
1048
+
1049
+ # NOTE: This still has the problem that if an absolute path is encountered,
1050
+ # including paths with a sourceTree, they'll still inherit their parents'
1051
+ # hashables, even though the paths aren't relative to their parents. This
1052
+ # is not expected to be much of a problem in practice.
1053
+ path = self.PathFromSourceTreeAndPath()
1054
+ if path is not None:
1055
+ components = path.split(posixpath.sep)
1056
+ for component in components:
1057
+ hashables.append(self.__class__.__name__ + ".path")
1058
+ hashables.append(component)
1059
+
1060
+ hashables.extend(self._hashables)
1061
+
1062
+ return hashables
1063
+
1064
+ def Compare(self, other):
1065
+ # Allow comparison of these types. PBXGroup has the highest sort rank;
1066
+ # PBXVariantGroup is treated as equal to PBXFileReference.
1067
+ valid_class_types = {
1068
+ PBXFileReference: "file",
1069
+ PBXGroup: "group",
1070
+ PBXVariantGroup: "file",
1071
+ }
1072
+ self_type = valid_class_types[self.__class__]
1073
+ other_type = valid_class_types[other.__class__]
1074
+
1075
+ if self_type == other_type:
1076
+ # If the two objects are of the same sort rank, compare their names.
1077
+ return cmp(self.Name(), other.Name())
1078
+
1079
+ # Otherwise, sort groups before everything else.
1080
+ if self_type == "group":
1081
+ return -1
1082
+ return 1
1083
+
1084
+ def CompareRootGroup(self, other):
1085
+ # This function should be used only to compare direct children of the
1086
+ # containing PBXProject's mainGroup. These groups should appear in the
1087
+ # listed order.
1088
+ # TODO(mark): "Build" is used by gyp.generator.xcode, perhaps the
1089
+ # generator should have a way of influencing this list rather than having
1090
+ # to hardcode for the generator here.
1091
+ order = [
1092
+ "Source",
1093
+ "Intermediates",
1094
+ "Projects",
1095
+ "Frameworks",
1096
+ "Products",
1097
+ "Build",
1098
+ ]
1099
+
1100
+ # If the groups aren't in the listed order, do a name comparison.
1101
+ # Otherwise, groups in the listed order should come before those that
1102
+ # aren't.
1103
+ self_name = self.Name()
1104
+ other_name = other.Name()
1105
+ self_in = isinstance(self, PBXGroup) and self_name in order
1106
+ other_in = isinstance(self, PBXGroup) and other_name in order
1107
+ if not self_in and not other_in:
1108
+ return self.Compare(other)
1109
+ if self_name in order and other_name not in order:
1110
+ return -1
1111
+ if other_name in order and self_name not in order:
1112
+ return 1
1113
+
1114
+ # If both groups are in the listed order, go by the defined order.
1115
+ self_index = order.index(self_name)
1116
+ other_index = order.index(other_name)
1117
+ if self_index < other_index:
1118
+ return -1
1119
+ if self_index > other_index:
1120
+ return 1
1121
+ return 0
1122
+
1123
+ def PathFromSourceTreeAndPath(self):
1124
+ # Turn the object's sourceTree and path properties into a single flat
1125
+ # string of a form comparable to the path parameter. If there's a
1126
+ # sourceTree property other than "<group>", wrap it in $(...) for the
1127
+ # comparison.
1128
+ components = []
1129
+ if self._properties["sourceTree"] != "<group>":
1130
+ components.append("$(" + self._properties["sourceTree"] + ")")
1131
+ if "path" in self._properties:
1132
+ components.append(self._properties["path"])
1133
+
1134
+ if len(components) > 0:
1135
+ return posixpath.join(*components)
1136
+
1137
+ return None
1138
+
1139
+ def FullPath(self):
1140
+ # Returns a full path to self relative to the project file, or relative
1141
+ # to some other source tree. Start with self, and walk up the chain of
1142
+ # parents prepending their paths, if any, until no more parents are
1143
+ # available (project-relative path) or until a path relative to some
1144
+ # source tree is found.
1145
+ xche = self
1146
+ path = None
1147
+ while isinstance(xche, XCHierarchicalElement) and (
1148
+ path is None or (not path.startswith("/") and not path.startswith("$"))
1149
+ ):
1150
+ this_path = xche.PathFromSourceTreeAndPath()
1151
+ if this_path is not None and path is not None:
1152
+ path = posixpath.join(this_path, path)
1153
+ elif this_path is not None:
1154
+ path = this_path
1155
+ xche = xche.parent
1156
+
1157
+ return path
1158
+
1159
+
1160
+ class PBXGroup(XCHierarchicalElement):
1161
+ """
1162
+ Attributes:
1163
+ _children_by_path: Maps pathnames of children of this PBXGroup to the
1164
+ actual child XCHierarchicalElement objects.
1165
+ _variant_children_by_name_and_path: Maps (name, path) tuples of
1166
+ PBXVariantGroup children to the actual child PBXVariantGroup objects.
1167
+ """
1168
+
1169
+ _schema = XCHierarchicalElement._schema.copy()
1170
+ _schema.update(
1171
+ {
1172
+ "children": [1, XCHierarchicalElement, 1, 1, []],
1173
+ "name": [0, str, 0, 0],
1174
+ "path": [0, str, 0, 0],
1175
+ }
1176
+ )
1177
+
1178
+ def __init__(self, properties=None, id=None, parent=None):
1179
+ # super
1180
+ XCHierarchicalElement.__init__(self, properties, id, parent)
1181
+ self._children_by_path = {}
1182
+ self._variant_children_by_name_and_path = {}
1183
+ for child in self._properties.get("children", []):
1184
+ self._AddChildToDicts(child)
1185
+
1186
+ def Hashables(self):
1187
+ # super
1188
+ hashables = XCHierarchicalElement.Hashables(self)
1189
+
1190
+ # It is not sufficient to just rely on name and parent to build a unique
1191
+ # hashable : a node could have two child PBXGroup sharing a common name.
1192
+ # To add entropy the hashable is enhanced with the names of all its
1193
+ # children.
1194
+ for child in self._properties.get("children", []):
1195
+ child_name = child.Name()
1196
+ if child_name is not None:
1197
+ hashables.append(child_name)
1198
+
1199
+ return hashables
1200
+
1201
+ def HashablesForChild(self):
1202
+ # To avoid a circular reference the hashables used to compute a child id do
1203
+ # not include the child names.
1204
+ return XCHierarchicalElement.Hashables(self)
1205
+
1206
+ def _AddChildToDicts(self, child):
1207
+ # Sets up this PBXGroup object's dicts to reference the child properly.
1208
+ child_path = child.PathFromSourceTreeAndPath()
1209
+ if child_path:
1210
+ if child_path in self._children_by_path:
1211
+ raise ValueError("Found multiple children with path " + child_path)
1212
+ self._children_by_path[child_path] = child
1213
+
1214
+ if isinstance(child, PBXVariantGroup):
1215
+ child_name = child._properties.get("name", None)
1216
+ key = (child_name, child_path)
1217
+ if key in self._variant_children_by_name_and_path:
1218
+ raise ValueError(
1219
+ "Found multiple PBXVariantGroup children with "
1220
+ + "name "
1221
+ + str(child_name)
1222
+ + " and path "
1223
+ + str(child_path)
1224
+ )
1225
+ self._variant_children_by_name_and_path[key] = child
1226
+
1227
+ def AppendChild(self, child):
1228
+ # Callers should use this instead of calling
1229
+ # AppendProperty('children', child) directly because this function
1230
+ # maintains the group's dicts.
1231
+ self.AppendProperty("children", child)
1232
+ self._AddChildToDicts(child)
1233
+
1234
+ def GetChildByName(self, name):
1235
+ # This is not currently optimized with a dict as GetChildByPath is because
1236
+ # it has few callers. Most callers probably want GetChildByPath. This
1237
+ # function is only useful to get children that have names but no paths,
1238
+ # which is rare. The children of the main group ("Source", "Products",
1239
+ # etc.) is pretty much the only case where this likely to come up.
1240
+ #
1241
+ # TODO(mark): Maybe this should raise an error if more than one child is
1242
+ # present with the same name.
1243
+ if "children" not in self._properties:
1244
+ return None
1245
+
1246
+ for child in self._properties["children"]:
1247
+ if child.Name() == name:
1248
+ return child
1249
+
1250
+ return None
1251
+
1252
+ def GetChildByPath(self, path):
1253
+ if not path:
1254
+ return None
1255
+
1256
+ if path in self._children_by_path:
1257
+ return self._children_by_path[path]
1258
+
1259
+ return None
1260
+
1261
+ def GetChildByRemoteObject(self, remote_object):
1262
+ # This method is a little bit esoteric. Given a remote_object, which
1263
+ # should be a PBXFileReference in another project file, this method will
1264
+ # return this group's PBXReferenceProxy object serving as a local proxy
1265
+ # for the remote PBXFileReference.
1266
+ #
1267
+ # This function might benefit from a dict optimization as GetChildByPath
1268
+ # for some workloads, but profiling shows that it's not currently a
1269
+ # problem.
1270
+ if "children" not in self._properties:
1271
+ return None
1272
+
1273
+ for child in self._properties["children"]:
1274
+ if not isinstance(child, PBXReferenceProxy):
1275
+ continue
1276
+
1277
+ container_proxy = child._properties["remoteRef"]
1278
+ if container_proxy._properties["remoteGlobalIDString"] == remote_object:
1279
+ return child
1280
+
1281
+ return None
1282
+
1283
+ def AddOrGetFileByPath(self, path, hierarchical):
1284
+ """Returns an existing or new file reference corresponding to path.
1285
+
1286
+ If hierarchical is True, this method will create or use the necessary
1287
+ hierarchical group structure corresponding to path. Otherwise, it will
1288
+ look in and create an item in the current group only.
1289
+
1290
+ If an existing matching reference is found, it is returned, otherwise, a
1291
+ new one will be created, added to the correct group, and returned.
1292
+
1293
+ If path identifies a directory by virtue of carrying a trailing slash,
1294
+ this method returns a PBXFileReference of "folder" type. If path
1295
+ identifies a variant, by virtue of it identifying a file inside a directory
1296
+ with an ".lproj" extension, this method returns a PBXVariantGroup
1297
+ containing the variant named by path, and possibly other variants. For
1298
+ all other paths, a "normal" PBXFileReference will be returned.
1299
+ """
1300
+
1301
+ # Adding or getting a directory? Directories end with a trailing slash.
1302
+ is_dir = False
1303
+ if path.endswith("/"):
1304
+ is_dir = True
1305
+ path = posixpath.normpath(path)
1306
+ if is_dir:
1307
+ path = path + "/"
1308
+
1309
+ # Adding or getting a variant? Variants are files inside directories
1310
+ # with an ".lproj" extension. Xcode uses variants for localization. For
1311
+ # a variant path/to/Language.lproj/MainMenu.nib, put a variant group named
1312
+ # MainMenu.nib inside path/to, and give it a variant named Language. In
1313
+ # this example, grandparent would be set to path/to and parent_root would
1314
+ # be set to Language.
1315
+ variant_name = None
1316
+ parent = posixpath.dirname(path)
1317
+ grandparent = posixpath.dirname(parent)
1318
+ parent_basename = posixpath.basename(parent)
1319
+ (parent_root, parent_ext) = posixpath.splitext(parent_basename)
1320
+ if parent_ext == ".lproj":
1321
+ variant_name = parent_root
1322
+ if grandparent == "":
1323
+ grandparent = None
1324
+
1325
+ # Putting a directory inside a variant group is not currently supported.
1326
+ assert not is_dir or variant_name is None
1327
+
1328
+ path_split = path.split(posixpath.sep)
1329
+ if (
1330
+ len(path_split) == 1
1331
+ or ((is_dir or variant_name is not None) and len(path_split) == 2)
1332
+ or not hierarchical
1333
+ ):
1334
+ # The PBXFileReference or PBXVariantGroup will be added to or gotten from
1335
+ # this PBXGroup, no recursion necessary.
1336
+ if variant_name is None:
1337
+ # Add or get a PBXFileReference.
1338
+ file_ref = self.GetChildByPath(path)
1339
+ if file_ref is not None:
1340
+ assert file_ref.__class__ == PBXFileReference
1341
+ else:
1342
+ file_ref = PBXFileReference({"path": path})
1343
+ self.AppendChild(file_ref)
1344
+ else:
1345
+ # Add or get a PBXVariantGroup. The variant group name is the same
1346
+ # as the basename (MainMenu.nib in the example above). grandparent
1347
+ # specifies the path to the variant group itself, and path_split[-2:]
1348
+ # is the path of the specific variant relative to its group.
1349
+ variant_group_name = posixpath.basename(path)
1350
+ variant_group_ref = self.AddOrGetVariantGroupByNameAndPath(
1351
+ variant_group_name, grandparent
1352
+ )
1353
+ variant_path = posixpath.sep.join(path_split[-2:])
1354
+ variant_ref = variant_group_ref.GetChildByPath(variant_path)
1355
+ if variant_ref is not None:
1356
+ assert variant_ref.__class__ == PBXFileReference
1357
+ else:
1358
+ variant_ref = PBXFileReference(
1359
+ {"name": variant_name, "path": variant_path}
1360
+ )
1361
+ variant_group_ref.AppendChild(variant_ref)
1362
+ # The caller is interested in the variant group, not the specific
1363
+ # variant file.
1364
+ file_ref = variant_group_ref
1365
+ return file_ref
1366
+ else:
1367
+ # Hierarchical recursion. Add or get a PBXGroup corresponding to the
1368
+ # outermost path component, and then recurse into it, chopping off that
1369
+ # path component.
1370
+ next_dir = path_split[0]
1371
+ group_ref = self.GetChildByPath(next_dir)
1372
+ if group_ref is not None:
1373
+ assert group_ref.__class__ == PBXGroup
1374
+ else:
1375
+ group_ref = PBXGroup({"path": next_dir})
1376
+ self.AppendChild(group_ref)
1377
+ return group_ref.AddOrGetFileByPath(
1378
+ posixpath.sep.join(path_split[1:]), hierarchical
1379
+ )
1380
+
1381
+ def AddOrGetVariantGroupByNameAndPath(self, name, path):
1382
+ """Returns an existing or new PBXVariantGroup for name and path.
1383
+
1384
+ If a PBXVariantGroup identified by the name and path arguments is already
1385
+ present as a child of this object, it is returned. Otherwise, a new
1386
+ PBXVariantGroup with the correct properties is created, added as a child,
1387
+ and returned.
1388
+
1389
+ This method will generally be called by AddOrGetFileByPath, which knows
1390
+ when to create a variant group based on the structure of the pathnames
1391
+ passed to it.
1392
+ """
1393
+
1394
+ key = (name, path)
1395
+ if key in self._variant_children_by_name_and_path:
1396
+ variant_group_ref = self._variant_children_by_name_and_path[key]
1397
+ assert variant_group_ref.__class__ == PBXVariantGroup
1398
+ return variant_group_ref
1399
+
1400
+ variant_group_properties = {"name": name}
1401
+ if path is not None:
1402
+ variant_group_properties["path"] = path
1403
+ variant_group_ref = PBXVariantGroup(variant_group_properties)
1404
+ self.AppendChild(variant_group_ref)
1405
+
1406
+ return variant_group_ref
1407
+
1408
+ def TakeOverOnlyChild(self, recurse=False):
1409
+ """If this PBXGroup has only one child and it's also a PBXGroup, take
1410
+ it over by making all of its children this object's children.
1411
+
1412
+ This function will continue to take over only children when those children
1413
+ are groups. If there are three PBXGroups representing a, b, and c, with
1414
+ c inside b and b inside a, and a and b have no other children, this will
1415
+ result in a taking over both b and c, forming a PBXGroup for a/b/c.
1416
+
1417
+ If recurse is True, this function will recurse into children and ask them
1418
+ to collapse themselves by taking over only children as well. Assuming
1419
+ an example hierarchy with files at a/b/c/d1, a/b/c/d2, and a/b/c/d3/e/f
1420
+ (d1, d2, and f are files, the rest are groups), recursion will result in
1421
+ a group for a/b/c containing a group for d3/e.
1422
+ """
1423
+
1424
+ # At this stage, check that child class types are PBXGroup exactly,
1425
+ # instead of using isinstance. The only subclass of PBXGroup,
1426
+ # PBXVariantGroup, should not participate in reparenting in the same way:
1427
+ # reparenting by merging different object types would be wrong.
1428
+ while (
1429
+ len(self._properties["children"]) == 1
1430
+ and self._properties["children"][0].__class__ == PBXGroup
1431
+ ):
1432
+ # Loop to take over the innermost only-child group possible.
1433
+
1434
+ child = self._properties["children"][0]
1435
+
1436
+ # Assume the child's properties, including its children. Save a copy
1437
+ # of this object's old properties, because they'll still be needed.
1438
+ # This object retains its existing id and parent attributes.
1439
+ old_properties = self._properties
1440
+ self._properties = child._properties
1441
+ self._children_by_path = child._children_by_path
1442
+
1443
+ if (
1444
+ "sourceTree" not in self._properties
1445
+ or self._properties["sourceTree"] == "<group>"
1446
+ ):
1447
+ # The child was relative to its parent. Fix up the path. Note that
1448
+ # children with a sourceTree other than "<group>" are not relative to
1449
+ # their parents, so no path fix-up is needed in that case.
1450
+ if "path" in old_properties:
1451
+ if "path" in self._properties:
1452
+ # Both the original parent and child have paths set.
1453
+ self._properties["path"] = posixpath.join(
1454
+ old_properties["path"], self._properties["path"]
1455
+ )
1456
+ else:
1457
+ # Only the original parent has a path, use it.
1458
+ self._properties["path"] = old_properties["path"]
1459
+ if "sourceTree" in old_properties:
1460
+ # The original parent had a sourceTree set, use it.
1461
+ self._properties["sourceTree"] = old_properties["sourceTree"]
1462
+
1463
+ # If the original parent had a name set, keep using it. If the original
1464
+ # parent didn't have a name but the child did, let the child's name
1465
+ # live on. If the name attribute seems unnecessary now, get rid of it.
1466
+ if "name" in old_properties and old_properties["name"] not in (
1467
+ None,
1468
+ self.Name(),
1469
+ ):
1470
+ self._properties["name"] = old_properties["name"]
1471
+ if (
1472
+ "name" in self._properties
1473
+ and "path" in self._properties
1474
+ and self._properties["name"] == self._properties["path"]
1475
+ ):
1476
+ del self._properties["name"]
1477
+
1478
+ # Notify all children of their new parent.
1479
+ for child in self._properties["children"]:
1480
+ child.parent = self
1481
+
1482
+ # If asked to recurse, recurse.
1483
+ if recurse:
1484
+ for child in self._properties["children"]:
1485
+ if child.__class__ == PBXGroup:
1486
+ child.TakeOverOnlyChild(recurse)
1487
+
1488
+ def SortGroup(self):
1489
+ self._properties["children"] = sorted(
1490
+ self._properties["children"], key=cmp_to_key(lambda x, y: x.Compare(y))
1491
+ )
1492
+
1493
+ # Recurse.
1494
+ for child in self._properties["children"]:
1495
+ if isinstance(child, PBXGroup):
1496
+ child.SortGroup()
1497
+
1498
+
1499
+ class XCFileLikeElement(XCHierarchicalElement):
1500
+ # Abstract base for objects that can be used as the fileRef property of
1501
+ # PBXBuildFile.
1502
+
1503
+ def PathHashables(self):
1504
+ # A PBXBuildFile that refers to this object will call this method to
1505
+ # obtain additional hashables specific to this XCFileLikeElement. Don't
1506
+ # just use this object's hashables, they're not specific and unique enough
1507
+ # on their own (without access to the parent hashables.) Instead, provide
1508
+ # hashables that identify this object by path by getting its hashables as
1509
+ # well as the hashables of ancestor XCHierarchicalElement objects.
1510
+
1511
+ hashables = []
1512
+ xche = self
1513
+ while isinstance(xche, XCHierarchicalElement):
1514
+ xche_hashables = xche.Hashables()
1515
+ for index, xche_hashable in enumerate(xche_hashables):
1516
+ hashables.insert(index, xche_hashable)
1517
+ xche = xche.parent
1518
+ return hashables
1519
+
1520
+
1521
+ class XCContainerPortal(XCObject):
1522
+ # Abstract base for objects that can be used as the containerPortal property
1523
+ # of PBXContainerItemProxy.
1524
+ pass
1525
+
1526
+
1527
+ class XCRemoteObject(XCObject):
1528
+ # Abstract base for objects that can be used as the remoteGlobalIDString
1529
+ # property of PBXContainerItemProxy.
1530
+ pass
1531
+
1532
+
1533
+ class PBXFileReference(XCFileLikeElement, XCContainerPortal, XCRemoteObject):
1534
+ _schema = XCFileLikeElement._schema.copy()
1535
+ _schema.update(
1536
+ {
1537
+ "explicitFileType": [0, str, 0, 0],
1538
+ "lastKnownFileType": [0, str, 0, 0],
1539
+ "name": [0, str, 0, 0],
1540
+ "path": [0, str, 0, 1],
1541
+ }
1542
+ )
1543
+
1544
+ # Weird output rules for PBXFileReference.
1545
+ _should_print_single_line = True
1546
+ # super
1547
+ _encode_transforms = XCFileLikeElement._alternate_encode_transforms
1548
+
1549
+ def __init__(self, properties=None, id=None, parent=None):
1550
+ # super
1551
+ XCFileLikeElement.__init__(self, properties, id, parent)
1552
+ if "path" in self._properties and self._properties["path"].endswith("/"):
1553
+ self._properties["path"] = self._properties["path"][:-1]
1554
+ is_dir = True
1555
+ else:
1556
+ is_dir = False
1557
+
1558
+ if (
1559
+ "path" in self._properties
1560
+ and "lastKnownFileType" not in self._properties
1561
+ and "explicitFileType" not in self._properties
1562
+ ):
1563
+ # TODO(mark): This is the replacement for a replacement for a quick hack.
1564
+ # It is no longer incredibly sucky, but this list needs to be extended.
1565
+ extension_map = {
1566
+ "a": "archive.ar",
1567
+ "app": "wrapper.application",
1568
+ "bdic": "file",
1569
+ "bundle": "wrapper.cfbundle",
1570
+ "c": "sourcecode.c.c",
1571
+ "cc": "sourcecode.cpp.cpp",
1572
+ "cpp": "sourcecode.cpp.cpp",
1573
+ "css": "text.css",
1574
+ "cxx": "sourcecode.cpp.cpp",
1575
+ "dart": "sourcecode",
1576
+ "dylib": "compiled.mach-o.dylib",
1577
+ "framework": "wrapper.framework",
1578
+ "gyp": "sourcecode",
1579
+ "gypi": "sourcecode",
1580
+ "h": "sourcecode.c.h",
1581
+ "hxx": "sourcecode.cpp.h",
1582
+ "icns": "image.icns",
1583
+ "java": "sourcecode.java",
1584
+ "js": "sourcecode.javascript",
1585
+ "kext": "wrapper.kext",
1586
+ "m": "sourcecode.c.objc",
1587
+ "mm": "sourcecode.cpp.objcpp",
1588
+ "nib": "wrapper.nib",
1589
+ "o": "compiled.mach-o.objfile",
1590
+ "pdf": "image.pdf",
1591
+ "pl": "text.script.perl",
1592
+ "plist": "text.plist.xml",
1593
+ "pm": "text.script.perl",
1594
+ "png": "image.png",
1595
+ "py": "text.script.python",
1596
+ "r": "sourcecode.rez",
1597
+ "rez": "sourcecode.rez",
1598
+ "s": "sourcecode.asm",
1599
+ "storyboard": "file.storyboard",
1600
+ "strings": "text.plist.strings",
1601
+ "swift": "sourcecode.swift",
1602
+ "ttf": "file",
1603
+ "xcassets": "folder.assetcatalog",
1604
+ "xcconfig": "text.xcconfig",
1605
+ "xcdatamodel": "wrapper.xcdatamodel",
1606
+ "xcdatamodeld": "wrapper.xcdatamodeld",
1607
+ "xib": "file.xib",
1608
+ "y": "sourcecode.yacc",
1609
+ }
1610
+
1611
+ prop_map = {
1612
+ "dart": "explicitFileType",
1613
+ "gyp": "explicitFileType",
1614
+ "gypi": "explicitFileType",
1615
+ }
1616
+
1617
+ if is_dir:
1618
+ file_type = "folder"
1619
+ prop_name = "lastKnownFileType"
1620
+ else:
1621
+ basename = posixpath.basename(self._properties["path"])
1622
+ (root, ext) = posixpath.splitext(basename)
1623
+ # Check the map using a lowercase extension.
1624
+ # TODO(mark): Maybe it should try with the original case first and fall
1625
+ # back to lowercase, in case there are any instances where case
1626
+ # matters. There currently aren't.
1627
+ if ext != "":
1628
+ ext = ext[1:].lower()
1629
+
1630
+ # TODO(mark): "text" is the default value, but "file" is appropriate
1631
+ # for unrecognized files not containing text. Xcode seems to choose
1632
+ # based on content.
1633
+ file_type = extension_map.get(ext, "text")
1634
+ prop_name = prop_map.get(ext, "lastKnownFileType")
1635
+
1636
+ self._properties[prop_name] = file_type
1637
+
1638
+
1639
+ class PBXVariantGroup(PBXGroup, XCFileLikeElement):
1640
+ """PBXVariantGroup is used by Xcode to represent localizations."""
1641
+
1642
+ # No additions to the schema relative to PBXGroup.
1643
+ pass
1644
+
1645
+
1646
+ # PBXReferenceProxy is also an XCFileLikeElement subclass. It is defined below
1647
+ # because it uses PBXContainerItemProxy, defined below.
1648
+
1649
+
1650
+ class XCBuildConfiguration(XCObject):
1651
+ _schema = XCObject._schema.copy()
1652
+ _schema.update(
1653
+ {
1654
+ "baseConfigurationReference": [0, PBXFileReference, 0, 0],
1655
+ "buildSettings": [0, dict, 0, 1, {}],
1656
+ "name": [0, str, 0, 1],
1657
+ }
1658
+ )
1659
+
1660
+ def HasBuildSetting(self, key):
1661
+ return key in self._properties["buildSettings"]
1662
+
1663
+ def GetBuildSetting(self, key):
1664
+ return self._properties["buildSettings"][key]
1665
+
1666
+ def SetBuildSetting(self, key, value):
1667
+ # TODO(mark): If a list, copy?
1668
+ self._properties["buildSettings"][key] = value
1669
+
1670
+ def AppendBuildSetting(self, key, value):
1671
+ if key not in self._properties["buildSettings"]:
1672
+ self._properties["buildSettings"][key] = []
1673
+ self._properties["buildSettings"][key].append(value)
1674
+
1675
+ def DelBuildSetting(self, key):
1676
+ if key in self._properties["buildSettings"]:
1677
+ del self._properties["buildSettings"][key]
1678
+
1679
+ def SetBaseConfiguration(self, value):
1680
+ self._properties["baseConfigurationReference"] = value
1681
+
1682
+
1683
+ class XCConfigurationList(XCObject):
1684
+ # _configs is the default list of configurations.
1685
+ _configs = [
1686
+ XCBuildConfiguration({"name": "Debug"}),
1687
+ XCBuildConfiguration({"name": "Release"}),
1688
+ ]
1689
+
1690
+ _schema = XCObject._schema.copy()
1691
+ _schema.update(
1692
+ {
1693
+ "buildConfigurations": [1, XCBuildConfiguration, 1, 1, _configs],
1694
+ "defaultConfigurationIsVisible": [0, int, 0, 1, 1],
1695
+ "defaultConfigurationName": [0, str, 0, 1, "Release"],
1696
+ }
1697
+ )
1698
+
1699
+ def Name(self):
1700
+ return (
1701
+ "Build configuration list for "
1702
+ + self.parent.__class__.__name__
1703
+ + ' "'
1704
+ + self.parent.Name()
1705
+ + '"'
1706
+ )
1707
+
1708
+ def ConfigurationNamed(self, name):
1709
+ """Convenience accessor to obtain an XCBuildConfiguration by name."""
1710
+ for configuration in self._properties["buildConfigurations"]:
1711
+ if configuration._properties["name"] == name:
1712
+ return configuration
1713
+
1714
+ raise KeyError(name)
1715
+
1716
+ def DefaultConfiguration(self):
1717
+ """Convenience accessor to obtain the default XCBuildConfiguration."""
1718
+ return self.ConfigurationNamed(self._properties["defaultConfigurationName"])
1719
+
1720
+ def HasBuildSetting(self, key):
1721
+ """Determines the state of a build setting in all XCBuildConfiguration
1722
+ child objects.
1723
+
1724
+ If all child objects have key in their build settings, and the value is the
1725
+ same in all child objects, returns 1.
1726
+
1727
+ If no child objects have the key in their build settings, returns 0.
1728
+
1729
+ If some, but not all, child objects have the key in their build settings,
1730
+ or if any children have different values for the key, returns -1.
1731
+ """
1732
+
1733
+ has = None
1734
+ value = None
1735
+ for configuration in self._properties["buildConfigurations"]:
1736
+ configuration_has = configuration.HasBuildSetting(key)
1737
+ if has is None:
1738
+ has = configuration_has
1739
+ elif has != configuration_has:
1740
+ return -1
1741
+
1742
+ if configuration_has:
1743
+ configuration_value = configuration.GetBuildSetting(key)
1744
+ if value is None:
1745
+ value = configuration_value
1746
+ elif value != configuration_value:
1747
+ return -1
1748
+
1749
+ if not has:
1750
+ return 0
1751
+
1752
+ return 1
1753
+
1754
+ def GetBuildSetting(self, key):
1755
+ """Gets the build setting for key.
1756
+
1757
+ All child XCConfiguration objects must have the same value set for the
1758
+ setting, or a ValueError will be raised.
1759
+ """
1760
+
1761
+ # TODO(mark): This is wrong for build settings that are lists. The list
1762
+ # contents should be compared (and a list copy returned?)
1763
+
1764
+ value = None
1765
+ for configuration in self._properties["buildConfigurations"]:
1766
+ configuration_value = configuration.GetBuildSetting(key)
1767
+ if value is None:
1768
+ value = configuration_value
1769
+ else:
1770
+ if value != configuration_value:
1771
+ raise ValueError("Variant values for " + key)
1772
+
1773
+ return value
1774
+
1775
+ def SetBuildSetting(self, key, value):
1776
+ """Sets the build setting for key to value in all child
1777
+ XCBuildConfiguration objects.
1778
+ """
1779
+
1780
+ for configuration in self._properties["buildConfigurations"]:
1781
+ configuration.SetBuildSetting(key, value)
1782
+
1783
+ def AppendBuildSetting(self, key, value):
1784
+ """Appends value to the build setting for key, which is treated as a list,
1785
+ in all child XCBuildConfiguration objects.
1786
+ """
1787
+
1788
+ for configuration in self._properties["buildConfigurations"]:
1789
+ configuration.AppendBuildSetting(key, value)
1790
+
1791
+ def DelBuildSetting(self, key):
1792
+ """Deletes the build setting key from all child XCBuildConfiguration
1793
+ objects.
1794
+ """
1795
+
1796
+ for configuration in self._properties["buildConfigurations"]:
1797
+ configuration.DelBuildSetting(key)
1798
+
1799
+ def SetBaseConfiguration(self, value):
1800
+ """Sets the build configuration in all child XCBuildConfiguration objects.
1801
+ """
1802
+
1803
+ for configuration in self._properties["buildConfigurations"]:
1804
+ configuration.SetBaseConfiguration(value)
1805
+
1806
+
1807
+ class PBXBuildFile(XCObject):
1808
+ _schema = XCObject._schema.copy()
1809
+ _schema.update(
1810
+ {
1811
+ "fileRef": [0, XCFileLikeElement, 0, 1],
1812
+ "settings": [0, str, 0, 0], # hack, it's a dict
1813
+ }
1814
+ )
1815
+
1816
+ # Weird output rules for PBXBuildFile.
1817
+ _should_print_single_line = True
1818
+ _encode_transforms = XCObject._alternate_encode_transforms
1819
+
1820
+ def Name(self):
1821
+ # Example: "main.cc in Sources"
1822
+ return self._properties["fileRef"].Name() + " in " + self.parent.Name()
1823
+
1824
+ def Hashables(self):
1825
+ # super
1826
+ hashables = XCObject.Hashables(self)
1827
+
1828
+ # It is not sufficient to just rely on Name() to get the
1829
+ # XCFileLikeElement's name, because that is not a complete pathname.
1830
+ # PathHashables returns hashables unique enough that no two
1831
+ # PBXBuildFiles should wind up with the same set of hashables, unless
1832
+ # someone adds the same file multiple times to the same target. That
1833
+ # would be considered invalid anyway.
1834
+ hashables.extend(self._properties["fileRef"].PathHashables())
1835
+
1836
+ return hashables
1837
+
1838
+
1839
+ class XCBuildPhase(XCObject):
1840
+ """Abstract base for build phase classes. Not represented in a project
1841
+ file.
1842
+
1843
+ Attributes:
1844
+ _files_by_path: A dict mapping each path of a child in the files list by
1845
+ path (keys) to the corresponding PBXBuildFile children (values).
1846
+ _files_by_xcfilelikeelement: A dict mapping each XCFileLikeElement (keys)
1847
+ to the corresponding PBXBuildFile children (values).
1848
+ """
1849
+
1850
+ # TODO(mark): Some build phase types, like PBXShellScriptBuildPhase, don't
1851
+ # actually have a "files" list. XCBuildPhase should not have "files" but
1852
+ # another abstract subclass of it should provide this, and concrete build
1853
+ # phase types that do have "files" lists should be derived from that new
1854
+ # abstract subclass. XCBuildPhase should only provide buildActionMask and
1855
+ # runOnlyForDeploymentPostprocessing, and not files or the various
1856
+ # file-related methods and attributes.
1857
+
1858
+ _schema = XCObject._schema.copy()
1859
+ _schema.update(
1860
+ {
1861
+ "buildActionMask": [0, int, 0, 1, 0x7FFFFFFF],
1862
+ "files": [1, PBXBuildFile, 1, 1, []],
1863
+ "runOnlyForDeploymentPostprocessing": [0, int, 0, 1, 0],
1864
+ }
1865
+ )
1866
+
1867
+ def __init__(self, properties=None, id=None, parent=None):
1868
+ # super
1869
+ XCObject.__init__(self, properties, id, parent)
1870
+
1871
+ self._files_by_path = {}
1872
+ self._files_by_xcfilelikeelement = {}
1873
+ for pbxbuildfile in self._properties.get("files", []):
1874
+ self._AddBuildFileToDicts(pbxbuildfile)
1875
+
1876
+ def FileGroup(self, path):
1877
+ # Subclasses must override this by returning a two-element tuple. The
1878
+ # first item in the tuple should be the PBXGroup to which "path" should be
1879
+ # added, either as a child or deeper descendant. The second item should
1880
+ # be a boolean indicating whether files should be added into hierarchical
1881
+ # groups or one single flat group.
1882
+ raise NotImplementedError(self.__class__.__name__ + " must implement FileGroup")
1883
+
1884
+ def _AddPathToDict(self, pbxbuildfile, path):
1885
+ """Adds path to the dict tracking paths belonging to this build phase.
1886
+
1887
+ If the path is already a member of this build phase, raises an exception.
1888
+ """
1889
+
1890
+ if path in self._files_by_path:
1891
+ raise ValueError("Found multiple build files with path " + path)
1892
+ self._files_by_path[path] = pbxbuildfile
1893
+
1894
+ def _AddBuildFileToDicts(self, pbxbuildfile, path=None):
1895
+ """Maintains the _files_by_path and _files_by_xcfilelikeelement dicts.
1896
+
1897
+ If path is specified, then it is the path that is being added to the
1898
+ phase, and pbxbuildfile must contain either a PBXFileReference directly
1899
+ referencing that path, or it must contain a PBXVariantGroup that itself
1900
+ contains a PBXFileReference referencing the path.
1901
+
1902
+ If path is not specified, either the PBXFileReference's path or the paths
1903
+ of all children of the PBXVariantGroup are taken as being added to the
1904
+ phase.
1905
+
1906
+ If the path is already present in the phase, raises an exception.
1907
+
1908
+ If the PBXFileReference or PBXVariantGroup referenced by pbxbuildfile
1909
+ are already present in the phase, referenced by a different PBXBuildFile
1910
+ object, raises an exception. This does not raise an exception when
1911
+ a PBXFileReference or PBXVariantGroup reappear and are referenced by the
1912
+ same PBXBuildFile that has already introduced them, because in the case
1913
+ of PBXVariantGroup objects, they may correspond to multiple paths that are
1914
+ not all added simultaneously. When this situation occurs, the path needs
1915
+ to be added to _files_by_path, but nothing needs to change in
1916
+ _files_by_xcfilelikeelement, and the caller should have avoided adding
1917
+ the PBXBuildFile if it is already present in the list of children.
1918
+ """
1919
+
1920
+ xcfilelikeelement = pbxbuildfile._properties["fileRef"]
1921
+
1922
+ paths = []
1923
+ if path is not None:
1924
+ # It's best when the caller provides the path.
1925
+ if isinstance(xcfilelikeelement, PBXVariantGroup):
1926
+ paths.append(path)
1927
+ else:
1928
+ # If the caller didn't provide a path, there can be either multiple
1929
+ # paths (PBXVariantGroup) or one.
1930
+ if isinstance(xcfilelikeelement, PBXVariantGroup):
1931
+ for variant in xcfilelikeelement._properties["children"]:
1932
+ paths.append(variant.FullPath())
1933
+ else:
1934
+ paths.append(xcfilelikeelement.FullPath())
1935
+
1936
+ # Add the paths first, because if something's going to raise, the
1937
+ # messages provided by _AddPathToDict are more useful owing to its
1938
+ # having access to a real pathname and not just an object's Name().
1939
+ for a_path in paths:
1940
+ self._AddPathToDict(pbxbuildfile, a_path)
1941
+
1942
+ # If another PBXBuildFile references this XCFileLikeElement, there's a
1943
+ # problem.
1944
+ if (
1945
+ xcfilelikeelement in self._files_by_xcfilelikeelement
1946
+ and self._files_by_xcfilelikeelement[xcfilelikeelement] != pbxbuildfile
1947
+ ):
1948
+ raise ValueError(
1949
+ "Found multiple build files for " + xcfilelikeelement.Name()
1950
+ )
1951
+ self._files_by_xcfilelikeelement[xcfilelikeelement] = pbxbuildfile
1952
+
1953
+ def AppendBuildFile(self, pbxbuildfile, path=None):
1954
+ # Callers should use this instead of calling
1955
+ # AppendProperty('files', pbxbuildfile) directly because this function
1956
+ # maintains the object's dicts. Better yet, callers can just call AddFile
1957
+ # with a pathname and not worry about building their own PBXBuildFile
1958
+ # objects.
1959
+ self.AppendProperty("files", pbxbuildfile)
1960
+ self._AddBuildFileToDicts(pbxbuildfile, path)
1961
+
1962
+ def AddFile(self, path, settings=None):
1963
+ (file_group, hierarchical) = self.FileGroup(path)
1964
+ file_ref = file_group.AddOrGetFileByPath(path, hierarchical)
1965
+
1966
+ if file_ref in self._files_by_xcfilelikeelement and isinstance(
1967
+ file_ref, PBXVariantGroup
1968
+ ):
1969
+ # There's already a PBXBuildFile in this phase corresponding to the
1970
+ # PBXVariantGroup. path just provides a new variant that belongs to
1971
+ # the group. Add the path to the dict.
1972
+ pbxbuildfile = self._files_by_xcfilelikeelement[file_ref]
1973
+ self._AddBuildFileToDicts(pbxbuildfile, path)
1974
+ else:
1975
+ # Add a new PBXBuildFile to get file_ref into the phase.
1976
+ if settings is None:
1977
+ pbxbuildfile = PBXBuildFile({"fileRef": file_ref})
1978
+ else:
1979
+ pbxbuildfile = PBXBuildFile({"fileRef": file_ref, "settings": settings})
1980
+ self.AppendBuildFile(pbxbuildfile, path)
1981
+
1982
+
1983
+ class PBXHeadersBuildPhase(XCBuildPhase):
1984
+ # No additions to the schema relative to XCBuildPhase.
1985
+
1986
+ def Name(self):
1987
+ return "Headers"
1988
+
1989
+ def FileGroup(self, path):
1990
+ return self.PBXProjectAncestor().RootGroupForPath(path)
1991
+
1992
+
1993
+ class PBXResourcesBuildPhase(XCBuildPhase):
1994
+ # No additions to the schema relative to XCBuildPhase.
1995
+
1996
+ def Name(self):
1997
+ return "Resources"
1998
+
1999
+ def FileGroup(self, path):
2000
+ return self.PBXProjectAncestor().RootGroupForPath(path)
2001
+
2002
+
2003
+ class PBXSourcesBuildPhase(XCBuildPhase):
2004
+ # No additions to the schema relative to XCBuildPhase.
2005
+
2006
+ def Name(self):
2007
+ return "Sources"
2008
+
2009
+ def FileGroup(self, path):
2010
+ return self.PBXProjectAncestor().RootGroupForPath(path)
2011
+
2012
+
2013
+ class PBXFrameworksBuildPhase(XCBuildPhase):
2014
+ # No additions to the schema relative to XCBuildPhase.
2015
+
2016
+ def Name(self):
2017
+ return "Frameworks"
2018
+
2019
+ def FileGroup(self, path):
2020
+ (root, ext) = posixpath.splitext(path)
2021
+ if ext != "":
2022
+ ext = ext[1:].lower()
2023
+ if ext == "o":
2024
+ # .o files are added to Xcode Frameworks phases, but conceptually aren't
2025
+ # frameworks, they're more like sources or intermediates. Redirect them
2026
+ # to show up in one of those other groups.
2027
+ return self.PBXProjectAncestor().RootGroupForPath(path)
2028
+ else:
2029
+ return (self.PBXProjectAncestor().FrameworksGroup(), False)
2030
+
2031
+
2032
+ class PBXShellScriptBuildPhase(XCBuildPhase):
2033
+ _schema = XCBuildPhase._schema.copy()
2034
+ _schema.update(
2035
+ {
2036
+ "inputPaths": [1, str, 0, 1, []],
2037
+ "name": [0, str, 0, 0],
2038
+ "outputPaths": [1, str, 0, 1, []],
2039
+ "shellPath": [0, str, 0, 1, "/bin/sh"],
2040
+ "shellScript": [0, str, 0, 1],
2041
+ "showEnvVarsInLog": [0, int, 0, 0],
2042
+ }
2043
+ )
2044
+
2045
+ def Name(self):
2046
+ if "name" in self._properties:
2047
+ return self._properties["name"]
2048
+
2049
+ return "ShellScript"
2050
+
2051
+
2052
+ class PBXCopyFilesBuildPhase(XCBuildPhase):
2053
+ _schema = XCBuildPhase._schema.copy()
2054
+ _schema.update(
2055
+ {
2056
+ "dstPath": [0, str, 0, 1],
2057
+ "dstSubfolderSpec": [0, int, 0, 1],
2058
+ "name": [0, str, 0, 0],
2059
+ }
2060
+ )
2061
+
2062
+ # path_tree_re matches "$(DIR)/path", "$(DIR)/$(DIR2)/path" or just "$(DIR)".
2063
+ # Match group 1 is "DIR", group 3 is "path" or "$(DIR2") or "$(DIR2)/path"
2064
+ # or None. If group 3 is "path", group 4 will be None otherwise group 4 is
2065
+ # "DIR2" and group 6 is "path".
2066
+ path_tree_re = re.compile(r"^\$\((.*?)\)(/(\$\((.*?)\)(/(.*)|)|(.*)|)|)$")
2067
+
2068
+ # path_tree_{first,second}_to_subfolder map names of Xcode variables to the
2069
+ # associated dstSubfolderSpec property value used in a PBXCopyFilesBuildPhase
2070
+ # object.
2071
+ path_tree_first_to_subfolder = {
2072
+ # Types that can be chosen via the Xcode UI.
2073
+ "BUILT_PRODUCTS_DIR": 16, # Products Directory
2074
+ "BUILT_FRAMEWORKS_DIR": 10, # Not an official Xcode macro.
2075
+ # Existed before support for the
2076
+ # names below was added. Maps to
2077
+ # "Frameworks".
2078
+ }
2079
+
2080
+ path_tree_second_to_subfolder = {
2081
+ "WRAPPER_NAME": 1, # Wrapper
2082
+ # Although Xcode's friendly name is "Executables", the destination
2083
+ # is demonstrably the value of the build setting
2084
+ # EXECUTABLE_FOLDER_PATH not EXECUTABLES_FOLDER_PATH.
2085
+ "EXECUTABLE_FOLDER_PATH": 6, # Executables.
2086
+ "UNLOCALIZED_RESOURCES_FOLDER_PATH": 7, # Resources
2087
+ "JAVA_FOLDER_PATH": 15, # Java Resources
2088
+ "FRAMEWORKS_FOLDER_PATH": 10, # Frameworks
2089
+ "SHARED_FRAMEWORKS_FOLDER_PATH": 11, # Shared Frameworks
2090
+ "SHARED_SUPPORT_FOLDER_PATH": 12, # Shared Support
2091
+ "PLUGINS_FOLDER_PATH": 13, # PlugIns
2092
+ # For XPC Services, Xcode sets both dstPath and dstSubfolderSpec.
2093
+ # Note that it re-uses the BUILT_PRODUCTS_DIR value for
2094
+ # dstSubfolderSpec. dstPath is set below.
2095
+ "XPCSERVICES_FOLDER_PATH": 16, # XPC Services.
2096
+ }
2097
+
2098
+ def Name(self):
2099
+ if "name" in self._properties:
2100
+ return self._properties["name"]
2101
+
2102
+ return "CopyFiles"
2103
+
2104
+ def FileGroup(self, path):
2105
+ return self.PBXProjectAncestor().RootGroupForPath(path)
2106
+
2107
+ def SetDestination(self, path):
2108
+ """Set the dstSubfolderSpec and dstPath properties from path.
2109
+
2110
+ path may be specified in the same notation used for XCHierarchicalElements,
2111
+ specifically, "$(DIR)/path".
2112
+ """
2113
+
2114
+ path_tree_match = self.path_tree_re.search(path)
2115
+ if path_tree_match:
2116
+ path_tree = path_tree_match.group(1)
2117
+ if path_tree in self.path_tree_first_to_subfolder:
2118
+ subfolder = self.path_tree_first_to_subfolder[path_tree]
2119
+ relative_path = path_tree_match.group(3)
2120
+ if relative_path is None:
2121
+ relative_path = ""
2122
+
2123
+ if subfolder == 16 and path_tree_match.group(4) is not None:
2124
+ # BUILT_PRODUCTS_DIR (16) is the first element in a path whose
2125
+ # second element is possibly one of the variable names in
2126
+ # path_tree_second_to_subfolder. Xcode sets the values of all these
2127
+ # variables to relative paths so .gyp files must prefix them with
2128
+ # BUILT_PRODUCTS_DIR, e.g.
2129
+ # $(BUILT_PRODUCTS_DIR)/$(PLUGINS_FOLDER_PATH). Then
2130
+ # xcode_emulation.py can export these variables with the same values
2131
+ # as Xcode yet make & ninja files can determine the absolute path
2132
+ # to the target. Xcode uses the dstSubfolderSpec value set here
2133
+ # to determine the full path.
2134
+ #
2135
+ # An alternative of xcode_emulation.py setting the values to
2136
+ # absolute paths when exporting these variables has been
2137
+ # ruled out because then the values would be different
2138
+ # depending on the build tool.
2139
+ #
2140
+ # Another alternative is to invent new names for the variables used
2141
+ # to match to the subfolder indices in the second table. .gyp files
2142
+ # then will not need to prepend $(BUILT_PRODUCTS_DIR) because
2143
+ # xcode_emulation.py can set the values of those variables to
2144
+ # the absolute paths when exporting. This is possibly the thinking
2145
+ # behind BUILT_FRAMEWORKS_DIR which is used in exactly this manner.
2146
+ #
2147
+ # Requiring prepending BUILT_PRODUCTS_DIR has been chosen because
2148
+ # this same way could be used to specify destinations in .gyp files
2149
+ # that pre-date this addition to GYP. However they would only work
2150
+ # with the Xcode generator.
2151
+ # The previous version of xcode_emulation.py
2152
+ # does not export these variables. Such files will get the benefit
2153
+ # of the Xcode UI showing the proper destination name simply by
2154
+ # regenerating the projects with this version of GYP.
2155
+ path_tree = path_tree_match.group(4)
2156
+ relative_path = path_tree_match.group(6)
2157
+ separator = "/"
2158
+
2159
+ if path_tree in self.path_tree_second_to_subfolder:
2160
+ subfolder = self.path_tree_second_to_subfolder[path_tree]
2161
+ if relative_path is None:
2162
+ relative_path = ""
2163
+ separator = ""
2164
+ if path_tree == "XPCSERVICES_FOLDER_PATH":
2165
+ relative_path = (
2166
+ "$(CONTENTS_FOLDER_PATH)/XPCServices"
2167
+ + separator
2168
+ + relative_path
2169
+ )
2170
+ else:
2171
+ # subfolder = 16 from above
2172
+ # The second element of the path is an unrecognized variable.
2173
+ # Include it and any remaining elements in relative_path.
2174
+ relative_path = path_tree_match.group(3)
2175
+
2176
+ else:
2177
+ # The path starts with an unrecognized Xcode variable
2178
+ # name like $(SRCROOT). Xcode will still handle this
2179
+ # as an "absolute path" that starts with the variable.
2180
+ subfolder = 0
2181
+ relative_path = path
2182
+ elif path.startswith("/"):
2183
+ # Special case. Absolute paths are in dstSubfolderSpec 0.
2184
+ subfolder = 0
2185
+ relative_path = path[1:]
2186
+ else:
2187
+ raise ValueError(
2188
+ f"Can't use path {path} in a {self.__class__.__name__}"
2189
+ )
2190
+
2191
+ self._properties["dstPath"] = relative_path
2192
+ self._properties["dstSubfolderSpec"] = subfolder
2193
+
2194
+
2195
+ class PBXBuildRule(XCObject):
2196
+ _schema = XCObject._schema.copy()
2197
+ _schema.update(
2198
+ {
2199
+ "compilerSpec": [0, str, 0, 1],
2200
+ "filePatterns": [0, str, 0, 0],
2201
+ "fileType": [0, str, 0, 1],
2202
+ "isEditable": [0, int, 0, 1, 1],
2203
+ "outputFiles": [1, str, 0, 1, []],
2204
+ "script": [0, str, 0, 0],
2205
+ }
2206
+ )
2207
+
2208
+ def Name(self):
2209
+ # Not very inspired, but it's what Xcode uses.
2210
+ return self.__class__.__name__
2211
+
2212
+ def Hashables(self):
2213
+ # super
2214
+ hashables = XCObject.Hashables(self)
2215
+
2216
+ # Use the hashables of the weak objects that this object refers to.
2217
+ hashables.append(self._properties["fileType"])
2218
+ if "filePatterns" in self._properties:
2219
+ hashables.append(self._properties["filePatterns"])
2220
+ return hashables
2221
+
2222
+
2223
+ class PBXContainerItemProxy(XCObject):
2224
+ # When referencing an item in this project file, containerPortal is the
2225
+ # PBXProject root object of this project file. When referencing an item in
2226
+ # another project file, containerPortal is a PBXFileReference identifying
2227
+ # the other project file.
2228
+ #
2229
+ # When serving as a proxy to an XCTarget (in this project file or another),
2230
+ # proxyType is 1. When serving as a proxy to a PBXFileReference (in another
2231
+ # project file), proxyType is 2. Type 2 is used for references to the
2232
+ # producs of the other project file's targets.
2233
+ #
2234
+ # Xcode is weird about remoteGlobalIDString. Usually, it's printed without
2235
+ # a comment, indicating that it's tracked internally simply as a string, but
2236
+ # sometimes it's printed with a comment (usually when the object is initially
2237
+ # created), indicating that it's tracked as a project file object at least
2238
+ # sometimes. This module always tracks it as an object, but contains a hack
2239
+ # to prevent it from printing the comment in the project file output. See
2240
+ # _XCKVPrint.
2241
+ _schema = XCObject._schema.copy()
2242
+ _schema.update(
2243
+ {
2244
+ "containerPortal": [0, XCContainerPortal, 0, 1],
2245
+ "proxyType": [0, int, 0, 1],
2246
+ "remoteGlobalIDString": [0, XCRemoteObject, 0, 1],
2247
+ "remoteInfo": [0, str, 0, 1],
2248
+ }
2249
+ )
2250
+
2251
+ def __repr__(self):
2252
+ props = self._properties
2253
+ name = "{}.gyp:{}".format(props["containerPortal"].Name(), props["remoteInfo"])
2254
+ return f"<{self.__class__.__name__} {name!r} at 0x{id(self):x}>"
2255
+
2256
+ def Name(self):
2257
+ # Admittedly not the best name, but it's what Xcode uses.
2258
+ return self.__class__.__name__
2259
+
2260
+ def Hashables(self):
2261
+ # super
2262
+ hashables = XCObject.Hashables(self)
2263
+
2264
+ # Use the hashables of the weak objects that this object refers to.
2265
+ hashables.extend(self._properties["containerPortal"].Hashables())
2266
+ hashables.extend(self._properties["remoteGlobalIDString"].Hashables())
2267
+ return hashables
2268
+
2269
+
2270
+ class PBXTargetDependency(XCObject):
2271
+ # The "target" property accepts an XCTarget object, and obviously not
2272
+ # NoneType. But XCTarget is defined below, so it can't be put into the
2273
+ # schema yet. The definition of PBXTargetDependency can't be moved below
2274
+ # XCTarget because XCTarget's own schema references PBXTargetDependency.
2275
+ # Python doesn't deal well with this circular relationship, and doesn't have
2276
+ # a real way to do forward declarations. To work around, the type of
2277
+ # the "target" property is reset below, after XCTarget is defined.
2278
+ #
2279
+ # At least one of "name" and "target" is required.
2280
+ _schema = XCObject._schema.copy()
2281
+ _schema.update(
2282
+ {
2283
+ "name": [0, str, 0, 0],
2284
+ "target": [0, None.__class__, 0, 0],
2285
+ "targetProxy": [0, PBXContainerItemProxy, 1, 1],
2286
+ }
2287
+ )
2288
+
2289
+ def __repr__(self):
2290
+ name = self._properties.get("name") or self._properties["target"].Name()
2291
+ return f"<{self.__class__.__name__} {name!r} at 0x{id(self):x}>"
2292
+
2293
+ def Name(self):
2294
+ # Admittedly not the best name, but it's what Xcode uses.
2295
+ return self.__class__.__name__
2296
+
2297
+ def Hashables(self):
2298
+ # super
2299
+ hashables = XCObject.Hashables(self)
2300
+
2301
+ # Use the hashables of the weak objects that this object refers to.
2302
+ hashables.extend(self._properties["targetProxy"].Hashables())
2303
+ return hashables
2304
+
2305
+
2306
+ class PBXReferenceProxy(XCFileLikeElement):
2307
+ _schema = XCFileLikeElement._schema.copy()
2308
+ _schema.update(
2309
+ {
2310
+ "fileType": [0, str, 0, 1],
2311
+ "path": [0, str, 0, 1],
2312
+ "remoteRef": [0, PBXContainerItemProxy, 1, 1],
2313
+ }
2314
+ )
2315
+
2316
+
2317
+ class XCTarget(XCRemoteObject):
2318
+ # An XCTarget is really just an XCObject, the XCRemoteObject thing is just
2319
+ # to allow PBXProject to be used in the remoteGlobalIDString property of
2320
+ # PBXContainerItemProxy.
2321
+ #
2322
+ # Setting a "name" property at instantiation may also affect "productName",
2323
+ # which may in turn affect the "PRODUCT_NAME" build setting in children of
2324
+ # "buildConfigurationList". See __init__ below.
2325
+ _schema = XCRemoteObject._schema.copy()
2326
+ _schema.update(
2327
+ {
2328
+ "buildConfigurationList": [
2329
+ 0,
2330
+ XCConfigurationList,
2331
+ 1,
2332
+ 1,
2333
+ XCConfigurationList(),
2334
+ ],
2335
+ "buildPhases": [1, XCBuildPhase, 1, 1, []],
2336
+ "dependencies": [1, PBXTargetDependency, 1, 1, []],
2337
+ "name": [0, str, 0, 1],
2338
+ "productName": [0, str, 0, 1],
2339
+ }
2340
+ )
2341
+
2342
+ def __init__(
2343
+ self,
2344
+ properties=None,
2345
+ id=None,
2346
+ parent=None,
2347
+ force_outdir=None,
2348
+ force_prefix=None,
2349
+ force_extension=None,
2350
+ ):
2351
+ # super
2352
+ XCRemoteObject.__init__(self, properties, id, parent)
2353
+
2354
+ # Set up additional defaults not expressed in the schema. If a "name"
2355
+ # property was supplied, set "productName" if it is not present. Also set
2356
+ # the "PRODUCT_NAME" build setting in each configuration, but only if
2357
+ # the setting is not present in any build configuration.
2358
+ if "name" in self._properties and "productName" not in self._properties:
2359
+ self.SetProperty("productName", self._properties["name"])
2360
+
2361
+ if "productName" in self._properties:
2362
+ if "buildConfigurationList" in self._properties:
2363
+ configs = self._properties["buildConfigurationList"]
2364
+ if configs.HasBuildSetting("PRODUCT_NAME") == 0:
2365
+ configs.SetBuildSetting(
2366
+ "PRODUCT_NAME", self._properties["productName"]
2367
+ )
2368
+
2369
+ def AddDependency(self, other):
2370
+ pbxproject = self.PBXProjectAncestor()
2371
+ other_pbxproject = other.PBXProjectAncestor()
2372
+ if pbxproject == other_pbxproject:
2373
+ # Add a dependency to another target in the same project file.
2374
+ container = PBXContainerItemProxy(
2375
+ {
2376
+ "containerPortal": pbxproject,
2377
+ "proxyType": 1,
2378
+ "remoteGlobalIDString": other,
2379
+ "remoteInfo": other.Name(),
2380
+ }
2381
+ )
2382
+ dependency = PBXTargetDependency(
2383
+ {"target": other, "targetProxy": container}
2384
+ )
2385
+ self.AppendProperty("dependencies", dependency)
2386
+ else:
2387
+ # Add a dependency to a target in a different project file.
2388
+ other_project_ref = pbxproject.AddOrGetProjectReference(other_pbxproject)[1]
2389
+ container = PBXContainerItemProxy(
2390
+ {
2391
+ "containerPortal": other_project_ref,
2392
+ "proxyType": 1,
2393
+ "remoteGlobalIDString": other,
2394
+ "remoteInfo": other.Name(),
2395
+ }
2396
+ )
2397
+ dependency = PBXTargetDependency(
2398
+ {"name": other.Name(), "targetProxy": container}
2399
+ )
2400
+ self.AppendProperty("dependencies", dependency)
2401
+
2402
+ # Proxy all of these through to the build configuration list.
2403
+
2404
+ def ConfigurationNamed(self, name):
2405
+ return self._properties["buildConfigurationList"].ConfigurationNamed(name)
2406
+
2407
+ def DefaultConfiguration(self):
2408
+ return self._properties["buildConfigurationList"].DefaultConfiguration()
2409
+
2410
+ def HasBuildSetting(self, key):
2411
+ return self._properties["buildConfigurationList"].HasBuildSetting(key)
2412
+
2413
+ def GetBuildSetting(self, key):
2414
+ return self._properties["buildConfigurationList"].GetBuildSetting(key)
2415
+
2416
+ def SetBuildSetting(self, key, value):
2417
+ return self._properties["buildConfigurationList"].SetBuildSetting(key, value)
2418
+
2419
+ def AppendBuildSetting(self, key, value):
2420
+ return self._properties["buildConfigurationList"].AppendBuildSetting(key, value)
2421
+
2422
+ def DelBuildSetting(self, key):
2423
+ return self._properties["buildConfigurationList"].DelBuildSetting(key)
2424
+
2425
+
2426
+ # Redefine the type of the "target" property. See PBXTargetDependency._schema
2427
+ # above.
2428
+ PBXTargetDependency._schema["target"][1] = XCTarget
2429
+
2430
+
2431
+ class PBXNativeTarget(XCTarget):
2432
+ # buildPhases is overridden in the schema to be able to set defaults.
2433
+ #
2434
+ # NOTE: Contrary to most objects, it is advisable to set parent when
2435
+ # constructing PBXNativeTarget. A parent of an XCTarget must be a PBXProject
2436
+ # object. A parent reference is required for a PBXNativeTarget during
2437
+ # construction to be able to set up the target defaults for productReference,
2438
+ # because a PBXBuildFile object must be created for the target and it must
2439
+ # be added to the PBXProject's mainGroup hierarchy.
2440
+ _schema = XCTarget._schema.copy()
2441
+ _schema.update(
2442
+ {
2443
+ "buildPhases": [
2444
+ 1,
2445
+ XCBuildPhase,
2446
+ 1,
2447
+ 1,
2448
+ [PBXSourcesBuildPhase(), PBXFrameworksBuildPhase()],
2449
+ ],
2450
+ "buildRules": [1, PBXBuildRule, 1, 1, []],
2451
+ "productReference": [0, PBXFileReference, 0, 1],
2452
+ "productType": [0, str, 0, 1],
2453
+ }
2454
+ )
2455
+
2456
+ # Mapping from Xcode product-types to settings. The settings are:
2457
+ # filetype : used for explicitFileType in the project file
2458
+ # prefix : the prefix for the file name
2459
+ # suffix : the suffix for the file name
2460
+ _product_filetypes = {
2461
+ "com.apple.product-type.application": ["wrapper.application", "", ".app"],
2462
+ "com.apple.product-type.application.watchapp": [
2463
+ "wrapper.application",
2464
+ "",
2465
+ ".app",
2466
+ ],
2467
+ "com.apple.product-type.watchkit-extension": [
2468
+ "wrapper.app-extension",
2469
+ "",
2470
+ ".appex",
2471
+ ],
2472
+ "com.apple.product-type.app-extension": ["wrapper.app-extension", "", ".appex"],
2473
+ "com.apple.product-type.bundle": ["wrapper.cfbundle", "", ".bundle"],
2474
+ "com.apple.product-type.framework": ["wrapper.framework", "", ".framework"],
2475
+ "com.apple.product-type.library.dynamic": [
2476
+ "compiled.mach-o.dylib",
2477
+ "lib",
2478
+ ".dylib",
2479
+ ],
2480
+ "com.apple.product-type.library.static": ["archive.ar", "lib", ".a"],
2481
+ "com.apple.product-type.tool": ["compiled.mach-o.executable", "", ""],
2482
+ "com.apple.product-type.bundle.unit-test": ["wrapper.cfbundle", "", ".xctest"],
2483
+ "com.apple.product-type.bundle.ui-testing": ["wrapper.cfbundle", "", ".xctest"],
2484
+ "com.googlecode.gyp.xcode.bundle": ["compiled.mach-o.dylib", "", ".so"],
2485
+ "com.apple.product-type.kernel-extension": ["wrapper.kext", "", ".kext"],
2486
+ }
2487
+
2488
+ def __init__(
2489
+ self,
2490
+ properties=None,
2491
+ id=None,
2492
+ parent=None,
2493
+ force_outdir=None,
2494
+ force_prefix=None,
2495
+ force_extension=None,
2496
+ ):
2497
+ # super
2498
+ XCTarget.__init__(self, properties, id, parent)
2499
+
2500
+ if (
2501
+ "productName" in self._properties
2502
+ and "productType" in self._properties
2503
+ and "productReference" not in self._properties
2504
+ and self._properties["productType"] in self._product_filetypes
2505
+ ):
2506
+ products_group = None
2507
+ pbxproject = self.PBXProjectAncestor()
2508
+ if pbxproject is not None:
2509
+ products_group = pbxproject.ProductsGroup()
2510
+
2511
+ if products_group is not None:
2512
+ (filetype, prefix, suffix) = self._product_filetypes[
2513
+ self._properties["productType"]
2514
+ ]
2515
+ # Xcode does not have a distinct type for loadable modules that are
2516
+ # pure BSD targets (not in a bundle wrapper). GYP allows such modules
2517
+ # to be specified by setting a target type to loadable_module without
2518
+ # having mac_bundle set. These are mapped to the pseudo-product type
2519
+ # com.googlecode.gyp.xcode.bundle.
2520
+ #
2521
+ # By picking up this special type and converting it to a dynamic
2522
+ # library (com.apple.product-type.library.dynamic) with fix-ups,
2523
+ # single-file loadable modules can be produced.
2524
+ #
2525
+ # MACH_O_TYPE is changed to mh_bundle to produce the proper file type
2526
+ # (as opposed to mh_dylib). In order for linking to succeed,
2527
+ # DYLIB_CURRENT_VERSION and DYLIB_COMPATIBILITY_VERSION must be
2528
+ # cleared. They are meaningless for type mh_bundle.
2529
+ #
2530
+ # Finally, the .so extension is forcibly applied over the default
2531
+ # (.dylib), unless another forced extension is already selected.
2532
+ # .dylib is plainly wrong, and .bundle is used by loadable_modules in
2533
+ # bundle wrappers (com.apple.product-type.bundle). .so seems an odd
2534
+ # choice because it's used as the extension on many other systems that
2535
+ # don't distinguish between linkable shared libraries and non-linkable
2536
+ # loadable modules, but there's precedent: Python loadable modules on
2537
+ # Mac OS X use an .so extension.
2538
+ if self._properties["productType"] == "com.googlecode.gyp.xcode.bundle":
2539
+ self._properties[
2540
+ "productType"
2541
+ ] = "com.apple.product-type.library.dynamic"
2542
+ self.SetBuildSetting("MACH_O_TYPE", "mh_bundle")
2543
+ self.SetBuildSetting("DYLIB_CURRENT_VERSION", "")
2544
+ self.SetBuildSetting("DYLIB_COMPATIBILITY_VERSION", "")
2545
+ if force_extension is None:
2546
+ force_extension = suffix[1:]
2547
+
2548
+ if (
2549
+ self._properties["productType"] in {
2550
+ "com.apple.product-type-bundle.unit.test",
2551
+ "com.apple.product-type-bundle.ui-testing"
2552
+ }
2553
+ ) and force_extension is None:
2554
+ force_extension = suffix[1:]
2555
+
2556
+ if force_extension is not None:
2557
+ # If it's a wrapper (bundle), set WRAPPER_EXTENSION.
2558
+ # Extension override.
2559
+ suffix = "." + force_extension
2560
+ if filetype.startswith("wrapper."):
2561
+ self.SetBuildSetting("WRAPPER_EXTENSION", force_extension)
2562
+ else:
2563
+ self.SetBuildSetting("EXECUTABLE_EXTENSION", force_extension)
2564
+
2565
+ if filetype.startswith("compiled.mach-o.executable"):
2566
+ product_name = self._properties["productName"]
2567
+ product_name += suffix
2568
+ suffix = ""
2569
+ self.SetProperty("productName", product_name)
2570
+ self.SetBuildSetting("PRODUCT_NAME", product_name)
2571
+
2572
+ # Xcode handles most prefixes based on the target type, however there
2573
+ # are exceptions. If a "BSD Dynamic Library" target is added in the
2574
+ # Xcode UI, Xcode sets EXECUTABLE_PREFIX. This check duplicates that
2575
+ # behavior.
2576
+ if force_prefix is not None:
2577
+ prefix = force_prefix
2578
+ if filetype.startswith("wrapper."):
2579
+ self.SetBuildSetting("WRAPPER_PREFIX", prefix)
2580
+ else:
2581
+ self.SetBuildSetting("EXECUTABLE_PREFIX", prefix)
2582
+
2583
+ if force_outdir is not None:
2584
+ self.SetBuildSetting("TARGET_BUILD_DIR", force_outdir)
2585
+
2586
+ # TODO(tvl): Remove the below hack.
2587
+ # http://code.google.com/p/gyp/issues/detail?id=122
2588
+
2589
+ # Some targets include the prefix in the target_name. These targets
2590
+ # really should just add a product_name setting that doesn't include
2591
+ # the prefix. For example:
2592
+ # target_name = 'libevent', product_name = 'event'
2593
+ # This check cleans up for them.
2594
+ product_name = self._properties["productName"]
2595
+ prefix_len = len(prefix)
2596
+ if prefix_len and (product_name[:prefix_len] == prefix):
2597
+ product_name = product_name[prefix_len:]
2598
+ self.SetProperty("productName", product_name)
2599
+ self.SetBuildSetting("PRODUCT_NAME", product_name)
2600
+
2601
+ ref_props = {
2602
+ "explicitFileType": filetype,
2603
+ "includeInIndex": 0,
2604
+ "path": prefix + product_name + suffix,
2605
+ "sourceTree": "BUILT_PRODUCTS_DIR",
2606
+ }
2607
+ file_ref = PBXFileReference(ref_props)
2608
+ products_group.AppendChild(file_ref)
2609
+ self.SetProperty("productReference", file_ref)
2610
+
2611
+ def GetBuildPhaseByType(self, type):
2612
+ if "buildPhases" not in self._properties:
2613
+ return None
2614
+
2615
+ the_phase = None
2616
+ for phase in self._properties["buildPhases"]:
2617
+ if isinstance(phase, type):
2618
+ # Some phases may be present in multiples in a well-formed project file,
2619
+ # but phases like PBXSourcesBuildPhase may only be present singly, and
2620
+ # this function is intended as an aid to GetBuildPhaseByType. Loop
2621
+ # over the entire list of phases and assert if more than one of the
2622
+ # desired type is found.
2623
+ assert the_phase is None
2624
+ the_phase = phase
2625
+
2626
+ return the_phase
2627
+
2628
+ def HeadersPhase(self):
2629
+ headers_phase = self.GetBuildPhaseByType(PBXHeadersBuildPhase)
2630
+ if headers_phase is None:
2631
+ headers_phase = PBXHeadersBuildPhase()
2632
+
2633
+ # The headers phase should come before the resources, sources, and
2634
+ # frameworks phases, if any.
2635
+ insert_at = len(self._properties["buildPhases"])
2636
+ for index, phase in enumerate(self._properties["buildPhases"]):
2637
+ if isinstance(
2638
+ phase,
2639
+ (
2640
+ PBXResourcesBuildPhase,
2641
+ PBXSourcesBuildPhase,
2642
+ PBXFrameworksBuildPhase,
2643
+ ),
2644
+ ):
2645
+ insert_at = index
2646
+ break
2647
+
2648
+ self._properties["buildPhases"].insert(insert_at, headers_phase)
2649
+ headers_phase.parent = self
2650
+
2651
+ return headers_phase
2652
+
2653
+ def ResourcesPhase(self):
2654
+ resources_phase = self.GetBuildPhaseByType(PBXResourcesBuildPhase)
2655
+ if resources_phase is None:
2656
+ resources_phase = PBXResourcesBuildPhase()
2657
+
2658
+ # The resources phase should come before the sources and frameworks
2659
+ # phases, if any.
2660
+ insert_at = len(self._properties["buildPhases"])
2661
+ for index, phase in enumerate(self._properties["buildPhases"]):
2662
+ if isinstance(phase, (PBXSourcesBuildPhase, PBXFrameworksBuildPhase)):
2663
+ insert_at = index
2664
+ break
2665
+
2666
+ self._properties["buildPhases"].insert(insert_at, resources_phase)
2667
+ resources_phase.parent = self
2668
+
2669
+ return resources_phase
2670
+
2671
+ def SourcesPhase(self):
2672
+ sources_phase = self.GetBuildPhaseByType(PBXSourcesBuildPhase)
2673
+ if sources_phase is None:
2674
+ sources_phase = PBXSourcesBuildPhase()
2675
+ self.AppendProperty("buildPhases", sources_phase)
2676
+
2677
+ return sources_phase
2678
+
2679
+ def FrameworksPhase(self):
2680
+ frameworks_phase = self.GetBuildPhaseByType(PBXFrameworksBuildPhase)
2681
+ if frameworks_phase is None:
2682
+ frameworks_phase = PBXFrameworksBuildPhase()
2683
+ self.AppendProperty("buildPhases", frameworks_phase)
2684
+
2685
+ return frameworks_phase
2686
+
2687
+ def AddDependency(self, other):
2688
+ # super
2689
+ XCTarget.AddDependency(self, other)
2690
+
2691
+ static_library_type = "com.apple.product-type.library.static"
2692
+ shared_library_type = "com.apple.product-type.library.dynamic"
2693
+ framework_type = "com.apple.product-type.framework"
2694
+ if (
2695
+ isinstance(other, PBXNativeTarget)
2696
+ and "productType" in self._properties
2697
+ and self._properties["productType"] != static_library_type
2698
+ and "productType" in other._properties
2699
+ and (
2700
+ other._properties["productType"] == static_library_type
2701
+ or (
2702
+ (
2703
+ other._properties["productType"] in {
2704
+ shared_library_type,
2705
+ framework_type
2706
+ }
2707
+ )
2708
+ and (
2709
+ (not other.HasBuildSetting("MACH_O_TYPE"))
2710
+ or other.GetBuildSetting("MACH_O_TYPE") != "mh_bundle"
2711
+ )
2712
+ )
2713
+ )
2714
+ ):
2715
+
2716
+ file_ref = other.GetProperty("productReference")
2717
+
2718
+ pbxproject = self.PBXProjectAncestor()
2719
+ other_pbxproject = other.PBXProjectAncestor()
2720
+ if pbxproject != other_pbxproject:
2721
+ other_project_product_group = pbxproject.AddOrGetProjectReference(
2722
+ other_pbxproject
2723
+ )[0]
2724
+ file_ref = other_project_product_group.GetChildByRemoteObject(file_ref)
2725
+
2726
+ self.FrameworksPhase().AppendProperty(
2727
+ "files", PBXBuildFile({"fileRef": file_ref})
2728
+ )
2729
+
2730
+
2731
+ class PBXAggregateTarget(XCTarget):
2732
+ pass
2733
+
2734
+
2735
+ class PBXProject(XCContainerPortal):
2736
+ # A PBXProject is really just an XCObject, the XCContainerPortal thing is
2737
+ # just to allow PBXProject to be used in the containerPortal property of
2738
+ # PBXContainerItemProxy.
2739
+ """
2740
+
2741
+ Attributes:
2742
+ path: "sample.xcodeproj". TODO(mark) Document me!
2743
+ _other_pbxprojects: A dictionary, keyed by other PBXProject objects. Each
2744
+ value is a reference to the dict in the
2745
+ projectReferences list associated with the keyed
2746
+ PBXProject.
2747
+ """
2748
+
2749
+ _schema = XCContainerPortal._schema.copy()
2750
+ _schema.update(
2751
+ {
2752
+ "attributes": [0, dict, 0, 0],
2753
+ "buildConfigurationList": [
2754
+ 0,
2755
+ XCConfigurationList,
2756
+ 1,
2757
+ 1,
2758
+ XCConfigurationList(),
2759
+ ],
2760
+ "compatibilityVersion": [0, str, 0, 1, "Xcode 3.2"],
2761
+ "hasScannedForEncodings": [0, int, 0, 1, 1],
2762
+ "mainGroup": [0, PBXGroup, 1, 1, PBXGroup()],
2763
+ "projectDirPath": [0, str, 0, 1, ""],
2764
+ "projectReferences": [1, dict, 0, 0],
2765
+ "projectRoot": [0, str, 0, 1, ""],
2766
+ "targets": [1, XCTarget, 1, 1, []],
2767
+ }
2768
+ )
2769
+
2770
+ def __init__(self, properties=None, id=None, parent=None, path=None):
2771
+ self.path = path
2772
+ self._other_pbxprojects = {}
2773
+ # super
2774
+ XCContainerPortal.__init__(self, properties, id, parent)
2775
+
2776
+ def Name(self):
2777
+ name = self.path
2778
+ if name[-10:] == ".xcodeproj":
2779
+ name = name[:-10]
2780
+ return posixpath.basename(name)
2781
+
2782
+ def Path(self):
2783
+ return self.path
2784
+
2785
+ def Comment(self):
2786
+ return "Project object"
2787
+
2788
+ def Children(self):
2789
+ # super
2790
+ children = XCContainerPortal.Children(self)
2791
+
2792
+ # Add children that the schema doesn't know about. Maybe there's a more
2793
+ # elegant way around this, but this is the only case where we need to own
2794
+ # objects in a dictionary (that is itself in a list), and three lines for
2795
+ # a one-off isn't that big a deal.
2796
+ if "projectReferences" in self._properties:
2797
+ for reference in self._properties["projectReferences"]:
2798
+ children.append(reference["ProductGroup"])
2799
+
2800
+ return children
2801
+
2802
+ def PBXProjectAncestor(self):
2803
+ return self
2804
+
2805
+ def _GroupByName(self, name):
2806
+ if "mainGroup" not in self._properties:
2807
+ self.SetProperty("mainGroup", PBXGroup())
2808
+
2809
+ main_group = self._properties["mainGroup"]
2810
+ group = main_group.GetChildByName(name)
2811
+ if group is None:
2812
+ group = PBXGroup({"name": name})
2813
+ main_group.AppendChild(group)
2814
+
2815
+ return group
2816
+
2817
+ # SourceGroup and ProductsGroup are created by default in Xcode's own
2818
+ # templates.
2819
+ def SourceGroup(self):
2820
+ return self._GroupByName("Source")
2821
+
2822
+ def ProductsGroup(self):
2823
+ return self._GroupByName("Products")
2824
+
2825
+ # IntermediatesGroup is used to collect source-like files that are generated
2826
+ # by rules or script phases and are placed in intermediate directories such
2827
+ # as DerivedSources.
2828
+ def IntermediatesGroup(self):
2829
+ return self._GroupByName("Intermediates")
2830
+
2831
+ # FrameworksGroup and ProjectsGroup are top-level groups used to collect
2832
+ # frameworks and projects.
2833
+ def FrameworksGroup(self):
2834
+ return self._GroupByName("Frameworks")
2835
+
2836
+ def ProjectsGroup(self):
2837
+ return self._GroupByName("Projects")
2838
+
2839
+ def RootGroupForPath(self, path):
2840
+ """Returns a PBXGroup child of this object to which path should be added.
2841
+
2842
+ This method is intended to choose between SourceGroup and
2843
+ IntermediatesGroup on the basis of whether path is present in a source
2844
+ directory or an intermediates directory. For the purposes of this
2845
+ determination, any path located within a derived file directory such as
2846
+ PROJECT_DERIVED_FILE_DIR is treated as being in an intermediates
2847
+ directory.
2848
+
2849
+ The returned value is a two-element tuple. The first element is the
2850
+ PBXGroup, and the second element specifies whether that group should be
2851
+ organized hierarchically (True) or as a single flat list (False).
2852
+ """
2853
+
2854
+ # TODO(mark): make this a class variable and bind to self on call?
2855
+ # Also, this list is nowhere near exhaustive.
2856
+ # INTERMEDIATE_DIR and SHARED_INTERMEDIATE_DIR are used by
2857
+ # gyp.generator.xcode. There should probably be some way for that module
2858
+ # to push the names in, rather than having to hard-code them here.
2859
+ source_tree_groups = {
2860
+ "DERIVED_FILE_DIR": (self.IntermediatesGroup, True),
2861
+ "INTERMEDIATE_DIR": (self.IntermediatesGroup, True),
2862
+ "PROJECT_DERIVED_FILE_DIR": (self.IntermediatesGroup, True),
2863
+ "SHARED_INTERMEDIATE_DIR": (self.IntermediatesGroup, True),
2864
+ }
2865
+
2866
+ (source_tree, path) = SourceTreeAndPathFromPath(path)
2867
+ if source_tree is not None and source_tree in source_tree_groups:
2868
+ (group_func, hierarchical) = source_tree_groups[source_tree]
2869
+ group = group_func()
2870
+ return (group, hierarchical)
2871
+
2872
+ # TODO(mark): make additional choices based on file extension.
2873
+
2874
+ return (self.SourceGroup(), True)
2875
+
2876
+ def AddOrGetFileInRootGroup(self, path):
2877
+ """Returns a PBXFileReference corresponding to path in the correct group
2878
+ according to RootGroupForPath's heuristics.
2879
+
2880
+ If an existing PBXFileReference for path exists, it will be returned.
2881
+ Otherwise, one will be created and returned.
2882
+ """
2883
+
2884
+ (group, hierarchical) = self.RootGroupForPath(path)
2885
+ return group.AddOrGetFileByPath(path, hierarchical)
2886
+
2887
+ def RootGroupsTakeOverOnlyChildren(self, recurse=False):
2888
+ """Calls TakeOverOnlyChild for all groups in the main group."""
2889
+
2890
+ for group in self._properties["mainGroup"]._properties["children"]:
2891
+ if isinstance(group, PBXGroup):
2892
+ group.TakeOverOnlyChild(recurse)
2893
+
2894
+ def SortGroups(self):
2895
+ # Sort the children of the mainGroup (like "Source" and "Products")
2896
+ # according to their defined order.
2897
+ self._properties["mainGroup"]._properties["children"] = sorted(
2898
+ self._properties["mainGroup"]._properties["children"],
2899
+ key=cmp_to_key(lambda x, y: x.CompareRootGroup(y)),
2900
+ )
2901
+
2902
+ # Sort everything else by putting group before files, and going
2903
+ # alphabetically by name within sections of groups and files. SortGroup
2904
+ # is recursive.
2905
+ for group in self._properties["mainGroup"]._properties["children"]:
2906
+ if not isinstance(group, PBXGroup):
2907
+ continue
2908
+
2909
+ if group.Name() == "Products":
2910
+ # The Products group is a special case. Instead of sorting
2911
+ # alphabetically, sort things in the order of the targets that
2912
+ # produce the products. To do this, just build up a new list of
2913
+ # products based on the targets.
2914
+ products = []
2915
+ for target in self._properties["targets"]:
2916
+ if not isinstance(target, PBXNativeTarget):
2917
+ continue
2918
+ product = target._properties["productReference"]
2919
+ # Make sure that the product is already in the products group.
2920
+ assert product in group._properties["children"]
2921
+ products.append(product)
2922
+
2923
+ # Make sure that this process doesn't miss anything that was already
2924
+ # in the products group.
2925
+ assert len(products) == len(group._properties["children"])
2926
+ group._properties["children"] = products
2927
+ else:
2928
+ group.SortGroup()
2929
+
2930
+ def AddOrGetProjectReference(self, other_pbxproject):
2931
+ """Add a reference to another project file (via PBXProject object) to this
2932
+ one.
2933
+
2934
+ Returns [ProductGroup, ProjectRef]. ProductGroup is a PBXGroup object in
2935
+ this project file that contains a PBXReferenceProxy object for each
2936
+ product of each PBXNativeTarget in the other project file. ProjectRef is
2937
+ a PBXFileReference to the other project file.
2938
+
2939
+ If this project file already references the other project file, the
2940
+ existing ProductGroup and ProjectRef are returned. The ProductGroup will
2941
+ still be updated if necessary.
2942
+ """
2943
+
2944
+ if "projectReferences" not in self._properties:
2945
+ self._properties["projectReferences"] = []
2946
+
2947
+ product_group = None
2948
+ project_ref = None
2949
+
2950
+ if other_pbxproject not in self._other_pbxprojects:
2951
+ # This project file isn't yet linked to the other one. Establish the
2952
+ # link.
2953
+ product_group = PBXGroup({"name": "Products"})
2954
+
2955
+ # ProductGroup is strong.
2956
+ product_group.parent = self
2957
+
2958
+ # There's nothing unique about this PBXGroup, and if left alone, it will
2959
+ # wind up with the same set of hashables as all other PBXGroup objects
2960
+ # owned by the projectReferences list. Add the hashables of the
2961
+ # remote PBXProject that it's related to.
2962
+ product_group._hashables.extend(other_pbxproject.Hashables())
2963
+
2964
+ # The other project reports its path as relative to the same directory
2965
+ # that this project's path is relative to. The other project's path
2966
+ # is not necessarily already relative to this project. Figure out the
2967
+ # pathname that this project needs to use to refer to the other one.
2968
+ this_path = posixpath.dirname(self.Path())
2969
+ projectDirPath = self.GetProperty("projectDirPath")
2970
+ if projectDirPath:
2971
+ if posixpath.isabs(projectDirPath[0]):
2972
+ this_path = projectDirPath
2973
+ else:
2974
+ this_path = posixpath.join(this_path, projectDirPath)
2975
+ other_path = gyp.common.RelativePath(other_pbxproject.Path(), this_path)
2976
+
2977
+ # ProjectRef is weak (it's owned by the mainGroup hierarchy).
2978
+ project_ref = PBXFileReference(
2979
+ {
2980
+ "lastKnownFileType": "wrapper.pb-project",
2981
+ "path": other_path,
2982
+ "sourceTree": "SOURCE_ROOT",
2983
+ }
2984
+ )
2985
+ self.ProjectsGroup().AppendChild(project_ref)
2986
+
2987
+ ref_dict = {"ProductGroup": product_group, "ProjectRef": project_ref}
2988
+ self._other_pbxprojects[other_pbxproject] = ref_dict
2989
+ self.AppendProperty("projectReferences", ref_dict)
2990
+
2991
+ # Xcode seems to sort this list case-insensitively
2992
+ self._properties["projectReferences"] = sorted(
2993
+ self._properties["projectReferences"],
2994
+ key=lambda x: x["ProjectRef"].Name().lower()
2995
+ )
2996
+ else:
2997
+ # The link already exists. Pull out the relevnt data.
2998
+ project_ref_dict = self._other_pbxprojects[other_pbxproject]
2999
+ product_group = project_ref_dict["ProductGroup"]
3000
+ project_ref = project_ref_dict["ProjectRef"]
3001
+
3002
+ self._SetUpProductReferences(other_pbxproject, product_group, project_ref)
3003
+
3004
+ inherit_unique_symroot = self._AllSymrootsUnique(other_pbxproject, False)
3005
+ targets = other_pbxproject.GetProperty("targets")
3006
+ if all(self._AllSymrootsUnique(t, inherit_unique_symroot) for t in targets):
3007
+ dir_path = project_ref._properties["path"]
3008
+ product_group._hashables.extend(dir_path)
3009
+
3010
+ return [product_group, project_ref]
3011
+
3012
+ def _AllSymrootsUnique(self, target, inherit_unique_symroot):
3013
+ # Returns True if all configurations have a unique 'SYMROOT' attribute.
3014
+ # The value of inherit_unique_symroot decides, if a configuration is assumed
3015
+ # to inherit a unique 'SYMROOT' attribute from its parent, if it doesn't
3016
+ # define an explicit value for 'SYMROOT'.
3017
+ symroots = self._DefinedSymroots(target)
3018
+ for s in self._DefinedSymroots(target):
3019
+ if (
3020
+ s is not None
3021
+ and not self._IsUniqueSymrootForTarget(s)
3022
+ or s is None
3023
+ and not inherit_unique_symroot
3024
+ ):
3025
+ return False
3026
+ return True if symroots else inherit_unique_symroot
3027
+
3028
+ def _DefinedSymroots(self, target):
3029
+ # Returns all values for the 'SYMROOT' attribute defined in all
3030
+ # configurations for this target. If any configuration doesn't define the
3031
+ # 'SYMROOT' attribute, None is added to the returned set. If all
3032
+ # configurations don't define the 'SYMROOT' attribute, an empty set is
3033
+ # returned.
3034
+ config_list = target.GetProperty("buildConfigurationList")
3035
+ symroots = set()
3036
+ for config in config_list.GetProperty("buildConfigurations"):
3037
+ setting = config.GetProperty("buildSettings")
3038
+ if "SYMROOT" in setting:
3039
+ symroots.add(setting["SYMROOT"])
3040
+ else:
3041
+ symroots.add(None)
3042
+ if len(symroots) == 1 and None in symroots:
3043
+ return set()
3044
+ return symroots
3045
+
3046
+ def _IsUniqueSymrootForTarget(self, symroot):
3047
+ # This method returns True if all configurations in target contain a
3048
+ # 'SYMROOT' attribute that is unique for the given target. A value is
3049
+ # unique, if the Xcode macro '$SRCROOT' appears in it in any form.
3050
+ uniquifier = ["$SRCROOT", "$(SRCROOT)"]
3051
+ if any(x in symroot for x in uniquifier):
3052
+ return True
3053
+ return False
3054
+
3055
+ def _SetUpProductReferences(self, other_pbxproject, product_group, project_ref):
3056
+ # TODO(mark): This only adds references to products in other_pbxproject
3057
+ # when they don't exist in this pbxproject. Perhaps it should also
3058
+ # remove references from this pbxproject that are no longer present in
3059
+ # other_pbxproject. Perhaps it should update various properties if they
3060
+ # change.
3061
+ for target in other_pbxproject._properties["targets"]:
3062
+ if not isinstance(target, PBXNativeTarget):
3063
+ continue
3064
+
3065
+ other_fileref = target._properties["productReference"]
3066
+ if product_group.GetChildByRemoteObject(other_fileref) is None:
3067
+ # Xcode sets remoteInfo to the name of the target and not the name
3068
+ # of its product, despite this proxy being a reference to the product.
3069
+ container_item = PBXContainerItemProxy(
3070
+ {
3071
+ "containerPortal": project_ref,
3072
+ "proxyType": 2,
3073
+ "remoteGlobalIDString": other_fileref,
3074
+ "remoteInfo": target.Name(),
3075
+ }
3076
+ )
3077
+ # TODO(mark): Does sourceTree get copied straight over from the other
3078
+ # project? Can the other project ever have lastKnownFileType here
3079
+ # instead of explicitFileType? (Use it if so?) Can path ever be
3080
+ # unset? (I don't think so.) Can other_fileref have name set, and
3081
+ # does it impact the PBXReferenceProxy if so? These are the questions
3082
+ # that perhaps will be answered one day.
3083
+ reference_proxy = PBXReferenceProxy(
3084
+ {
3085
+ "fileType": other_fileref._properties["explicitFileType"],
3086
+ "path": other_fileref._properties["path"],
3087
+ "sourceTree": other_fileref._properties["sourceTree"],
3088
+ "remoteRef": container_item,
3089
+ }
3090
+ )
3091
+
3092
+ product_group.AppendChild(reference_proxy)
3093
+
3094
+ def SortRemoteProductReferences(self):
3095
+ # For each remote project file, sort the associated ProductGroup in the
3096
+ # same order that the targets are sorted in the remote project file. This
3097
+ # is the sort order used by Xcode.
3098
+
3099
+ def CompareProducts(x, y, remote_products):
3100
+ # x and y are PBXReferenceProxy objects. Go through their associated
3101
+ # PBXContainerItem to get the remote PBXFileReference, which will be
3102
+ # present in the remote_products list.
3103
+ x_remote = x._properties["remoteRef"]._properties["remoteGlobalIDString"]
3104
+ y_remote = y._properties["remoteRef"]._properties["remoteGlobalIDString"]
3105
+ x_index = remote_products.index(x_remote)
3106
+ y_index = remote_products.index(y_remote)
3107
+
3108
+ # Use the order of each remote PBXFileReference in remote_products to
3109
+ # determine the sort order.
3110
+ return cmp(x_index, y_index)
3111
+
3112
+ for other_pbxproject, ref_dict in self._other_pbxprojects.items():
3113
+ # Build up a list of products in the remote project file, ordered the
3114
+ # same as the targets that produce them.
3115
+ remote_products = []
3116
+ for target in other_pbxproject._properties["targets"]:
3117
+ if not isinstance(target, PBXNativeTarget):
3118
+ continue
3119
+ remote_products.append(target._properties["productReference"])
3120
+
3121
+ # Sort the PBXReferenceProxy children according to the list of remote
3122
+ # products.
3123
+ product_group = ref_dict["ProductGroup"]
3124
+ product_group._properties["children"] = sorted(
3125
+ product_group._properties["children"],
3126
+ key=cmp_to_key(
3127
+ lambda x, y, rp=remote_products: CompareProducts(x, y, rp)),
3128
+ )
3129
+
3130
+
3131
+ class XCProjectFile(XCObject):
3132
+ _schema = XCObject._schema.copy()
3133
+ _schema.update(
3134
+ {
3135
+ "archiveVersion": [0, int, 0, 1, 1],
3136
+ "classes": [0, dict, 0, 1, {}],
3137
+ "objectVersion": [0, int, 0, 1, 46],
3138
+ "rootObject": [0, PBXProject, 1, 1],
3139
+ }
3140
+ )
3141
+
3142
+ def ComputeIDs(self, recursive=True, overwrite=True, hash=None):
3143
+ # Although XCProjectFile is implemented here as an XCObject, it's not a
3144
+ # proper object in the Xcode sense, and it certainly doesn't have its own
3145
+ # ID. Pass through an attempt to update IDs to the real root object.
3146
+ if recursive:
3147
+ self._properties["rootObject"].ComputeIDs(recursive, overwrite, hash)
3148
+
3149
+ def Print(self, file=sys.stdout):
3150
+ self.VerifyHasRequiredProperties()
3151
+
3152
+ # Add the special "objects" property, which will be caught and handled
3153
+ # separately during printing. This structure allows a fairly standard
3154
+ # loop do the normal printing.
3155
+ self._properties["objects"] = {}
3156
+ self._XCPrint(file, 0, "// !$*UTF8*$!\n")
3157
+ if self._should_print_single_line:
3158
+ self._XCPrint(file, 0, "{ ")
3159
+ else:
3160
+ self._XCPrint(file, 0, "{\n")
3161
+ for property, value in sorted(
3162
+ self._properties.items()
3163
+ ):
3164
+ if property == "objects":
3165
+ self._PrintObjects(file)
3166
+ else:
3167
+ self._XCKVPrint(file, 1, property, value)
3168
+ self._XCPrint(file, 0, "}\n")
3169
+ del self._properties["objects"]
3170
+
3171
+ def _PrintObjects(self, file):
3172
+ if self._should_print_single_line:
3173
+ self._XCPrint(file, 0, "objects = {")
3174
+ else:
3175
+ self._XCPrint(file, 1, "objects = {\n")
3176
+
3177
+ objects_by_class = {}
3178
+ for object in self.Descendants():
3179
+ if object == self:
3180
+ continue
3181
+ class_name = object.__class__.__name__
3182
+ if class_name not in objects_by_class:
3183
+ objects_by_class[class_name] = []
3184
+ objects_by_class[class_name].append(object)
3185
+
3186
+ for class_name in sorted(objects_by_class):
3187
+ self._XCPrint(file, 0, "\n")
3188
+ self._XCPrint(file, 0, "/* Begin " + class_name + " section */\n")
3189
+ for object in sorted(
3190
+ objects_by_class[class_name], key=attrgetter("id")
3191
+ ):
3192
+ object.Print(file)
3193
+ self._XCPrint(file, 0, "/* End " + class_name + " section */\n")
3194
+
3195
+ if self._should_print_single_line:
3196
+ self._XCPrint(file, 0, "}; ")
3197
+ else:
3198
+ self._XCPrint(file, 1, "};\n")