relay-os 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (721) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +389 -0
  3. package/backend/hooks/relay-antigravity-stop.js +3 -0
  4. package/backend/hooks/relay-claude-stop.js +3 -0
  5. package/backend/hooks/relay-codex-stop.js +3 -0
  6. package/backend/hooks/relay-copilot-stop.js +3 -0
  7. package/backend/hooks/relay-cursor-stop.js +3 -0
  8. package/backend/hooks/relay-hook-lib.js +170 -0
  9. package/backend/lib/relayAuth.js +41 -0
  10. package/backend/lib/relayCompileIr.js +276 -0
  11. package/backend/lib/relayContext.js +519 -0
  12. package/backend/lib/relayDashboard.js +118 -0
  13. package/backend/lib/relayHooks.js +190 -0
  14. package/backend/lib/relayInstall.js +339 -0
  15. package/backend/lib/relayMeta.js +61 -0
  16. package/backend/lib/relayProjects.js +225 -0
  17. package/backend/lib/relayServe.js +120 -0
  18. package/backend/lib/relayStore.js +173 -0
  19. package/backend/lib/relayUi.js +68 -0
  20. package/backend/lib/timeline.js +101 -0
  21. package/backend/lib/vscdb.js +42 -0
  22. package/backend/lib/vscodeHistory.js +227 -0
  23. package/backend/lib/vscodeWorkspace.js +77 -0
  24. package/backend/mcp/server.js +228 -0
  25. package/backend/node_modules/.bin/mime +16 -0
  26. package/backend/node_modules/.bin/mime.cmd +17 -0
  27. package/backend/node_modules/.bin/mime.ps1 +28 -0
  28. package/backend/node_modules/.package-lock.json +846 -0
  29. package/backend/node_modules/accepts/HISTORY.md +243 -0
  30. package/backend/node_modules/accepts/LICENSE +23 -0
  31. package/backend/node_modules/accepts/README.md +140 -0
  32. package/backend/node_modules/accepts/index.js +238 -0
  33. package/backend/node_modules/accepts/package.json +47 -0
  34. package/backend/node_modules/array-flatten/LICENSE +21 -0
  35. package/backend/node_modules/array-flatten/README.md +43 -0
  36. package/backend/node_modules/array-flatten/array-flatten.js +64 -0
  37. package/backend/node_modules/array-flatten/package.json +39 -0
  38. package/backend/node_modules/body-parser/HISTORY.md +686 -0
  39. package/backend/node_modules/body-parser/LICENSE +23 -0
  40. package/backend/node_modules/body-parser/README.md +476 -0
  41. package/backend/node_modules/body-parser/index.js +156 -0
  42. package/backend/node_modules/body-parser/lib/read.js +205 -0
  43. package/backend/node_modules/body-parser/lib/types/json.js +243 -0
  44. package/backend/node_modules/body-parser/lib/types/raw.js +101 -0
  45. package/backend/node_modules/body-parser/lib/types/text.js +121 -0
  46. package/backend/node_modules/body-parser/lib/types/urlencoded.js +299 -0
  47. package/backend/node_modules/body-parser/package.json +55 -0
  48. package/backend/node_modules/bytes/History.md +97 -0
  49. package/backend/node_modules/bytes/LICENSE +23 -0
  50. package/backend/node_modules/bytes/Readme.md +152 -0
  51. package/backend/node_modules/bytes/index.js +170 -0
  52. package/backend/node_modules/bytes/package.json +42 -0
  53. package/backend/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  54. package/backend/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  55. package/backend/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  56. package/backend/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  57. package/backend/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  58. package/backend/node_modules/call-bind-apply-helpers/README.md +62 -0
  59. package/backend/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  60. package/backend/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  61. package/backend/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  62. package/backend/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  63. package/backend/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  64. package/backend/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  65. package/backend/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  66. package/backend/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  67. package/backend/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  68. package/backend/node_modules/call-bind-apply-helpers/index.js +15 -0
  69. package/backend/node_modules/call-bind-apply-helpers/package.json +85 -0
  70. package/backend/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  71. package/backend/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  72. package/backend/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  73. package/backend/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  74. package/backend/node_modules/call-bound/.eslintrc +13 -0
  75. package/backend/node_modules/call-bound/.github/FUNDING.yml +12 -0
  76. package/backend/node_modules/call-bound/.nycrc +9 -0
  77. package/backend/node_modules/call-bound/CHANGELOG.md +42 -0
  78. package/backend/node_modules/call-bound/LICENSE +21 -0
  79. package/backend/node_modules/call-bound/README.md +53 -0
  80. package/backend/node_modules/call-bound/index.d.ts +94 -0
  81. package/backend/node_modules/call-bound/index.js +19 -0
  82. package/backend/node_modules/call-bound/package.json +99 -0
  83. package/backend/node_modules/call-bound/test/index.js +61 -0
  84. package/backend/node_modules/call-bound/tsconfig.json +10 -0
  85. package/backend/node_modules/content-disposition/HISTORY.md +60 -0
  86. package/backend/node_modules/content-disposition/LICENSE +22 -0
  87. package/backend/node_modules/content-disposition/README.md +142 -0
  88. package/backend/node_modules/content-disposition/index.js +458 -0
  89. package/backend/node_modules/content-disposition/package.json +44 -0
  90. package/backend/node_modules/content-type/HISTORY.md +29 -0
  91. package/backend/node_modules/content-type/LICENSE +22 -0
  92. package/backend/node_modules/content-type/README.md +94 -0
  93. package/backend/node_modules/content-type/index.js +225 -0
  94. package/backend/node_modules/content-type/package.json +42 -0
  95. package/backend/node_modules/cookie/LICENSE +24 -0
  96. package/backend/node_modules/cookie/README.md +317 -0
  97. package/backend/node_modules/cookie/SECURITY.md +25 -0
  98. package/backend/node_modules/cookie/index.js +335 -0
  99. package/backend/node_modules/cookie/package.json +44 -0
  100. package/backend/node_modules/cookie-signature/History.md +42 -0
  101. package/backend/node_modules/cookie-signature/Readme.md +42 -0
  102. package/backend/node_modules/cookie-signature/index.js +51 -0
  103. package/backend/node_modules/cookie-signature/package.json +18 -0
  104. package/backend/node_modules/cors/LICENSE +22 -0
  105. package/backend/node_modules/cors/README.md +277 -0
  106. package/backend/node_modules/cors/lib/index.js +238 -0
  107. package/backend/node_modules/cors/package.json +42 -0
  108. package/backend/node_modules/debug/.coveralls.yml +1 -0
  109. package/backend/node_modules/debug/.eslintrc +11 -0
  110. package/backend/node_modules/debug/.travis.yml +14 -0
  111. package/backend/node_modules/debug/CHANGELOG.md +362 -0
  112. package/backend/node_modules/debug/LICENSE +19 -0
  113. package/backend/node_modules/debug/Makefile +50 -0
  114. package/backend/node_modules/debug/README.md +312 -0
  115. package/backend/node_modules/debug/component.json +19 -0
  116. package/backend/node_modules/debug/karma.conf.js +70 -0
  117. package/backend/node_modules/debug/node.js +1 -0
  118. package/backend/node_modules/debug/package.json +49 -0
  119. package/backend/node_modules/debug/src/browser.js +185 -0
  120. package/backend/node_modules/debug/src/debug.js +202 -0
  121. package/backend/node_modules/debug/src/index.js +10 -0
  122. package/backend/node_modules/debug/src/inspector-log.js +15 -0
  123. package/backend/node_modules/debug/src/node.js +248 -0
  124. package/backend/node_modules/depd/History.md +103 -0
  125. package/backend/node_modules/depd/LICENSE +22 -0
  126. package/backend/node_modules/depd/Readme.md +280 -0
  127. package/backend/node_modules/depd/index.js +538 -0
  128. package/backend/node_modules/depd/lib/browser/index.js +77 -0
  129. package/backend/node_modules/depd/package.json +45 -0
  130. package/backend/node_modules/destroy/LICENSE +23 -0
  131. package/backend/node_modules/destroy/README.md +63 -0
  132. package/backend/node_modules/destroy/index.js +209 -0
  133. package/backend/node_modules/destroy/package.json +48 -0
  134. package/backend/node_modules/dunder-proto/.eslintrc +5 -0
  135. package/backend/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  136. package/backend/node_modules/dunder-proto/.nycrc +13 -0
  137. package/backend/node_modules/dunder-proto/CHANGELOG.md +24 -0
  138. package/backend/node_modules/dunder-proto/LICENSE +21 -0
  139. package/backend/node_modules/dunder-proto/README.md +54 -0
  140. package/backend/node_modules/dunder-proto/get.d.ts +5 -0
  141. package/backend/node_modules/dunder-proto/get.js +30 -0
  142. package/backend/node_modules/dunder-proto/package.json +76 -0
  143. package/backend/node_modules/dunder-proto/set.d.ts +5 -0
  144. package/backend/node_modules/dunder-proto/set.js +35 -0
  145. package/backend/node_modules/dunder-proto/test/get.js +34 -0
  146. package/backend/node_modules/dunder-proto/test/index.js +4 -0
  147. package/backend/node_modules/dunder-proto/test/set.js +50 -0
  148. package/backend/node_modules/dunder-proto/tsconfig.json +9 -0
  149. package/backend/node_modules/ee-first/LICENSE +22 -0
  150. package/backend/node_modules/ee-first/README.md +80 -0
  151. package/backend/node_modules/ee-first/index.js +95 -0
  152. package/backend/node_modules/ee-first/package.json +29 -0
  153. package/backend/node_modules/encodeurl/LICENSE +22 -0
  154. package/backend/node_modules/encodeurl/README.md +109 -0
  155. package/backend/node_modules/encodeurl/index.js +60 -0
  156. package/backend/node_modules/encodeurl/package.json +40 -0
  157. package/backend/node_modules/es-define-property/.eslintrc +13 -0
  158. package/backend/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  159. package/backend/node_modules/es-define-property/.nycrc +9 -0
  160. package/backend/node_modules/es-define-property/CHANGELOG.md +29 -0
  161. package/backend/node_modules/es-define-property/LICENSE +21 -0
  162. package/backend/node_modules/es-define-property/README.md +49 -0
  163. package/backend/node_modules/es-define-property/index.d.ts +3 -0
  164. package/backend/node_modules/es-define-property/index.js +14 -0
  165. package/backend/node_modules/es-define-property/package.json +81 -0
  166. package/backend/node_modules/es-define-property/test/index.js +56 -0
  167. package/backend/node_modules/es-define-property/tsconfig.json +10 -0
  168. package/backend/node_modules/es-errors/.eslintrc +5 -0
  169. package/backend/node_modules/es-errors/.github/FUNDING.yml +12 -0
  170. package/backend/node_modules/es-errors/CHANGELOG.md +40 -0
  171. package/backend/node_modules/es-errors/LICENSE +21 -0
  172. package/backend/node_modules/es-errors/README.md +55 -0
  173. package/backend/node_modules/es-errors/eval.d.ts +3 -0
  174. package/backend/node_modules/es-errors/eval.js +4 -0
  175. package/backend/node_modules/es-errors/index.d.ts +3 -0
  176. package/backend/node_modules/es-errors/index.js +4 -0
  177. package/backend/node_modules/es-errors/package.json +80 -0
  178. package/backend/node_modules/es-errors/range.d.ts +3 -0
  179. package/backend/node_modules/es-errors/range.js +4 -0
  180. package/backend/node_modules/es-errors/ref.d.ts +3 -0
  181. package/backend/node_modules/es-errors/ref.js +4 -0
  182. package/backend/node_modules/es-errors/syntax.d.ts +3 -0
  183. package/backend/node_modules/es-errors/syntax.js +4 -0
  184. package/backend/node_modules/es-errors/test/index.js +19 -0
  185. package/backend/node_modules/es-errors/tsconfig.json +49 -0
  186. package/backend/node_modules/es-errors/type.d.ts +3 -0
  187. package/backend/node_modules/es-errors/type.js +4 -0
  188. package/backend/node_modules/es-errors/uri.d.ts +3 -0
  189. package/backend/node_modules/es-errors/uri.js +4 -0
  190. package/backend/node_modules/es-object-atoms/.eslintrc +16 -0
  191. package/backend/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  192. package/backend/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  193. package/backend/node_modules/es-object-atoms/LICENSE +21 -0
  194. package/backend/node_modules/es-object-atoms/README.md +63 -0
  195. package/backend/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  196. package/backend/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  197. package/backend/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  198. package/backend/node_modules/es-object-atoms/ToObject.js +10 -0
  199. package/backend/node_modules/es-object-atoms/index.d.ts +3 -0
  200. package/backend/node_modules/es-object-atoms/index.js +4 -0
  201. package/backend/node_modules/es-object-atoms/isObject.d.ts +3 -0
  202. package/backend/node_modules/es-object-atoms/isObject.js +6 -0
  203. package/backend/node_modules/es-object-atoms/package.json +79 -0
  204. package/backend/node_modules/es-object-atoms/test/index.js +38 -0
  205. package/backend/node_modules/es-object-atoms/tsconfig.json +7 -0
  206. package/backend/node_modules/escape-html/LICENSE +24 -0
  207. package/backend/node_modules/escape-html/Readme.md +43 -0
  208. package/backend/node_modules/escape-html/index.js +78 -0
  209. package/backend/node_modules/escape-html/package.json +24 -0
  210. package/backend/node_modules/etag/HISTORY.md +83 -0
  211. package/backend/node_modules/etag/LICENSE +22 -0
  212. package/backend/node_modules/etag/README.md +159 -0
  213. package/backend/node_modules/etag/index.js +131 -0
  214. package/backend/node_modules/etag/package.json +47 -0
  215. package/backend/node_modules/express/History.md +3676 -0
  216. package/backend/node_modules/express/LICENSE +24 -0
  217. package/backend/node_modules/express/Readme.md +260 -0
  218. package/backend/node_modules/express/index.js +11 -0
  219. package/backend/node_modules/express/lib/application.js +661 -0
  220. package/backend/node_modules/express/lib/express.js +116 -0
  221. package/backend/node_modules/express/lib/middleware/init.js +43 -0
  222. package/backend/node_modules/express/lib/middleware/query.js +47 -0
  223. package/backend/node_modules/express/lib/request.js +525 -0
  224. package/backend/node_modules/express/lib/response.js +1179 -0
  225. package/backend/node_modules/express/lib/router/index.js +673 -0
  226. package/backend/node_modules/express/lib/router/layer.js +181 -0
  227. package/backend/node_modules/express/lib/router/route.js +230 -0
  228. package/backend/node_modules/express/lib/utils.js +304 -0
  229. package/backend/node_modules/express/lib/view.js +182 -0
  230. package/backend/node_modules/express/package.json +102 -0
  231. package/backend/node_modules/finalhandler/HISTORY.md +216 -0
  232. package/backend/node_modules/finalhandler/LICENSE +22 -0
  233. package/backend/node_modules/finalhandler/README.md +147 -0
  234. package/backend/node_modules/finalhandler/SECURITY.md +25 -0
  235. package/backend/node_modules/finalhandler/index.js +341 -0
  236. package/backend/node_modules/finalhandler/package.json +47 -0
  237. package/backend/node_modules/forwarded/HISTORY.md +21 -0
  238. package/backend/node_modules/forwarded/LICENSE +22 -0
  239. package/backend/node_modules/forwarded/README.md +57 -0
  240. package/backend/node_modules/forwarded/index.js +90 -0
  241. package/backend/node_modules/forwarded/package.json +45 -0
  242. package/backend/node_modules/fresh/HISTORY.md +70 -0
  243. package/backend/node_modules/fresh/LICENSE +23 -0
  244. package/backend/node_modules/fresh/README.md +119 -0
  245. package/backend/node_modules/fresh/index.js +137 -0
  246. package/backend/node_modules/fresh/package.json +46 -0
  247. package/backend/node_modules/function-bind/.eslintrc +21 -0
  248. package/backend/node_modules/function-bind/.github/FUNDING.yml +12 -0
  249. package/backend/node_modules/function-bind/.github/SECURITY.md +3 -0
  250. package/backend/node_modules/function-bind/.nycrc +13 -0
  251. package/backend/node_modules/function-bind/CHANGELOG.md +136 -0
  252. package/backend/node_modules/function-bind/LICENSE +20 -0
  253. package/backend/node_modules/function-bind/README.md +46 -0
  254. package/backend/node_modules/function-bind/implementation.js +84 -0
  255. package/backend/node_modules/function-bind/index.js +5 -0
  256. package/backend/node_modules/function-bind/package.json +87 -0
  257. package/backend/node_modules/function-bind/test/.eslintrc +9 -0
  258. package/backend/node_modules/function-bind/test/index.js +252 -0
  259. package/backend/node_modules/get-intrinsic/.eslintrc +42 -0
  260. package/backend/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  261. package/backend/node_modules/get-intrinsic/.nycrc +9 -0
  262. package/backend/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  263. package/backend/node_modules/get-intrinsic/LICENSE +21 -0
  264. package/backend/node_modules/get-intrinsic/README.md +71 -0
  265. package/backend/node_modules/get-intrinsic/index.js +378 -0
  266. package/backend/node_modules/get-intrinsic/package.json +97 -0
  267. package/backend/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  268. package/backend/node_modules/get-proto/.eslintrc +10 -0
  269. package/backend/node_modules/get-proto/.github/FUNDING.yml +12 -0
  270. package/backend/node_modules/get-proto/.nycrc +9 -0
  271. package/backend/node_modules/get-proto/CHANGELOG.md +21 -0
  272. package/backend/node_modules/get-proto/LICENSE +21 -0
  273. package/backend/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  274. package/backend/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  275. package/backend/node_modules/get-proto/README.md +50 -0
  276. package/backend/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  277. package/backend/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  278. package/backend/node_modules/get-proto/index.d.ts +5 -0
  279. package/backend/node_modules/get-proto/index.js +27 -0
  280. package/backend/node_modules/get-proto/package.json +81 -0
  281. package/backend/node_modules/get-proto/test/index.js +68 -0
  282. package/backend/node_modules/get-proto/tsconfig.json +9 -0
  283. package/backend/node_modules/gopd/.eslintrc +16 -0
  284. package/backend/node_modules/gopd/.github/FUNDING.yml +12 -0
  285. package/backend/node_modules/gopd/CHANGELOG.md +45 -0
  286. package/backend/node_modules/gopd/LICENSE +21 -0
  287. package/backend/node_modules/gopd/README.md +40 -0
  288. package/backend/node_modules/gopd/gOPD.d.ts +1 -0
  289. package/backend/node_modules/gopd/gOPD.js +4 -0
  290. package/backend/node_modules/gopd/index.d.ts +5 -0
  291. package/backend/node_modules/gopd/index.js +15 -0
  292. package/backend/node_modules/gopd/package.json +77 -0
  293. package/backend/node_modules/gopd/test/index.js +36 -0
  294. package/backend/node_modules/gopd/tsconfig.json +9 -0
  295. package/backend/node_modules/has-symbols/.eslintrc +11 -0
  296. package/backend/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  297. package/backend/node_modules/has-symbols/.nycrc +9 -0
  298. package/backend/node_modules/has-symbols/CHANGELOG.md +91 -0
  299. package/backend/node_modules/has-symbols/LICENSE +21 -0
  300. package/backend/node_modules/has-symbols/README.md +46 -0
  301. package/backend/node_modules/has-symbols/index.d.ts +3 -0
  302. package/backend/node_modules/has-symbols/index.js +14 -0
  303. package/backend/node_modules/has-symbols/package.json +111 -0
  304. package/backend/node_modules/has-symbols/shams.d.ts +3 -0
  305. package/backend/node_modules/has-symbols/shams.js +45 -0
  306. package/backend/node_modules/has-symbols/test/index.js +22 -0
  307. package/backend/node_modules/has-symbols/test/shams/core-js.js +29 -0
  308. package/backend/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  309. package/backend/node_modules/has-symbols/test/tests.js +58 -0
  310. package/backend/node_modules/has-symbols/tsconfig.json +10 -0
  311. package/backend/node_modules/hasown/.github/FUNDING.yml +12 -0
  312. package/backend/node_modules/hasown/.nycrc +13 -0
  313. package/backend/node_modules/hasown/CHANGELOG.md +58 -0
  314. package/backend/node_modules/hasown/LICENSE +21 -0
  315. package/backend/node_modules/hasown/README.md +40 -0
  316. package/backend/node_modules/hasown/eslint.config.mjs +6 -0
  317. package/backend/node_modules/hasown/index.d.ts +3 -0
  318. package/backend/node_modules/hasown/index.js +8 -0
  319. package/backend/node_modules/hasown/package.json +91 -0
  320. package/backend/node_modules/hasown/tsconfig.json +6 -0
  321. package/backend/node_modules/http-errors/HISTORY.md +186 -0
  322. package/backend/node_modules/http-errors/LICENSE +23 -0
  323. package/backend/node_modules/http-errors/README.md +169 -0
  324. package/backend/node_modules/http-errors/index.js +290 -0
  325. package/backend/node_modules/http-errors/package.json +54 -0
  326. package/backend/node_modules/iconv-lite/Changelog.md +162 -0
  327. package/backend/node_modules/iconv-lite/LICENSE +21 -0
  328. package/backend/node_modules/iconv-lite/README.md +156 -0
  329. package/backend/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  330. package/backend/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  331. package/backend/node_modules/iconv-lite/encodings/index.js +22 -0
  332. package/backend/node_modules/iconv-lite/encodings/internal.js +188 -0
  333. package/backend/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  334. package/backend/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  335. package/backend/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  336. package/backend/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  337. package/backend/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  338. package/backend/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  339. package/backend/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  340. package/backend/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  341. package/backend/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  342. package/backend/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  343. package/backend/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  344. package/backend/node_modules/iconv-lite/encodings/utf16.js +177 -0
  345. package/backend/node_modules/iconv-lite/encodings/utf7.js +290 -0
  346. package/backend/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  347. package/backend/node_modules/iconv-lite/lib/extend-node.js +217 -0
  348. package/backend/node_modules/iconv-lite/lib/index.d.ts +24 -0
  349. package/backend/node_modules/iconv-lite/lib/index.js +153 -0
  350. package/backend/node_modules/iconv-lite/lib/streams.js +121 -0
  351. package/backend/node_modules/iconv-lite/package.json +46 -0
  352. package/backend/node_modules/inherits/LICENSE +16 -0
  353. package/backend/node_modules/inherits/README.md +42 -0
  354. package/backend/node_modules/inherits/inherits.js +9 -0
  355. package/backend/node_modules/inherits/inherits_browser.js +27 -0
  356. package/backend/node_modules/inherits/package.json +29 -0
  357. package/backend/node_modules/ipaddr.js/LICENSE +19 -0
  358. package/backend/node_modules/ipaddr.js/README.md +233 -0
  359. package/backend/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  360. package/backend/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  361. package/backend/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  362. package/backend/node_modules/ipaddr.js/package.json +35 -0
  363. package/backend/node_modules/math-intrinsics/.eslintrc +16 -0
  364. package/backend/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  365. package/backend/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  366. package/backend/node_modules/math-intrinsics/LICENSE +21 -0
  367. package/backend/node_modules/math-intrinsics/README.md +50 -0
  368. package/backend/node_modules/math-intrinsics/abs.d.ts +1 -0
  369. package/backend/node_modules/math-intrinsics/abs.js +4 -0
  370. package/backend/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  371. package/backend/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  372. package/backend/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  373. package/backend/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  374. package/backend/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  375. package/backend/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  376. package/backend/node_modules/math-intrinsics/floor.d.ts +1 -0
  377. package/backend/node_modules/math-intrinsics/floor.js +4 -0
  378. package/backend/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  379. package/backend/node_modules/math-intrinsics/isFinite.js +12 -0
  380. package/backend/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  381. package/backend/node_modules/math-intrinsics/isInteger.js +16 -0
  382. package/backend/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  383. package/backend/node_modules/math-intrinsics/isNaN.js +6 -0
  384. package/backend/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  385. package/backend/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  386. package/backend/node_modules/math-intrinsics/max.d.ts +1 -0
  387. package/backend/node_modules/math-intrinsics/max.js +4 -0
  388. package/backend/node_modules/math-intrinsics/min.d.ts +1 -0
  389. package/backend/node_modules/math-intrinsics/min.js +4 -0
  390. package/backend/node_modules/math-intrinsics/mod.d.ts +3 -0
  391. package/backend/node_modules/math-intrinsics/mod.js +9 -0
  392. package/backend/node_modules/math-intrinsics/package.json +86 -0
  393. package/backend/node_modules/math-intrinsics/pow.d.ts +1 -0
  394. package/backend/node_modules/math-intrinsics/pow.js +4 -0
  395. package/backend/node_modules/math-intrinsics/round.d.ts +1 -0
  396. package/backend/node_modules/math-intrinsics/round.js +4 -0
  397. package/backend/node_modules/math-intrinsics/sign.d.ts +3 -0
  398. package/backend/node_modules/math-intrinsics/sign.js +11 -0
  399. package/backend/node_modules/math-intrinsics/test/index.js +192 -0
  400. package/backend/node_modules/math-intrinsics/tsconfig.json +3 -0
  401. package/backend/node_modules/media-typer/HISTORY.md +22 -0
  402. package/backend/node_modules/media-typer/LICENSE +22 -0
  403. package/backend/node_modules/media-typer/README.md +81 -0
  404. package/backend/node_modules/media-typer/index.js +270 -0
  405. package/backend/node_modules/media-typer/package.json +26 -0
  406. package/backend/node_modules/merge-descriptors/HISTORY.md +21 -0
  407. package/backend/node_modules/merge-descriptors/LICENSE +23 -0
  408. package/backend/node_modules/merge-descriptors/README.md +49 -0
  409. package/backend/node_modules/merge-descriptors/index.js +60 -0
  410. package/backend/node_modules/merge-descriptors/package.json +39 -0
  411. package/backend/node_modules/methods/HISTORY.md +29 -0
  412. package/backend/node_modules/methods/LICENSE +24 -0
  413. package/backend/node_modules/methods/README.md +51 -0
  414. package/backend/node_modules/methods/index.js +69 -0
  415. package/backend/node_modules/methods/package.json +36 -0
  416. package/backend/node_modules/mime/CHANGELOG.md +164 -0
  417. package/backend/node_modules/mime/LICENSE +21 -0
  418. package/backend/node_modules/mime/README.md +90 -0
  419. package/backend/node_modules/mime/cli.js +8 -0
  420. package/backend/node_modules/mime/mime.js +108 -0
  421. package/backend/node_modules/mime/package.json +44 -0
  422. package/backend/node_modules/mime/src/build.js +53 -0
  423. package/backend/node_modules/mime/src/test.js +60 -0
  424. package/backend/node_modules/mime/types.json +1 -0
  425. package/backend/node_modules/mime-db/HISTORY.md +507 -0
  426. package/backend/node_modules/mime-db/LICENSE +23 -0
  427. package/backend/node_modules/mime-db/README.md +100 -0
  428. package/backend/node_modules/mime-db/db.json +8519 -0
  429. package/backend/node_modules/mime-db/index.js +12 -0
  430. package/backend/node_modules/mime-db/package.json +60 -0
  431. package/backend/node_modules/mime-types/HISTORY.md +397 -0
  432. package/backend/node_modules/mime-types/LICENSE +23 -0
  433. package/backend/node_modules/mime-types/README.md +113 -0
  434. package/backend/node_modules/mime-types/index.js +188 -0
  435. package/backend/node_modules/mime-types/package.json +44 -0
  436. package/backend/node_modules/ms/index.js +152 -0
  437. package/backend/node_modules/ms/license.md +21 -0
  438. package/backend/node_modules/ms/package.json +37 -0
  439. package/backend/node_modules/ms/readme.md +51 -0
  440. package/backend/node_modules/negotiator/HISTORY.md +108 -0
  441. package/backend/node_modules/negotiator/LICENSE +24 -0
  442. package/backend/node_modules/negotiator/README.md +203 -0
  443. package/backend/node_modules/negotiator/index.js +82 -0
  444. package/backend/node_modules/negotiator/lib/charset.js +169 -0
  445. package/backend/node_modules/negotiator/lib/encoding.js +184 -0
  446. package/backend/node_modules/negotiator/lib/language.js +179 -0
  447. package/backend/node_modules/negotiator/lib/mediaType.js +294 -0
  448. package/backend/node_modules/negotiator/package.json +42 -0
  449. package/backend/node_modules/object-assign/index.js +90 -0
  450. package/backend/node_modules/object-assign/license +21 -0
  451. package/backend/node_modules/object-assign/package.json +42 -0
  452. package/backend/node_modules/object-assign/readme.md +61 -0
  453. package/backend/node_modules/object-inspect/.eslintrc +53 -0
  454. package/backend/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  455. package/backend/node_modules/object-inspect/.nycrc +13 -0
  456. package/backend/node_modules/object-inspect/CHANGELOG.md +424 -0
  457. package/backend/node_modules/object-inspect/LICENSE +21 -0
  458. package/backend/node_modules/object-inspect/example/all.js +23 -0
  459. package/backend/node_modules/object-inspect/example/circular.js +6 -0
  460. package/backend/node_modules/object-inspect/example/fn.js +5 -0
  461. package/backend/node_modules/object-inspect/example/inspect.js +10 -0
  462. package/backend/node_modules/object-inspect/index.js +544 -0
  463. package/backend/node_modules/object-inspect/package-support.json +20 -0
  464. package/backend/node_modules/object-inspect/package.json +105 -0
  465. package/backend/node_modules/object-inspect/readme.markdown +84 -0
  466. package/backend/node_modules/object-inspect/test/bigint.js +58 -0
  467. package/backend/node_modules/object-inspect/test/browser/dom.js +15 -0
  468. package/backend/node_modules/object-inspect/test/circular.js +16 -0
  469. package/backend/node_modules/object-inspect/test/deep.js +12 -0
  470. package/backend/node_modules/object-inspect/test/element.js +53 -0
  471. package/backend/node_modules/object-inspect/test/err.js +48 -0
  472. package/backend/node_modules/object-inspect/test/fakes.js +29 -0
  473. package/backend/node_modules/object-inspect/test/fn.js +76 -0
  474. package/backend/node_modules/object-inspect/test/global.js +17 -0
  475. package/backend/node_modules/object-inspect/test/has.js +15 -0
  476. package/backend/node_modules/object-inspect/test/holes.js +15 -0
  477. package/backend/node_modules/object-inspect/test/indent-option.js +271 -0
  478. package/backend/node_modules/object-inspect/test/inspect.js +139 -0
  479. package/backend/node_modules/object-inspect/test/lowbyte.js +12 -0
  480. package/backend/node_modules/object-inspect/test/number.js +58 -0
  481. package/backend/node_modules/object-inspect/test/quoteStyle.js +26 -0
  482. package/backend/node_modules/object-inspect/test/toStringTag.js +40 -0
  483. package/backend/node_modules/object-inspect/test/undef.js +12 -0
  484. package/backend/node_modules/object-inspect/test/values.js +261 -0
  485. package/backend/node_modules/object-inspect/test-core-js.js +26 -0
  486. package/backend/node_modules/object-inspect/util.inspect.js +1 -0
  487. package/backend/node_modules/on-finished/HISTORY.md +98 -0
  488. package/backend/node_modules/on-finished/LICENSE +23 -0
  489. package/backend/node_modules/on-finished/README.md +162 -0
  490. package/backend/node_modules/on-finished/index.js +234 -0
  491. package/backend/node_modules/on-finished/package.json +39 -0
  492. package/backend/node_modules/parseurl/HISTORY.md +58 -0
  493. package/backend/node_modules/parseurl/LICENSE +24 -0
  494. package/backend/node_modules/parseurl/README.md +133 -0
  495. package/backend/node_modules/parseurl/index.js +158 -0
  496. package/backend/node_modules/parseurl/package.json +40 -0
  497. package/backend/node_modules/path-to-regexp/LICENSE +21 -0
  498. package/backend/node_modules/path-to-regexp/Readme.md +35 -0
  499. package/backend/node_modules/path-to-regexp/index.js +158 -0
  500. package/backend/node_modules/path-to-regexp/package.json +30 -0
  501. package/backend/node_modules/proxy-addr/HISTORY.md +161 -0
  502. package/backend/node_modules/proxy-addr/LICENSE +22 -0
  503. package/backend/node_modules/proxy-addr/README.md +139 -0
  504. package/backend/node_modules/proxy-addr/index.js +327 -0
  505. package/backend/node_modules/proxy-addr/package.json +47 -0
  506. package/backend/node_modules/qs/.editorconfig +46 -0
  507. package/backend/node_modules/qs/.github/FUNDING.yml +12 -0
  508. package/backend/node_modules/qs/.github/SECURITY.md +11 -0
  509. package/backend/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  510. package/backend/node_modules/qs/.nycrc +13 -0
  511. package/backend/node_modules/qs/CHANGELOG.md +822 -0
  512. package/backend/node_modules/qs/LICENSE.md +29 -0
  513. package/backend/node_modules/qs/README.md +758 -0
  514. package/backend/node_modules/qs/dist/qs.js +141 -0
  515. package/backend/node_modules/qs/eslint.config.mjs +57 -0
  516. package/backend/node_modules/qs/lib/formats.js +23 -0
  517. package/backend/node_modules/qs/lib/index.js +11 -0
  518. package/backend/node_modules/qs/lib/parse.js +403 -0
  519. package/backend/node_modules/qs/lib/stringify.js +363 -0
  520. package/backend/node_modules/qs/lib/utils.js +342 -0
  521. package/backend/node_modules/qs/package.json +94 -0
  522. package/backend/node_modules/qs/test/empty-keys-cases.js +267 -0
  523. package/backend/node_modules/qs/test/parse.js +1703 -0
  524. package/backend/node_modules/qs/test/stringify.js +1448 -0
  525. package/backend/node_modules/qs/test/utils.js +432 -0
  526. package/backend/node_modules/range-parser/HISTORY.md +56 -0
  527. package/backend/node_modules/range-parser/LICENSE +23 -0
  528. package/backend/node_modules/range-parser/README.md +84 -0
  529. package/backend/node_modules/range-parser/index.js +162 -0
  530. package/backend/node_modules/range-parser/package.json +44 -0
  531. package/backend/node_modules/raw-body/LICENSE +22 -0
  532. package/backend/node_modules/raw-body/README.md +223 -0
  533. package/backend/node_modules/raw-body/index.d.ts +87 -0
  534. package/backend/node_modules/raw-body/index.js +336 -0
  535. package/backend/node_modules/raw-body/package.json +47 -0
  536. package/backend/node_modules/safe-buffer/LICENSE +21 -0
  537. package/backend/node_modules/safe-buffer/README.md +584 -0
  538. package/backend/node_modules/safe-buffer/index.d.ts +187 -0
  539. package/backend/node_modules/safe-buffer/index.js +65 -0
  540. package/backend/node_modules/safe-buffer/package.json +51 -0
  541. package/backend/node_modules/safer-buffer/LICENSE +21 -0
  542. package/backend/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  543. package/backend/node_modules/safer-buffer/Readme.md +156 -0
  544. package/backend/node_modules/safer-buffer/dangerous.js +58 -0
  545. package/backend/node_modules/safer-buffer/package.json +34 -0
  546. package/backend/node_modules/safer-buffer/safer.js +77 -0
  547. package/backend/node_modules/safer-buffer/tests.js +406 -0
  548. package/backend/node_modules/send/HISTORY.md +538 -0
  549. package/backend/node_modules/send/LICENSE +23 -0
  550. package/backend/node_modules/send/README.md +327 -0
  551. package/backend/node_modules/send/SECURITY.md +24 -0
  552. package/backend/node_modules/send/index.js +1142 -0
  553. package/backend/node_modules/send/node_modules/ms/index.js +162 -0
  554. package/backend/node_modules/send/node_modules/ms/license.md +21 -0
  555. package/backend/node_modules/send/node_modules/ms/package.json +38 -0
  556. package/backend/node_modules/send/node_modules/ms/readme.md +59 -0
  557. package/backend/node_modules/send/package.json +62 -0
  558. package/backend/node_modules/serve-static/HISTORY.md +493 -0
  559. package/backend/node_modules/serve-static/LICENSE +25 -0
  560. package/backend/node_modules/serve-static/README.md +257 -0
  561. package/backend/node_modules/serve-static/index.js +209 -0
  562. package/backend/node_modules/serve-static/package.json +42 -0
  563. package/backend/node_modules/setprototypeof/LICENSE +13 -0
  564. package/backend/node_modules/setprototypeof/README.md +31 -0
  565. package/backend/node_modules/setprototypeof/index.d.ts +2 -0
  566. package/backend/node_modules/setprototypeof/index.js +17 -0
  567. package/backend/node_modules/setprototypeof/package.json +38 -0
  568. package/backend/node_modules/setprototypeof/test/index.js +24 -0
  569. package/backend/node_modules/side-channel/.editorconfig +9 -0
  570. package/backend/node_modules/side-channel/.eslintrc +12 -0
  571. package/backend/node_modules/side-channel/.github/FUNDING.yml +12 -0
  572. package/backend/node_modules/side-channel/.nycrc +13 -0
  573. package/backend/node_modules/side-channel/CHANGELOG.md +120 -0
  574. package/backend/node_modules/side-channel/LICENSE +21 -0
  575. package/backend/node_modules/side-channel/README.md +61 -0
  576. package/backend/node_modules/side-channel/index.d.ts +14 -0
  577. package/backend/node_modules/side-channel/index.js +46 -0
  578. package/backend/node_modules/side-channel/package.json +85 -0
  579. package/backend/node_modules/side-channel/test/index.js +120 -0
  580. package/backend/node_modules/side-channel/tsconfig.json +9 -0
  581. package/backend/node_modules/side-channel-list/.editorconfig +9 -0
  582. package/backend/node_modules/side-channel-list/.eslintrc +11 -0
  583. package/backend/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  584. package/backend/node_modules/side-channel-list/.nycrc +13 -0
  585. package/backend/node_modules/side-channel-list/CHANGELOG.md +36 -0
  586. package/backend/node_modules/side-channel-list/LICENSE +21 -0
  587. package/backend/node_modules/side-channel-list/README.md +62 -0
  588. package/backend/node_modules/side-channel-list/index.d.ts +13 -0
  589. package/backend/node_modules/side-channel-list/index.js +111 -0
  590. package/backend/node_modules/side-channel-list/list.d.ts +14 -0
  591. package/backend/node_modules/side-channel-list/package.json +77 -0
  592. package/backend/node_modules/side-channel-list/test/index.js +154 -0
  593. package/backend/node_modules/side-channel-list/tsconfig.json +9 -0
  594. package/backend/node_modules/side-channel-map/.editorconfig +9 -0
  595. package/backend/node_modules/side-channel-map/.eslintrc +11 -0
  596. package/backend/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  597. package/backend/node_modules/side-channel-map/.nycrc +13 -0
  598. package/backend/node_modules/side-channel-map/CHANGELOG.md +22 -0
  599. package/backend/node_modules/side-channel-map/LICENSE +21 -0
  600. package/backend/node_modules/side-channel-map/README.md +62 -0
  601. package/backend/node_modules/side-channel-map/index.d.ts +15 -0
  602. package/backend/node_modules/side-channel-map/index.js +68 -0
  603. package/backend/node_modules/side-channel-map/package.json +80 -0
  604. package/backend/node_modules/side-channel-map/test/index.js +114 -0
  605. package/backend/node_modules/side-channel-map/tsconfig.json +9 -0
  606. package/backend/node_modules/side-channel-weakmap/.editorconfig +9 -0
  607. package/backend/node_modules/side-channel-weakmap/.eslintrc +12 -0
  608. package/backend/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  609. package/backend/node_modules/side-channel-weakmap/.nycrc +13 -0
  610. package/backend/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  611. package/backend/node_modules/side-channel-weakmap/LICENSE +21 -0
  612. package/backend/node_modules/side-channel-weakmap/README.md +62 -0
  613. package/backend/node_modules/side-channel-weakmap/index.d.ts +15 -0
  614. package/backend/node_modules/side-channel-weakmap/index.js +84 -0
  615. package/backend/node_modules/side-channel-weakmap/package.json +87 -0
  616. package/backend/node_modules/side-channel-weakmap/test/index.js +114 -0
  617. package/backend/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  618. package/backend/node_modules/statuses/HISTORY.md +87 -0
  619. package/backend/node_modules/statuses/LICENSE +23 -0
  620. package/backend/node_modules/statuses/README.md +139 -0
  621. package/backend/node_modules/statuses/codes.json +65 -0
  622. package/backend/node_modules/statuses/index.js +146 -0
  623. package/backend/node_modules/statuses/package.json +49 -0
  624. package/backend/node_modules/toidentifier/HISTORY.md +9 -0
  625. package/backend/node_modules/toidentifier/LICENSE +21 -0
  626. package/backend/node_modules/toidentifier/README.md +61 -0
  627. package/backend/node_modules/toidentifier/index.js +32 -0
  628. package/backend/node_modules/toidentifier/package.json +38 -0
  629. package/backend/node_modules/type-is/HISTORY.md +259 -0
  630. package/backend/node_modules/type-is/LICENSE +23 -0
  631. package/backend/node_modules/type-is/README.md +170 -0
  632. package/backend/node_modules/type-is/index.js +266 -0
  633. package/backend/node_modules/type-is/package.json +45 -0
  634. package/backend/node_modules/unpipe/HISTORY.md +4 -0
  635. package/backend/node_modules/unpipe/LICENSE +22 -0
  636. package/backend/node_modules/unpipe/README.md +43 -0
  637. package/backend/node_modules/unpipe/index.js +69 -0
  638. package/backend/node_modules/unpipe/package.json +27 -0
  639. package/backend/node_modules/utils-merge/LICENSE +20 -0
  640. package/backend/node_modules/utils-merge/README.md +34 -0
  641. package/backend/node_modules/utils-merge/index.js +23 -0
  642. package/backend/node_modules/utils-merge/package.json +40 -0
  643. package/backend/node_modules/vary/HISTORY.md +39 -0
  644. package/backend/node_modules/vary/LICENSE +22 -0
  645. package/backend/node_modules/vary/README.md +101 -0
  646. package/backend/node_modules/vary/index.js +149 -0
  647. package/backend/node_modules/vary/package.json +43 -0
  648. package/backend/package-lock.json +854 -0
  649. package/backend/package.json +14 -0
  650. package/backend/parsers/antigravity.js +206 -0
  651. package/backend/parsers/claude.js +92 -0
  652. package/backend/parsers/codex.js +86 -0
  653. package/backend/parsers/copilot.js +379 -0
  654. package/backend/parsers/copilotEditingSessions.js +118 -0
  655. package/backend/parsers/cursor.js +215 -0
  656. package/backend/relay.js +835 -0
  657. package/backend/scripts/relay-context.js +9 -0
  658. package/backend/server.js +314 -0
  659. package/bin/relay.js +312 -0
  660. package/docs/QUICKSTART.md +94 -0
  661. package/mission-control/AGENTS.md +5 -0
  662. package/mission-control/CLAUDE.md +1 -0
  663. package/mission-control/README.md +20 -0
  664. package/mission-control/eslint.config.mjs +18 -0
  665. package/mission-control/next.config.ts +7 -0
  666. package/mission-control/package-lock.json +6695 -0
  667. package/mission-control/package.json +26 -0
  668. package/mission-control/page.css +1793 -0
  669. package/mission-control/page.html +1 -0
  670. package/mission-control/postcss.config.mjs +7 -0
  671. package/mission-control/public/file.svg +1 -0
  672. package/mission-control/public/globe.svg +1 -0
  673. package/mission-control/public/logos/1f733bb7-c1b3-4292-a7f7-71aafa2addaa.jpeg +0 -0
  674. package/mission-control/public/logos/Claude.png +0 -0
  675. package/mission-control/public/logos/Codex.png +0 -0
  676. package/mission-control/public/logos/Gemini_Generated_Image_7qmndr7qmndr7qmn.png +0 -0
  677. package/mission-control/public/logos/antigravity.png +0 -0
  678. package/mission-control/public/logos/cursor.png +0 -0
  679. package/mission-control/public/logos/github-copilot.png +0 -0
  680. package/mission-control/public/logos/logo.avif +0 -0
  681. package/mission-control/public/logos/logo.jpg +0 -0
  682. package/mission-control/public/logos/logo.png +0 -0
  683. package/mission-control/public/next.svg +1 -0
  684. package/mission-control/public/vercel.svg +1 -0
  685. package/mission-control/public/window.svg +1 -0
  686. package/mission-control/src/app/api/fs/route.ts +49 -0
  687. package/mission-control/src/app/globals.css +102 -0
  688. package/mission-control/src/app/layout.tsx +31 -0
  689. package/mission-control/src/app/onboarding/page.module.css +133 -0
  690. package/mission-control/src/app/onboarding/page.tsx +98 -0
  691. package/mission-control/src/app/page.module.css +51 -0
  692. package/mission-control/src/app/page.tsx +40 -0
  693. package/mission-control/src/components/ActivityTimeline.module.css +282 -0
  694. package/mission-control/src/components/ActivityTimeline.tsx +262 -0
  695. package/mission-control/src/components/AgentSessionChat.module.css +220 -0
  696. package/mission-control/src/components/AgentSessionChat.tsx +276 -0
  697. package/mission-control/src/components/CollaboratorsPanel.module.css +119 -0
  698. package/mission-control/src/components/CollaboratorsPanel.tsx +123 -0
  699. package/mission-control/src/components/ContextMemory.module.css +79 -0
  700. package/mission-control/src/components/ContextMemory.tsx +66 -0
  701. package/mission-control/src/components/DirectoryPicker.tsx +194 -0
  702. package/mission-control/src/components/GlobalHeader.module.css +165 -0
  703. package/mission-control/src/components/GlobalHeader.tsx +82 -0
  704. package/mission-control/src/components/ProjectDashboard.module.css +268 -0
  705. package/mission-control/src/components/ProjectDashboard.tsx +174 -0
  706. package/mission-control/src/components/RelayBrainPanel.module.css +85 -0
  707. package/mission-control/src/components/RelayBrainPanel.tsx +74 -0
  708. package/mission-control/src/components/Sidebar.module.css +201 -0
  709. package/mission-control/src/components/Sidebar.tsx +136 -0
  710. package/mission-control/src/components/TaskQueue.module.css +92 -0
  711. package/mission-control/src/components/TaskQueue.tsx +51 -0
  712. package/mission-control/src/components/WorkspaceRail.module.css +188 -0
  713. package/mission-control/src/components/WorkspaceRail.tsx +56 -0
  714. package/mission-control/src/lib/RelayContext.tsx +314 -0
  715. package/mission-control/src/lib/relay.ts +280 -0
  716. package/mission-control/src/lib/workspaces.ts +53 -0
  717. package/mission-control/tsconfig.json +34 -0
  718. package/package.json +48 -0
  719. package/scripts/postinstall.js +19 -0
  720. package/skills/relay-sync/SKILL.md +32 -0
  721. package/skills/relay-sync/agent-install.md +17 -0
@@ -0,0 +1,854 @@
1
+ {
2
+ "name": "relay-backend",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "relay-backend",
9
+ "version": "1.0.0",
10
+ "dependencies": {
11
+ "cors": "^2.8.5",
12
+ "express": "^4.18.2"
13
+ }
14
+ },
15
+ "node_modules/accepts": {
16
+ "version": "1.3.8",
17
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
18
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
19
+ "license": "MIT",
20
+ "dependencies": {
21
+ "mime-types": "~2.1.34",
22
+ "negotiator": "0.6.3"
23
+ },
24
+ "engines": {
25
+ "node": ">= 0.6"
26
+ }
27
+ },
28
+ "node_modules/array-flatten": {
29
+ "version": "1.1.1",
30
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
31
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
32
+ "license": "MIT"
33
+ },
34
+ "node_modules/body-parser": {
35
+ "version": "1.20.5",
36
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.5.tgz",
37
+ "integrity": "sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==",
38
+ "license": "MIT",
39
+ "dependencies": {
40
+ "bytes": "~3.1.2",
41
+ "content-type": "~1.0.5",
42
+ "debug": "2.6.9",
43
+ "depd": "2.0.0",
44
+ "destroy": "~1.2.0",
45
+ "http-errors": "~2.0.1",
46
+ "iconv-lite": "~0.4.24",
47
+ "on-finished": "~2.4.1",
48
+ "qs": "~6.15.1",
49
+ "raw-body": "~2.5.3",
50
+ "type-is": "~1.6.18",
51
+ "unpipe": "~1.0.0"
52
+ },
53
+ "engines": {
54
+ "node": ">= 0.8",
55
+ "npm": "1.2.8000 || >= 1.4.16"
56
+ }
57
+ },
58
+ "node_modules/bytes": {
59
+ "version": "3.1.2",
60
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
61
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
62
+ "license": "MIT",
63
+ "engines": {
64
+ "node": ">= 0.8"
65
+ }
66
+ },
67
+ "node_modules/call-bind-apply-helpers": {
68
+ "version": "1.0.2",
69
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
70
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
71
+ "license": "MIT",
72
+ "dependencies": {
73
+ "es-errors": "^1.3.0",
74
+ "function-bind": "^1.1.2"
75
+ },
76
+ "engines": {
77
+ "node": ">= 0.4"
78
+ }
79
+ },
80
+ "node_modules/call-bound": {
81
+ "version": "1.0.4",
82
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
83
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
84
+ "license": "MIT",
85
+ "dependencies": {
86
+ "call-bind-apply-helpers": "^1.0.2",
87
+ "get-intrinsic": "^1.3.0"
88
+ },
89
+ "engines": {
90
+ "node": ">= 0.4"
91
+ },
92
+ "funding": {
93
+ "url": "https://github.com/sponsors/ljharb"
94
+ }
95
+ },
96
+ "node_modules/content-disposition": {
97
+ "version": "0.5.4",
98
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
99
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
100
+ "license": "MIT",
101
+ "dependencies": {
102
+ "safe-buffer": "5.2.1"
103
+ },
104
+ "engines": {
105
+ "node": ">= 0.6"
106
+ }
107
+ },
108
+ "node_modules/content-type": {
109
+ "version": "1.0.5",
110
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
111
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
112
+ "license": "MIT",
113
+ "engines": {
114
+ "node": ">= 0.6"
115
+ }
116
+ },
117
+ "node_modules/cookie": {
118
+ "version": "0.7.2",
119
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
120
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
121
+ "license": "MIT",
122
+ "engines": {
123
+ "node": ">= 0.6"
124
+ }
125
+ },
126
+ "node_modules/cookie-signature": {
127
+ "version": "1.0.7",
128
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
129
+ "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
130
+ "license": "MIT"
131
+ },
132
+ "node_modules/cors": {
133
+ "version": "2.8.6",
134
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
135
+ "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
136
+ "license": "MIT",
137
+ "dependencies": {
138
+ "object-assign": "^4",
139
+ "vary": "^1"
140
+ },
141
+ "engines": {
142
+ "node": ">= 0.10"
143
+ },
144
+ "funding": {
145
+ "type": "opencollective",
146
+ "url": "https://opencollective.com/express"
147
+ }
148
+ },
149
+ "node_modules/debug": {
150
+ "version": "2.6.9",
151
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
152
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
153
+ "license": "MIT",
154
+ "dependencies": {
155
+ "ms": "2.0.0"
156
+ }
157
+ },
158
+ "node_modules/depd": {
159
+ "version": "2.0.0",
160
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
161
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
162
+ "license": "MIT",
163
+ "engines": {
164
+ "node": ">= 0.8"
165
+ }
166
+ },
167
+ "node_modules/destroy": {
168
+ "version": "1.2.0",
169
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
170
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
171
+ "license": "MIT",
172
+ "engines": {
173
+ "node": ">= 0.8",
174
+ "npm": "1.2.8000 || >= 1.4.16"
175
+ }
176
+ },
177
+ "node_modules/dunder-proto": {
178
+ "version": "1.0.1",
179
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
180
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
181
+ "license": "MIT",
182
+ "dependencies": {
183
+ "call-bind-apply-helpers": "^1.0.1",
184
+ "es-errors": "^1.3.0",
185
+ "gopd": "^1.2.0"
186
+ },
187
+ "engines": {
188
+ "node": ">= 0.4"
189
+ }
190
+ },
191
+ "node_modules/ee-first": {
192
+ "version": "1.1.1",
193
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
194
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
195
+ "license": "MIT"
196
+ },
197
+ "node_modules/encodeurl": {
198
+ "version": "2.0.0",
199
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
200
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
201
+ "license": "MIT",
202
+ "engines": {
203
+ "node": ">= 0.8"
204
+ }
205
+ },
206
+ "node_modules/es-define-property": {
207
+ "version": "1.0.1",
208
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
209
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
210
+ "license": "MIT",
211
+ "engines": {
212
+ "node": ">= 0.4"
213
+ }
214
+ },
215
+ "node_modules/es-errors": {
216
+ "version": "1.3.0",
217
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
218
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
219
+ "license": "MIT",
220
+ "engines": {
221
+ "node": ">= 0.4"
222
+ }
223
+ },
224
+ "node_modules/es-object-atoms": {
225
+ "version": "1.1.2",
226
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
227
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
228
+ "license": "MIT",
229
+ "dependencies": {
230
+ "es-errors": "^1.3.0"
231
+ },
232
+ "engines": {
233
+ "node": ">= 0.4"
234
+ }
235
+ },
236
+ "node_modules/escape-html": {
237
+ "version": "1.0.3",
238
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
239
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
240
+ "license": "MIT"
241
+ },
242
+ "node_modules/etag": {
243
+ "version": "1.8.1",
244
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
245
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
246
+ "license": "MIT",
247
+ "engines": {
248
+ "node": ">= 0.6"
249
+ }
250
+ },
251
+ "node_modules/express": {
252
+ "version": "4.22.2",
253
+ "resolved": "https://registry.npmjs.org/express/-/express-4.22.2.tgz",
254
+ "integrity": "sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==",
255
+ "license": "MIT",
256
+ "dependencies": {
257
+ "accepts": "~1.3.8",
258
+ "array-flatten": "1.1.1",
259
+ "body-parser": "~1.20.5",
260
+ "content-disposition": "~0.5.4",
261
+ "content-type": "~1.0.4",
262
+ "cookie": "~0.7.1",
263
+ "cookie-signature": "~1.0.6",
264
+ "debug": "2.6.9",
265
+ "depd": "2.0.0",
266
+ "encodeurl": "~2.0.0",
267
+ "escape-html": "~1.0.3",
268
+ "etag": "~1.8.1",
269
+ "finalhandler": "~1.3.1",
270
+ "fresh": "~0.5.2",
271
+ "http-errors": "~2.0.0",
272
+ "merge-descriptors": "1.0.3",
273
+ "methods": "~1.1.2",
274
+ "on-finished": "~2.4.1",
275
+ "parseurl": "~1.3.3",
276
+ "path-to-regexp": "~0.1.12",
277
+ "proxy-addr": "~2.0.7",
278
+ "qs": "~6.15.1",
279
+ "range-parser": "~1.2.1",
280
+ "safe-buffer": "5.2.1",
281
+ "send": "~0.19.0",
282
+ "serve-static": "~1.16.2",
283
+ "setprototypeof": "1.2.0",
284
+ "statuses": "~2.0.1",
285
+ "type-is": "~1.6.18",
286
+ "utils-merge": "1.0.1",
287
+ "vary": "~1.1.2"
288
+ },
289
+ "engines": {
290
+ "node": ">= 0.10.0"
291
+ },
292
+ "funding": {
293
+ "type": "opencollective",
294
+ "url": "https://opencollective.com/express"
295
+ }
296
+ },
297
+ "node_modules/finalhandler": {
298
+ "version": "1.3.2",
299
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
300
+ "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
301
+ "license": "MIT",
302
+ "dependencies": {
303
+ "debug": "2.6.9",
304
+ "encodeurl": "~2.0.0",
305
+ "escape-html": "~1.0.3",
306
+ "on-finished": "~2.4.1",
307
+ "parseurl": "~1.3.3",
308
+ "statuses": "~2.0.2",
309
+ "unpipe": "~1.0.0"
310
+ },
311
+ "engines": {
312
+ "node": ">= 0.8"
313
+ }
314
+ },
315
+ "node_modules/forwarded": {
316
+ "version": "0.2.0",
317
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
318
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
319
+ "license": "MIT",
320
+ "engines": {
321
+ "node": ">= 0.6"
322
+ }
323
+ },
324
+ "node_modules/fresh": {
325
+ "version": "0.5.2",
326
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
327
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
328
+ "license": "MIT",
329
+ "engines": {
330
+ "node": ">= 0.6"
331
+ }
332
+ },
333
+ "node_modules/function-bind": {
334
+ "version": "1.1.2",
335
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
336
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
337
+ "license": "MIT",
338
+ "funding": {
339
+ "url": "https://github.com/sponsors/ljharb"
340
+ }
341
+ },
342
+ "node_modules/get-intrinsic": {
343
+ "version": "1.3.0",
344
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
345
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
346
+ "license": "MIT",
347
+ "dependencies": {
348
+ "call-bind-apply-helpers": "^1.0.2",
349
+ "es-define-property": "^1.0.1",
350
+ "es-errors": "^1.3.0",
351
+ "es-object-atoms": "^1.1.1",
352
+ "function-bind": "^1.1.2",
353
+ "get-proto": "^1.0.1",
354
+ "gopd": "^1.2.0",
355
+ "has-symbols": "^1.1.0",
356
+ "hasown": "^2.0.2",
357
+ "math-intrinsics": "^1.1.0"
358
+ },
359
+ "engines": {
360
+ "node": ">= 0.4"
361
+ },
362
+ "funding": {
363
+ "url": "https://github.com/sponsors/ljharb"
364
+ }
365
+ },
366
+ "node_modules/get-proto": {
367
+ "version": "1.0.1",
368
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
369
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
370
+ "license": "MIT",
371
+ "dependencies": {
372
+ "dunder-proto": "^1.0.1",
373
+ "es-object-atoms": "^1.0.0"
374
+ },
375
+ "engines": {
376
+ "node": ">= 0.4"
377
+ }
378
+ },
379
+ "node_modules/gopd": {
380
+ "version": "1.2.0",
381
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
382
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
383
+ "license": "MIT",
384
+ "engines": {
385
+ "node": ">= 0.4"
386
+ },
387
+ "funding": {
388
+ "url": "https://github.com/sponsors/ljharb"
389
+ }
390
+ },
391
+ "node_modules/has-symbols": {
392
+ "version": "1.1.0",
393
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
394
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
395
+ "license": "MIT",
396
+ "engines": {
397
+ "node": ">= 0.4"
398
+ },
399
+ "funding": {
400
+ "url": "https://github.com/sponsors/ljharb"
401
+ }
402
+ },
403
+ "node_modules/hasown": {
404
+ "version": "2.0.4",
405
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
406
+ "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
407
+ "license": "MIT",
408
+ "dependencies": {
409
+ "function-bind": "^1.1.2"
410
+ },
411
+ "engines": {
412
+ "node": ">= 0.4"
413
+ }
414
+ },
415
+ "node_modules/http-errors": {
416
+ "version": "2.0.1",
417
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
418
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
419
+ "license": "MIT",
420
+ "dependencies": {
421
+ "depd": "~2.0.0",
422
+ "inherits": "~2.0.4",
423
+ "setprototypeof": "~1.2.0",
424
+ "statuses": "~2.0.2",
425
+ "toidentifier": "~1.0.1"
426
+ },
427
+ "engines": {
428
+ "node": ">= 0.8"
429
+ },
430
+ "funding": {
431
+ "type": "opencollective",
432
+ "url": "https://opencollective.com/express"
433
+ }
434
+ },
435
+ "node_modules/iconv-lite": {
436
+ "version": "0.4.24",
437
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
438
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
439
+ "license": "MIT",
440
+ "dependencies": {
441
+ "safer-buffer": ">= 2.1.2 < 3"
442
+ },
443
+ "engines": {
444
+ "node": ">=0.10.0"
445
+ }
446
+ },
447
+ "node_modules/inherits": {
448
+ "version": "2.0.4",
449
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
450
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
451
+ "license": "ISC"
452
+ },
453
+ "node_modules/ipaddr.js": {
454
+ "version": "1.9.1",
455
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
456
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
457
+ "license": "MIT",
458
+ "engines": {
459
+ "node": ">= 0.10"
460
+ }
461
+ },
462
+ "node_modules/math-intrinsics": {
463
+ "version": "1.1.0",
464
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
465
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
466
+ "license": "MIT",
467
+ "engines": {
468
+ "node": ">= 0.4"
469
+ }
470
+ },
471
+ "node_modules/media-typer": {
472
+ "version": "0.3.0",
473
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
474
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
475
+ "license": "MIT",
476
+ "engines": {
477
+ "node": ">= 0.6"
478
+ }
479
+ },
480
+ "node_modules/merge-descriptors": {
481
+ "version": "1.0.3",
482
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
483
+ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
484
+ "license": "MIT",
485
+ "funding": {
486
+ "url": "https://github.com/sponsors/sindresorhus"
487
+ }
488
+ },
489
+ "node_modules/methods": {
490
+ "version": "1.1.2",
491
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
492
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
493
+ "license": "MIT",
494
+ "engines": {
495
+ "node": ">= 0.6"
496
+ }
497
+ },
498
+ "node_modules/mime": {
499
+ "version": "1.6.0",
500
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
501
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
502
+ "license": "MIT",
503
+ "bin": {
504
+ "mime": "cli.js"
505
+ },
506
+ "engines": {
507
+ "node": ">=4"
508
+ }
509
+ },
510
+ "node_modules/mime-db": {
511
+ "version": "1.52.0",
512
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
513
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
514
+ "license": "MIT",
515
+ "engines": {
516
+ "node": ">= 0.6"
517
+ }
518
+ },
519
+ "node_modules/mime-types": {
520
+ "version": "2.1.35",
521
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
522
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
523
+ "license": "MIT",
524
+ "dependencies": {
525
+ "mime-db": "1.52.0"
526
+ },
527
+ "engines": {
528
+ "node": ">= 0.6"
529
+ }
530
+ },
531
+ "node_modules/ms": {
532
+ "version": "2.0.0",
533
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
534
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
535
+ "license": "MIT"
536
+ },
537
+ "node_modules/negotiator": {
538
+ "version": "0.6.3",
539
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
540
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
541
+ "license": "MIT",
542
+ "engines": {
543
+ "node": ">= 0.6"
544
+ }
545
+ },
546
+ "node_modules/object-assign": {
547
+ "version": "4.1.1",
548
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
549
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
550
+ "license": "MIT",
551
+ "engines": {
552
+ "node": ">=0.10.0"
553
+ }
554
+ },
555
+ "node_modules/object-inspect": {
556
+ "version": "1.13.4",
557
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
558
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
559
+ "license": "MIT",
560
+ "engines": {
561
+ "node": ">= 0.4"
562
+ },
563
+ "funding": {
564
+ "url": "https://github.com/sponsors/ljharb"
565
+ }
566
+ },
567
+ "node_modules/on-finished": {
568
+ "version": "2.4.1",
569
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
570
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
571
+ "license": "MIT",
572
+ "dependencies": {
573
+ "ee-first": "1.1.1"
574
+ },
575
+ "engines": {
576
+ "node": ">= 0.8"
577
+ }
578
+ },
579
+ "node_modules/parseurl": {
580
+ "version": "1.3.3",
581
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
582
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
583
+ "license": "MIT",
584
+ "engines": {
585
+ "node": ">= 0.8"
586
+ }
587
+ },
588
+ "node_modules/path-to-regexp": {
589
+ "version": "0.1.13",
590
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz",
591
+ "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==",
592
+ "license": "MIT"
593
+ },
594
+ "node_modules/proxy-addr": {
595
+ "version": "2.0.7",
596
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
597
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
598
+ "license": "MIT",
599
+ "dependencies": {
600
+ "forwarded": "0.2.0",
601
+ "ipaddr.js": "1.9.1"
602
+ },
603
+ "engines": {
604
+ "node": ">= 0.10"
605
+ }
606
+ },
607
+ "node_modules/qs": {
608
+ "version": "6.15.2",
609
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.2.tgz",
610
+ "integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==",
611
+ "license": "BSD-3-Clause",
612
+ "dependencies": {
613
+ "side-channel": "^1.1.0"
614
+ },
615
+ "engines": {
616
+ "node": ">=0.6"
617
+ },
618
+ "funding": {
619
+ "url": "https://github.com/sponsors/ljharb"
620
+ }
621
+ },
622
+ "node_modules/range-parser": {
623
+ "version": "1.2.1",
624
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
625
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
626
+ "license": "MIT",
627
+ "engines": {
628
+ "node": ">= 0.6"
629
+ }
630
+ },
631
+ "node_modules/raw-body": {
632
+ "version": "2.5.3",
633
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
634
+ "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
635
+ "license": "MIT",
636
+ "dependencies": {
637
+ "bytes": "~3.1.2",
638
+ "http-errors": "~2.0.1",
639
+ "iconv-lite": "~0.4.24",
640
+ "unpipe": "~1.0.0"
641
+ },
642
+ "engines": {
643
+ "node": ">= 0.8"
644
+ }
645
+ },
646
+ "node_modules/safe-buffer": {
647
+ "version": "5.2.1",
648
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
649
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
650
+ "funding": [
651
+ {
652
+ "type": "github",
653
+ "url": "https://github.com/sponsors/feross"
654
+ },
655
+ {
656
+ "type": "patreon",
657
+ "url": "https://www.patreon.com/feross"
658
+ },
659
+ {
660
+ "type": "consulting",
661
+ "url": "https://feross.org/support"
662
+ }
663
+ ],
664
+ "license": "MIT"
665
+ },
666
+ "node_modules/safer-buffer": {
667
+ "version": "2.1.2",
668
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
669
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
670
+ "license": "MIT"
671
+ },
672
+ "node_modules/send": {
673
+ "version": "0.19.2",
674
+ "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
675
+ "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
676
+ "license": "MIT",
677
+ "dependencies": {
678
+ "debug": "2.6.9",
679
+ "depd": "2.0.0",
680
+ "destroy": "1.2.0",
681
+ "encodeurl": "~2.0.0",
682
+ "escape-html": "~1.0.3",
683
+ "etag": "~1.8.1",
684
+ "fresh": "~0.5.2",
685
+ "http-errors": "~2.0.1",
686
+ "mime": "1.6.0",
687
+ "ms": "2.1.3",
688
+ "on-finished": "~2.4.1",
689
+ "range-parser": "~1.2.1",
690
+ "statuses": "~2.0.2"
691
+ },
692
+ "engines": {
693
+ "node": ">= 0.8.0"
694
+ }
695
+ },
696
+ "node_modules/send/node_modules/ms": {
697
+ "version": "2.1.3",
698
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
699
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
700
+ "license": "MIT"
701
+ },
702
+ "node_modules/serve-static": {
703
+ "version": "1.16.3",
704
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
705
+ "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
706
+ "license": "MIT",
707
+ "dependencies": {
708
+ "encodeurl": "~2.0.0",
709
+ "escape-html": "~1.0.3",
710
+ "parseurl": "~1.3.3",
711
+ "send": "~0.19.1"
712
+ },
713
+ "engines": {
714
+ "node": ">= 0.8.0"
715
+ }
716
+ },
717
+ "node_modules/setprototypeof": {
718
+ "version": "1.2.0",
719
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
720
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
721
+ "license": "ISC"
722
+ },
723
+ "node_modules/side-channel": {
724
+ "version": "1.1.1",
725
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
726
+ "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
727
+ "license": "MIT",
728
+ "dependencies": {
729
+ "es-errors": "^1.3.0",
730
+ "object-inspect": "^1.13.4",
731
+ "side-channel-list": "^1.0.1",
732
+ "side-channel-map": "^1.0.1",
733
+ "side-channel-weakmap": "^1.0.2"
734
+ },
735
+ "engines": {
736
+ "node": ">= 0.4"
737
+ },
738
+ "funding": {
739
+ "url": "https://github.com/sponsors/ljharb"
740
+ }
741
+ },
742
+ "node_modules/side-channel-list": {
743
+ "version": "1.0.1",
744
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
745
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
746
+ "license": "MIT",
747
+ "dependencies": {
748
+ "es-errors": "^1.3.0",
749
+ "object-inspect": "^1.13.4"
750
+ },
751
+ "engines": {
752
+ "node": ">= 0.4"
753
+ },
754
+ "funding": {
755
+ "url": "https://github.com/sponsors/ljharb"
756
+ }
757
+ },
758
+ "node_modules/side-channel-map": {
759
+ "version": "1.0.1",
760
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
761
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
762
+ "license": "MIT",
763
+ "dependencies": {
764
+ "call-bound": "^1.0.2",
765
+ "es-errors": "^1.3.0",
766
+ "get-intrinsic": "^1.2.5",
767
+ "object-inspect": "^1.13.3"
768
+ },
769
+ "engines": {
770
+ "node": ">= 0.4"
771
+ },
772
+ "funding": {
773
+ "url": "https://github.com/sponsors/ljharb"
774
+ }
775
+ },
776
+ "node_modules/side-channel-weakmap": {
777
+ "version": "1.0.2",
778
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
779
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
780
+ "license": "MIT",
781
+ "dependencies": {
782
+ "call-bound": "^1.0.2",
783
+ "es-errors": "^1.3.0",
784
+ "get-intrinsic": "^1.2.5",
785
+ "object-inspect": "^1.13.3",
786
+ "side-channel-map": "^1.0.1"
787
+ },
788
+ "engines": {
789
+ "node": ">= 0.4"
790
+ },
791
+ "funding": {
792
+ "url": "https://github.com/sponsors/ljharb"
793
+ }
794
+ },
795
+ "node_modules/statuses": {
796
+ "version": "2.0.2",
797
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
798
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
799
+ "license": "MIT",
800
+ "engines": {
801
+ "node": ">= 0.8"
802
+ }
803
+ },
804
+ "node_modules/toidentifier": {
805
+ "version": "1.0.1",
806
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
807
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
808
+ "license": "MIT",
809
+ "engines": {
810
+ "node": ">=0.6"
811
+ }
812
+ },
813
+ "node_modules/type-is": {
814
+ "version": "1.6.18",
815
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
816
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
817
+ "license": "MIT",
818
+ "dependencies": {
819
+ "media-typer": "0.3.0",
820
+ "mime-types": "~2.1.24"
821
+ },
822
+ "engines": {
823
+ "node": ">= 0.6"
824
+ }
825
+ },
826
+ "node_modules/unpipe": {
827
+ "version": "1.0.0",
828
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
829
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
830
+ "license": "MIT",
831
+ "engines": {
832
+ "node": ">= 0.8"
833
+ }
834
+ },
835
+ "node_modules/utils-merge": {
836
+ "version": "1.0.1",
837
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
838
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
839
+ "license": "MIT",
840
+ "engines": {
841
+ "node": ">= 0.4.0"
842
+ }
843
+ },
844
+ "node_modules/vary": {
845
+ "version": "1.1.2",
846
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
847
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
848
+ "license": "MIT",
849
+ "engines": {
850
+ "node": ">= 0.8"
851
+ }
852
+ }
853
+ }
854
+ }