fenrir-runtime 0.0.1 → 0.3.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 (699) hide show
  1. package/Makefile +5 -11
  2. package/README.md +114 -48
  3. package/READMEs/turkish.md +156 -0
  4. package/example/.fenrir/archives/2026-03-14_21-07-26/.metadata.json +7 -0
  5. package/example/.fenrir/archives/2026-03-14_21-07-26/fenrir.json +9 -0
  6. package/example/.fenrir/archives/2026-03-14_21-07-26/main.fnr +67 -0
  7. package/example/{fenrir+aperium → .fenrir/archives/2026-03-14_21-07-26}/package-lock.json +93 -157
  8. package/example/.fenrir/archives/2026-03-14_21-07-26/package.json +8 -0
  9. package/example/.fenrir/archives/2026-03-14_21-07-32/.metadata.json +7 -0
  10. package/example/.fenrir/archives/2026-03-14_21-07-32/fenrir.json +9 -0
  11. package/example/.fenrir/archives/2026-03-14_21-07-32/main.fnr +67 -0
  12. package/example/.fenrir/archives/2026-03-14_21-07-32/package-lock.json +826 -0
  13. package/example/.fenrir/archives/2026-03-14_21-07-32/package.json +8 -0
  14. package/example/fenrir.json +4 -5
  15. package/example/main.fnr +96 -11
  16. package/example/node_modules/.package-lock.json +819 -0
  17. package/example/node_modules/accepts/HISTORY.md +250 -0
  18. package/example/node_modules/accepts/LICENSE +23 -0
  19. package/example/node_modules/accepts/README.md +140 -0
  20. package/example/node_modules/accepts/index.js +238 -0
  21. package/example/node_modules/accepts/package.json +47 -0
  22. package/example/node_modules/body-parser/LICENSE +23 -0
  23. package/example/node_modules/body-parser/README.md +494 -0
  24. package/example/node_modules/body-parser/index.js +71 -0
  25. package/example/node_modules/body-parser/lib/read.js +247 -0
  26. package/example/node_modules/body-parser/lib/types/json.js +158 -0
  27. package/example/node_modules/body-parser/lib/types/raw.js +42 -0
  28. package/example/node_modules/body-parser/lib/types/text.js +36 -0
  29. package/example/node_modules/body-parser/lib/types/urlencoded.js +142 -0
  30. package/example/node_modules/body-parser/lib/utils.js +98 -0
  31. package/example/node_modules/body-parser/package.json +52 -0
  32. package/example/node_modules/bytes/History.md +97 -0
  33. package/example/node_modules/bytes/LICENSE +23 -0
  34. package/example/node_modules/bytes/Readme.md +152 -0
  35. package/example/node_modules/bytes/index.js +170 -0
  36. package/example/node_modules/bytes/package.json +42 -0
  37. package/example/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  38. package/example/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  39. package/example/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  40. package/example/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  41. package/example/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  42. package/example/node_modules/call-bind-apply-helpers/README.md +62 -0
  43. package/example/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  44. package/example/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  45. package/example/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  46. package/example/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  47. package/example/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  48. package/example/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  49. package/example/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  50. package/example/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  51. package/example/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  52. package/example/node_modules/call-bind-apply-helpers/index.js +15 -0
  53. package/example/node_modules/call-bind-apply-helpers/package.json +85 -0
  54. package/example/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  55. package/example/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  56. package/example/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  57. package/example/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  58. package/example/node_modules/call-bound/.eslintrc +13 -0
  59. package/example/node_modules/call-bound/.github/FUNDING.yml +12 -0
  60. package/example/node_modules/call-bound/.nycrc +9 -0
  61. package/example/node_modules/call-bound/CHANGELOG.md +42 -0
  62. package/example/node_modules/call-bound/LICENSE +21 -0
  63. package/example/node_modules/call-bound/README.md +53 -0
  64. package/example/node_modules/call-bound/index.d.ts +94 -0
  65. package/example/node_modules/call-bound/index.js +19 -0
  66. package/example/node_modules/call-bound/package.json +99 -0
  67. package/example/node_modules/call-bound/test/index.js +61 -0
  68. package/example/node_modules/call-bound/tsconfig.json +10 -0
  69. package/example/node_modules/content-disposition/HISTORY.md +72 -0
  70. package/example/node_modules/content-disposition/LICENSE +22 -0
  71. package/example/node_modules/content-disposition/README.md +142 -0
  72. package/example/node_modules/content-disposition/index.js +458 -0
  73. package/example/node_modules/content-disposition/package.json +43 -0
  74. package/example/node_modules/content-type/HISTORY.md +29 -0
  75. package/example/node_modules/content-type/LICENSE +22 -0
  76. package/example/node_modules/content-type/README.md +94 -0
  77. package/example/node_modules/content-type/index.js +225 -0
  78. package/example/node_modules/content-type/package.json +42 -0
  79. package/example/node_modules/cookie/LICENSE +24 -0
  80. package/example/node_modules/cookie/README.md +317 -0
  81. package/example/node_modules/cookie/SECURITY.md +25 -0
  82. package/example/node_modules/cookie/index.js +335 -0
  83. package/example/node_modules/cookie/package.json +44 -0
  84. package/example/node_modules/cookie-signature/History.md +70 -0
  85. package/example/node_modules/cookie-signature/LICENSE +22 -0
  86. package/example/node_modules/cookie-signature/Readme.md +23 -0
  87. package/example/node_modules/cookie-signature/index.js +47 -0
  88. package/example/node_modules/cookie-signature/package.json +24 -0
  89. package/example/node_modules/debug/LICENSE +20 -0
  90. package/example/node_modules/debug/README.md +481 -0
  91. package/example/node_modules/debug/package.json +64 -0
  92. package/example/node_modules/debug/src/browser.js +272 -0
  93. package/example/node_modules/debug/src/common.js +292 -0
  94. package/example/node_modules/debug/src/index.js +10 -0
  95. package/example/node_modules/debug/src/node.js +263 -0
  96. package/example/node_modules/depd/History.md +103 -0
  97. package/example/node_modules/depd/LICENSE +22 -0
  98. package/example/node_modules/depd/Readme.md +280 -0
  99. package/example/node_modules/depd/index.js +538 -0
  100. package/example/node_modules/depd/lib/browser/index.js +77 -0
  101. package/example/node_modules/depd/package.json +45 -0
  102. package/example/node_modules/dunder-proto/.eslintrc +5 -0
  103. package/example/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  104. package/example/node_modules/dunder-proto/.nycrc +13 -0
  105. package/example/node_modules/dunder-proto/CHANGELOG.md +24 -0
  106. package/example/node_modules/dunder-proto/LICENSE +21 -0
  107. package/example/node_modules/dunder-proto/README.md +54 -0
  108. package/example/node_modules/dunder-proto/get.d.ts +5 -0
  109. package/example/node_modules/dunder-proto/get.js +30 -0
  110. package/example/node_modules/dunder-proto/package.json +76 -0
  111. package/example/node_modules/dunder-proto/set.d.ts +5 -0
  112. package/example/node_modules/dunder-proto/set.js +35 -0
  113. package/example/node_modules/dunder-proto/test/get.js +34 -0
  114. package/example/node_modules/dunder-proto/test/index.js +4 -0
  115. package/example/node_modules/dunder-proto/test/set.js +50 -0
  116. package/example/node_modules/dunder-proto/tsconfig.json +9 -0
  117. package/example/node_modules/ee-first/LICENSE +22 -0
  118. package/example/node_modules/ee-first/README.md +80 -0
  119. package/example/node_modules/ee-first/index.js +95 -0
  120. package/example/node_modules/ee-first/package.json +29 -0
  121. package/example/node_modules/encodeurl/LICENSE +22 -0
  122. package/example/node_modules/encodeurl/README.md +109 -0
  123. package/example/node_modules/encodeurl/index.js +60 -0
  124. package/example/node_modules/encodeurl/package.json +40 -0
  125. package/example/node_modules/es-define-property/.eslintrc +13 -0
  126. package/example/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  127. package/example/node_modules/es-define-property/.nycrc +9 -0
  128. package/example/node_modules/es-define-property/CHANGELOG.md +29 -0
  129. package/example/node_modules/es-define-property/LICENSE +21 -0
  130. package/example/node_modules/es-define-property/README.md +49 -0
  131. package/example/node_modules/es-define-property/index.d.ts +3 -0
  132. package/example/node_modules/es-define-property/index.js +14 -0
  133. package/example/node_modules/es-define-property/package.json +81 -0
  134. package/example/node_modules/es-define-property/test/index.js +56 -0
  135. package/example/node_modules/es-define-property/tsconfig.json +10 -0
  136. package/example/node_modules/es-errors/.eslintrc +5 -0
  137. package/example/node_modules/es-errors/.github/FUNDING.yml +12 -0
  138. package/example/node_modules/es-errors/CHANGELOG.md +40 -0
  139. package/example/node_modules/es-errors/LICENSE +21 -0
  140. package/example/node_modules/es-errors/README.md +55 -0
  141. package/example/node_modules/es-errors/eval.d.ts +3 -0
  142. package/example/node_modules/es-errors/eval.js +4 -0
  143. package/example/node_modules/es-errors/index.d.ts +3 -0
  144. package/example/node_modules/es-errors/index.js +4 -0
  145. package/example/node_modules/es-errors/package.json +80 -0
  146. package/example/node_modules/es-errors/range.d.ts +3 -0
  147. package/example/node_modules/es-errors/range.js +4 -0
  148. package/example/node_modules/es-errors/ref.d.ts +3 -0
  149. package/example/node_modules/es-errors/ref.js +4 -0
  150. package/example/node_modules/es-errors/syntax.d.ts +3 -0
  151. package/example/node_modules/es-errors/syntax.js +4 -0
  152. package/example/node_modules/es-errors/test/index.js +19 -0
  153. package/example/node_modules/es-errors/tsconfig.json +49 -0
  154. package/example/node_modules/es-errors/type.d.ts +3 -0
  155. package/example/node_modules/es-errors/type.js +4 -0
  156. package/example/node_modules/es-errors/uri.d.ts +3 -0
  157. package/example/node_modules/es-errors/uri.js +4 -0
  158. package/example/node_modules/es-object-atoms/.eslintrc +16 -0
  159. package/example/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  160. package/example/node_modules/es-object-atoms/CHANGELOG.md +37 -0
  161. package/example/node_modules/es-object-atoms/LICENSE +21 -0
  162. package/example/node_modules/es-object-atoms/README.md +63 -0
  163. package/example/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  164. package/example/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  165. package/example/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  166. package/example/node_modules/es-object-atoms/ToObject.js +10 -0
  167. package/example/node_modules/es-object-atoms/index.d.ts +3 -0
  168. package/example/node_modules/es-object-atoms/index.js +4 -0
  169. package/example/node_modules/es-object-atoms/isObject.d.ts +3 -0
  170. package/example/node_modules/es-object-atoms/isObject.js +6 -0
  171. package/example/node_modules/es-object-atoms/package.json +80 -0
  172. package/example/node_modules/es-object-atoms/test/index.js +38 -0
  173. package/example/node_modules/es-object-atoms/tsconfig.json +6 -0
  174. package/example/node_modules/escape-html/LICENSE +24 -0
  175. package/example/node_modules/escape-html/Readme.md +43 -0
  176. package/example/node_modules/escape-html/index.js +78 -0
  177. package/example/node_modules/escape-html/package.json +24 -0
  178. package/example/node_modules/etag/HISTORY.md +83 -0
  179. package/example/node_modules/etag/LICENSE +22 -0
  180. package/example/node_modules/etag/README.md +159 -0
  181. package/example/node_modules/etag/index.js +131 -0
  182. package/example/node_modules/etag/package.json +47 -0
  183. package/example/node_modules/express/LICENSE +24 -0
  184. package/example/node_modules/express/Readme.md +276 -0
  185. package/example/node_modules/express/index.js +11 -0
  186. package/example/node_modules/express/lib/application.js +631 -0
  187. package/example/node_modules/express/lib/express.js +81 -0
  188. package/example/node_modules/express/lib/request.js +514 -0
  189. package/example/node_modules/express/lib/response.js +1053 -0
  190. package/example/node_modules/express/lib/utils.js +271 -0
  191. package/example/node_modules/express/lib/view.js +205 -0
  192. package/example/node_modules/express/package.json +99 -0
  193. package/example/node_modules/finalhandler/HISTORY.md +239 -0
  194. package/example/node_modules/finalhandler/LICENSE +22 -0
  195. package/example/node_modules/finalhandler/README.md +150 -0
  196. package/example/node_modules/finalhandler/index.js +293 -0
  197. package/example/node_modules/finalhandler/package.json +47 -0
  198. package/example/node_modules/forwarded/HISTORY.md +21 -0
  199. package/example/node_modules/forwarded/LICENSE +22 -0
  200. package/example/node_modules/forwarded/README.md +57 -0
  201. package/example/node_modules/forwarded/index.js +90 -0
  202. package/example/node_modules/forwarded/package.json +45 -0
  203. package/example/node_modules/fresh/HISTORY.md +80 -0
  204. package/example/node_modules/fresh/LICENSE +23 -0
  205. package/example/node_modules/fresh/README.md +117 -0
  206. package/example/node_modules/fresh/index.js +136 -0
  207. package/example/node_modules/fresh/package.json +46 -0
  208. package/example/node_modules/function-bind/.eslintrc +21 -0
  209. package/example/node_modules/function-bind/.github/FUNDING.yml +12 -0
  210. package/example/node_modules/function-bind/.github/SECURITY.md +3 -0
  211. package/example/node_modules/function-bind/.nycrc +13 -0
  212. package/example/node_modules/function-bind/CHANGELOG.md +136 -0
  213. package/example/node_modules/function-bind/LICENSE +20 -0
  214. package/example/node_modules/function-bind/README.md +46 -0
  215. package/example/node_modules/function-bind/implementation.js +84 -0
  216. package/example/node_modules/function-bind/index.js +5 -0
  217. package/example/node_modules/function-bind/package.json +87 -0
  218. package/example/node_modules/function-bind/test/.eslintrc +9 -0
  219. package/example/node_modules/function-bind/test/index.js +252 -0
  220. package/example/node_modules/get-intrinsic/.eslintrc +42 -0
  221. package/example/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  222. package/example/node_modules/get-intrinsic/.nycrc +9 -0
  223. package/example/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  224. package/example/node_modules/get-intrinsic/LICENSE +21 -0
  225. package/example/node_modules/get-intrinsic/README.md +71 -0
  226. package/example/node_modules/get-intrinsic/index.js +378 -0
  227. package/example/node_modules/get-intrinsic/package.json +97 -0
  228. package/example/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  229. package/example/node_modules/get-proto/.eslintrc +10 -0
  230. package/example/node_modules/get-proto/.github/FUNDING.yml +12 -0
  231. package/example/node_modules/get-proto/.nycrc +9 -0
  232. package/example/node_modules/get-proto/CHANGELOG.md +21 -0
  233. package/example/node_modules/get-proto/LICENSE +21 -0
  234. package/example/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  235. package/example/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  236. package/example/node_modules/get-proto/README.md +50 -0
  237. package/example/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  238. package/example/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  239. package/example/node_modules/get-proto/index.d.ts +5 -0
  240. package/example/node_modules/get-proto/index.js +27 -0
  241. package/example/node_modules/get-proto/package.json +81 -0
  242. package/example/node_modules/get-proto/test/index.js +68 -0
  243. package/example/node_modules/get-proto/tsconfig.json +9 -0
  244. package/example/node_modules/gopd/.eslintrc +16 -0
  245. package/example/node_modules/gopd/.github/FUNDING.yml +12 -0
  246. package/example/node_modules/gopd/CHANGELOG.md +45 -0
  247. package/example/node_modules/gopd/LICENSE +21 -0
  248. package/example/node_modules/gopd/README.md +40 -0
  249. package/example/node_modules/gopd/gOPD.d.ts +1 -0
  250. package/example/node_modules/gopd/gOPD.js +4 -0
  251. package/example/node_modules/gopd/index.d.ts +5 -0
  252. package/example/node_modules/gopd/index.js +15 -0
  253. package/example/node_modules/gopd/package.json +77 -0
  254. package/example/node_modules/gopd/test/index.js +36 -0
  255. package/example/node_modules/gopd/tsconfig.json +9 -0
  256. package/example/node_modules/has-symbols/.eslintrc +11 -0
  257. package/example/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  258. package/example/node_modules/has-symbols/.nycrc +9 -0
  259. package/example/node_modules/has-symbols/CHANGELOG.md +91 -0
  260. package/example/node_modules/has-symbols/LICENSE +21 -0
  261. package/example/node_modules/has-symbols/README.md +46 -0
  262. package/example/node_modules/has-symbols/index.d.ts +3 -0
  263. package/example/node_modules/has-symbols/index.js +14 -0
  264. package/example/node_modules/has-symbols/package.json +111 -0
  265. package/example/node_modules/has-symbols/shams.d.ts +3 -0
  266. package/example/node_modules/has-symbols/shams.js +45 -0
  267. package/example/node_modules/has-symbols/test/index.js +22 -0
  268. package/example/node_modules/has-symbols/test/shams/core-js.js +29 -0
  269. package/example/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  270. package/example/node_modules/has-symbols/test/tests.js +58 -0
  271. package/example/node_modules/has-symbols/tsconfig.json +10 -0
  272. package/example/node_modules/hasown/.eslintrc +5 -0
  273. package/example/node_modules/hasown/.github/FUNDING.yml +12 -0
  274. package/example/node_modules/hasown/.nycrc +13 -0
  275. package/example/node_modules/hasown/CHANGELOG.md +40 -0
  276. package/example/node_modules/hasown/LICENSE +21 -0
  277. package/example/node_modules/hasown/README.md +40 -0
  278. package/example/node_modules/hasown/index.d.ts +3 -0
  279. package/example/node_modules/hasown/index.js +8 -0
  280. package/example/node_modules/hasown/package.json +92 -0
  281. package/example/node_modules/hasown/tsconfig.json +6 -0
  282. package/example/node_modules/http-errors/HISTORY.md +186 -0
  283. package/example/node_modules/http-errors/LICENSE +23 -0
  284. package/example/node_modules/http-errors/README.md +169 -0
  285. package/example/node_modules/http-errors/index.js +290 -0
  286. package/example/node_modules/http-errors/package.json +54 -0
  287. package/example/node_modules/iconv-lite/LICENSE +21 -0
  288. package/example/node_modules/iconv-lite/README.md +138 -0
  289. package/example/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  290. package/example/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  291. package/example/node_modules/iconv-lite/encodings/index.js +23 -0
  292. package/example/node_modules/iconv-lite/encodings/internal.js +218 -0
  293. package/example/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  294. package/example/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  295. package/example/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  296. package/example/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  297. package/example/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  298. package/example/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  299. package/example/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  300. package/example/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  301. package/example/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  302. package/example/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  303. package/example/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  304. package/example/node_modules/iconv-lite/encodings/utf16.js +187 -0
  305. package/example/node_modules/iconv-lite/encodings/utf32.js +307 -0
  306. package/example/node_modules/iconv-lite/encodings/utf7.js +283 -0
  307. package/example/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  308. package/example/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  309. package/example/node_modules/iconv-lite/lib/index.d.ts +129 -0
  310. package/example/node_modules/iconv-lite/lib/index.js +182 -0
  311. package/example/node_modules/iconv-lite/lib/streams.js +105 -0
  312. package/example/node_modules/iconv-lite/package.json +70 -0
  313. package/example/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  314. package/example/node_modules/inherits/LICENSE +16 -0
  315. package/example/node_modules/inherits/README.md +42 -0
  316. package/example/node_modules/inherits/inherits.js +9 -0
  317. package/example/node_modules/inherits/inherits_browser.js +27 -0
  318. package/example/node_modules/inherits/package.json +29 -0
  319. package/example/node_modules/ipaddr.js/LICENSE +19 -0
  320. package/example/node_modules/ipaddr.js/README.md +233 -0
  321. package/example/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  322. package/example/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  323. package/example/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  324. package/example/node_modules/ipaddr.js/package.json +35 -0
  325. package/example/node_modules/is-promise/LICENSE +19 -0
  326. package/example/node_modules/is-promise/index.d.ts +2 -0
  327. package/example/node_modules/is-promise/index.js +6 -0
  328. package/example/node_modules/is-promise/index.mjs +3 -0
  329. package/example/node_modules/is-promise/package.json +30 -0
  330. package/example/node_modules/is-promise/readme.md +33 -0
  331. package/example/node_modules/math-intrinsics/.eslintrc +16 -0
  332. package/example/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  333. package/example/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  334. package/example/node_modules/math-intrinsics/LICENSE +21 -0
  335. package/example/node_modules/math-intrinsics/README.md +50 -0
  336. package/example/node_modules/math-intrinsics/abs.d.ts +1 -0
  337. package/example/node_modules/math-intrinsics/abs.js +4 -0
  338. package/example/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  339. package/example/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  340. package/example/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  341. package/example/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  342. package/example/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  343. package/example/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  344. package/example/node_modules/math-intrinsics/floor.d.ts +1 -0
  345. package/example/node_modules/math-intrinsics/floor.js +4 -0
  346. package/example/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  347. package/example/node_modules/math-intrinsics/isFinite.js +12 -0
  348. package/example/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  349. package/example/node_modules/math-intrinsics/isInteger.js +16 -0
  350. package/example/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  351. package/example/node_modules/math-intrinsics/isNaN.js +6 -0
  352. package/example/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  353. package/example/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  354. package/example/node_modules/math-intrinsics/max.d.ts +1 -0
  355. package/example/node_modules/math-intrinsics/max.js +4 -0
  356. package/example/node_modules/math-intrinsics/min.d.ts +1 -0
  357. package/example/node_modules/math-intrinsics/min.js +4 -0
  358. package/example/node_modules/math-intrinsics/mod.d.ts +3 -0
  359. package/example/node_modules/math-intrinsics/mod.js +9 -0
  360. package/example/node_modules/math-intrinsics/package.json +86 -0
  361. package/example/node_modules/math-intrinsics/pow.d.ts +1 -0
  362. package/example/node_modules/math-intrinsics/pow.js +4 -0
  363. package/example/node_modules/math-intrinsics/round.d.ts +1 -0
  364. package/example/node_modules/math-intrinsics/round.js +4 -0
  365. package/example/node_modules/math-intrinsics/sign.d.ts +3 -0
  366. package/example/node_modules/math-intrinsics/sign.js +11 -0
  367. package/example/node_modules/math-intrinsics/test/index.js +192 -0
  368. package/example/node_modules/math-intrinsics/tsconfig.json +3 -0
  369. package/example/node_modules/media-typer/HISTORY.md +50 -0
  370. package/example/node_modules/media-typer/LICENSE +22 -0
  371. package/example/node_modules/media-typer/README.md +93 -0
  372. package/example/node_modules/media-typer/index.js +143 -0
  373. package/example/node_modules/media-typer/package.json +33 -0
  374. package/example/node_modules/merge-descriptors/index.d.ts +11 -0
  375. package/example/node_modules/merge-descriptors/index.js +26 -0
  376. package/example/node_modules/merge-descriptors/license +11 -0
  377. package/example/node_modules/merge-descriptors/package.json +50 -0
  378. package/example/node_modules/merge-descriptors/readme.md +55 -0
  379. package/example/node_modules/mime-db/HISTORY.md +541 -0
  380. package/example/node_modules/mime-db/LICENSE +23 -0
  381. package/example/node_modules/mime-db/README.md +109 -0
  382. package/example/node_modules/mime-db/db.json +9342 -0
  383. package/example/node_modules/mime-db/index.js +12 -0
  384. package/example/node_modules/mime-db/package.json +56 -0
  385. package/example/node_modules/mime-types/HISTORY.md +428 -0
  386. package/example/node_modules/mime-types/LICENSE +23 -0
  387. package/example/node_modules/mime-types/README.md +126 -0
  388. package/example/node_modules/mime-types/index.js +211 -0
  389. package/example/node_modules/mime-types/mimeScore.js +57 -0
  390. package/example/node_modules/mime-types/package.json +49 -0
  391. package/example/node_modules/ms/index.js +162 -0
  392. package/example/node_modules/ms/license.md +21 -0
  393. package/example/node_modules/ms/package.json +38 -0
  394. package/example/node_modules/ms/readme.md +59 -0
  395. package/example/node_modules/negotiator/HISTORY.md +114 -0
  396. package/example/node_modules/negotiator/LICENSE +24 -0
  397. package/example/node_modules/negotiator/README.md +212 -0
  398. package/example/node_modules/negotiator/index.js +83 -0
  399. package/example/node_modules/negotiator/lib/charset.js +169 -0
  400. package/example/node_modules/negotiator/lib/encoding.js +205 -0
  401. package/example/node_modules/negotiator/lib/language.js +179 -0
  402. package/example/node_modules/negotiator/lib/mediaType.js +294 -0
  403. package/example/node_modules/negotiator/package.json +43 -0
  404. package/example/node_modules/object-inspect/.eslintrc +53 -0
  405. package/example/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  406. package/example/node_modules/object-inspect/.nycrc +13 -0
  407. package/example/node_modules/object-inspect/CHANGELOG.md +424 -0
  408. package/example/node_modules/object-inspect/LICENSE +21 -0
  409. package/example/node_modules/object-inspect/example/all.js +23 -0
  410. package/example/node_modules/object-inspect/example/circular.js +6 -0
  411. package/example/node_modules/object-inspect/example/fn.js +5 -0
  412. package/example/node_modules/object-inspect/example/inspect.js +10 -0
  413. package/example/node_modules/object-inspect/index.js +544 -0
  414. package/example/node_modules/object-inspect/package-support.json +20 -0
  415. package/example/node_modules/object-inspect/package.json +105 -0
  416. package/example/node_modules/object-inspect/readme.markdown +84 -0
  417. package/example/node_modules/object-inspect/test/bigint.js +58 -0
  418. package/example/node_modules/object-inspect/test/browser/dom.js +15 -0
  419. package/example/node_modules/object-inspect/test/circular.js +16 -0
  420. package/example/node_modules/object-inspect/test/deep.js +12 -0
  421. package/example/node_modules/object-inspect/test/element.js +53 -0
  422. package/example/node_modules/object-inspect/test/err.js +48 -0
  423. package/example/node_modules/object-inspect/test/fakes.js +29 -0
  424. package/example/node_modules/object-inspect/test/fn.js +76 -0
  425. package/example/node_modules/object-inspect/test/global.js +17 -0
  426. package/example/node_modules/object-inspect/test/has.js +15 -0
  427. package/example/node_modules/object-inspect/test/holes.js +15 -0
  428. package/example/node_modules/object-inspect/test/indent-option.js +271 -0
  429. package/example/node_modules/object-inspect/test/inspect.js +139 -0
  430. package/example/node_modules/object-inspect/test/lowbyte.js +12 -0
  431. package/example/node_modules/object-inspect/test/number.js +58 -0
  432. package/example/node_modules/object-inspect/test/quoteStyle.js +26 -0
  433. package/example/node_modules/object-inspect/test/toStringTag.js +40 -0
  434. package/example/node_modules/object-inspect/test/undef.js +12 -0
  435. package/example/node_modules/object-inspect/test/values.js +261 -0
  436. package/example/node_modules/object-inspect/test-core-js.js +26 -0
  437. package/example/node_modules/object-inspect/util.inspect.js +1 -0
  438. package/example/node_modules/on-finished/HISTORY.md +98 -0
  439. package/example/node_modules/on-finished/LICENSE +23 -0
  440. package/example/node_modules/on-finished/README.md +162 -0
  441. package/example/node_modules/on-finished/index.js +234 -0
  442. package/example/node_modules/on-finished/package.json +39 -0
  443. package/example/node_modules/once/LICENSE +15 -0
  444. package/example/node_modules/once/README.md +79 -0
  445. package/example/node_modules/once/once.js +42 -0
  446. package/example/node_modules/once/package.json +33 -0
  447. package/example/node_modules/parseurl/HISTORY.md +58 -0
  448. package/example/node_modules/parseurl/LICENSE +24 -0
  449. package/example/node_modules/parseurl/README.md +133 -0
  450. package/example/node_modules/parseurl/index.js +158 -0
  451. package/example/node_modules/parseurl/package.json +40 -0
  452. package/example/node_modules/path-to-regexp/LICENSE +21 -0
  453. package/example/node_modules/path-to-regexp/Readme.md +224 -0
  454. package/example/node_modules/path-to-regexp/dist/index.d.ts +144 -0
  455. package/example/node_modules/path-to-regexp/dist/index.js +409 -0
  456. package/example/node_modules/path-to-regexp/dist/index.js.map +1 -0
  457. package/example/node_modules/path-to-regexp/package.json +64 -0
  458. package/example/node_modules/proxy-addr/HISTORY.md +161 -0
  459. package/example/node_modules/proxy-addr/LICENSE +22 -0
  460. package/example/node_modules/proxy-addr/README.md +139 -0
  461. package/example/node_modules/proxy-addr/index.js +327 -0
  462. package/example/node_modules/proxy-addr/package.json +47 -0
  463. package/example/node_modules/qs/.editorconfig +46 -0
  464. package/example/node_modules/qs/.github/FUNDING.yml +12 -0
  465. package/example/node_modules/qs/.github/SECURITY.md +11 -0
  466. package/example/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  467. package/example/node_modules/qs/.nycrc +13 -0
  468. package/example/node_modules/qs/CHANGELOG.md +806 -0
  469. package/example/node_modules/qs/LICENSE.md +29 -0
  470. package/example/node_modules/qs/README.md +758 -0
  471. package/example/node_modules/qs/dist/qs.js +141 -0
  472. package/example/node_modules/qs/eslint.config.mjs +56 -0
  473. package/example/node_modules/qs/lib/formats.js +23 -0
  474. package/example/node_modules/qs/lib/index.js +11 -0
  475. package/example/node_modules/qs/lib/parse.js +373 -0
  476. package/example/node_modules/qs/lib/stringify.js +356 -0
  477. package/example/node_modules/qs/lib/utils.js +342 -0
  478. package/example/node_modules/qs/package.json +94 -0
  479. package/example/node_modules/qs/test/empty-keys-cases.js +267 -0
  480. package/example/node_modules/qs/test/parse.js +1568 -0
  481. package/example/node_modules/qs/test/stringify.js +1310 -0
  482. package/example/node_modules/qs/test/utils.js +404 -0
  483. package/example/node_modules/range-parser/HISTORY.md +56 -0
  484. package/example/node_modules/range-parser/LICENSE +23 -0
  485. package/example/node_modules/range-parser/README.md +84 -0
  486. package/example/node_modules/range-parser/index.js +162 -0
  487. package/example/node_modules/range-parser/package.json +44 -0
  488. package/example/node_modules/raw-body/LICENSE +22 -0
  489. package/example/node_modules/raw-body/README.md +223 -0
  490. package/example/node_modules/raw-body/index.d.ts +85 -0
  491. package/example/node_modules/raw-body/index.js +336 -0
  492. package/example/node_modules/raw-body/package.json +46 -0
  493. package/example/node_modules/router/HISTORY.md +228 -0
  494. package/example/node_modules/router/LICENSE +23 -0
  495. package/example/node_modules/router/README.md +416 -0
  496. package/example/node_modules/router/index.js +748 -0
  497. package/example/node_modules/router/lib/layer.js +247 -0
  498. package/example/node_modules/router/lib/route.js +242 -0
  499. package/example/node_modules/router/package.json +44 -0
  500. package/example/node_modules/safer-buffer/LICENSE +21 -0
  501. package/example/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  502. package/example/node_modules/safer-buffer/Readme.md +156 -0
  503. package/example/node_modules/safer-buffer/dangerous.js +58 -0
  504. package/example/node_modules/safer-buffer/package.json +34 -0
  505. package/example/node_modules/safer-buffer/safer.js +77 -0
  506. package/example/node_modules/safer-buffer/tests.js +406 -0
  507. package/example/node_modules/send/LICENSE +23 -0
  508. package/example/node_modules/send/README.md +317 -0
  509. package/example/node_modules/send/index.js +997 -0
  510. package/example/node_modules/send/package.json +63 -0
  511. package/example/node_modules/serve-static/LICENSE +25 -0
  512. package/example/node_modules/serve-static/README.md +253 -0
  513. package/example/node_modules/serve-static/index.js +208 -0
  514. package/example/node_modules/serve-static/package.json +44 -0
  515. package/example/node_modules/setprototypeof/LICENSE +13 -0
  516. package/example/node_modules/setprototypeof/README.md +31 -0
  517. package/example/node_modules/setprototypeof/index.d.ts +2 -0
  518. package/example/node_modules/setprototypeof/index.js +17 -0
  519. package/example/node_modules/setprototypeof/package.json +38 -0
  520. package/example/node_modules/setprototypeof/test/index.js +24 -0
  521. package/example/node_modules/side-channel/.editorconfig +9 -0
  522. package/example/node_modules/side-channel/.eslintrc +12 -0
  523. package/example/node_modules/side-channel/.github/FUNDING.yml +12 -0
  524. package/example/node_modules/side-channel/.nycrc +13 -0
  525. package/example/node_modules/side-channel/CHANGELOG.md +110 -0
  526. package/example/node_modules/side-channel/LICENSE +21 -0
  527. package/example/node_modules/side-channel/README.md +61 -0
  528. package/example/node_modules/side-channel/index.d.ts +14 -0
  529. package/example/node_modules/side-channel/index.js +43 -0
  530. package/example/node_modules/side-channel/package.json +85 -0
  531. package/example/node_modules/side-channel/test/index.js +104 -0
  532. package/example/node_modules/side-channel/tsconfig.json +9 -0
  533. package/example/node_modules/side-channel-list/.editorconfig +9 -0
  534. package/example/node_modules/side-channel-list/.eslintrc +11 -0
  535. package/example/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  536. package/example/node_modules/side-channel-list/.nycrc +13 -0
  537. package/example/node_modules/side-channel-list/CHANGELOG.md +15 -0
  538. package/example/node_modules/side-channel-list/LICENSE +21 -0
  539. package/example/node_modules/side-channel-list/README.md +62 -0
  540. package/example/node_modules/side-channel-list/index.d.ts +13 -0
  541. package/example/node_modules/side-channel-list/index.js +113 -0
  542. package/example/node_modules/side-channel-list/list.d.ts +14 -0
  543. package/example/node_modules/side-channel-list/package.json +77 -0
  544. package/example/node_modules/side-channel-list/test/index.js +104 -0
  545. package/example/node_modules/side-channel-list/tsconfig.json +9 -0
  546. package/example/node_modules/side-channel-map/.editorconfig +9 -0
  547. package/example/node_modules/side-channel-map/.eslintrc +11 -0
  548. package/example/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  549. package/example/node_modules/side-channel-map/.nycrc +13 -0
  550. package/example/node_modules/side-channel-map/CHANGELOG.md +22 -0
  551. package/example/node_modules/side-channel-map/LICENSE +21 -0
  552. package/example/node_modules/side-channel-map/README.md +62 -0
  553. package/example/node_modules/side-channel-map/index.d.ts +15 -0
  554. package/example/node_modules/side-channel-map/index.js +68 -0
  555. package/example/node_modules/side-channel-map/package.json +80 -0
  556. package/example/node_modules/side-channel-map/test/index.js +114 -0
  557. package/example/node_modules/side-channel-map/tsconfig.json +9 -0
  558. package/example/node_modules/side-channel-weakmap/.editorconfig +9 -0
  559. package/example/node_modules/side-channel-weakmap/.eslintrc +12 -0
  560. package/example/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  561. package/example/node_modules/side-channel-weakmap/.nycrc +13 -0
  562. package/example/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  563. package/example/node_modules/side-channel-weakmap/LICENSE +21 -0
  564. package/example/node_modules/side-channel-weakmap/README.md +62 -0
  565. package/example/node_modules/side-channel-weakmap/index.d.ts +15 -0
  566. package/example/node_modules/side-channel-weakmap/index.js +84 -0
  567. package/example/node_modules/side-channel-weakmap/package.json +87 -0
  568. package/example/node_modules/side-channel-weakmap/test/index.js +114 -0
  569. package/example/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  570. package/example/node_modules/statuses/HISTORY.md +87 -0
  571. package/example/node_modules/statuses/LICENSE +23 -0
  572. package/example/node_modules/statuses/README.md +139 -0
  573. package/example/node_modules/statuses/codes.json +65 -0
  574. package/example/node_modules/statuses/index.js +146 -0
  575. package/example/node_modules/statuses/package.json +49 -0
  576. package/example/node_modules/toidentifier/HISTORY.md +9 -0
  577. package/example/node_modules/toidentifier/LICENSE +21 -0
  578. package/example/node_modules/toidentifier/README.md +61 -0
  579. package/example/node_modules/toidentifier/index.js +32 -0
  580. package/example/node_modules/toidentifier/package.json +38 -0
  581. package/example/node_modules/type-is/HISTORY.md +292 -0
  582. package/example/node_modules/type-is/LICENSE +23 -0
  583. package/example/node_modules/type-is/README.md +198 -0
  584. package/example/node_modules/type-is/index.js +250 -0
  585. package/example/node_modules/type-is/package.json +47 -0
  586. package/example/node_modules/unpipe/HISTORY.md +4 -0
  587. package/example/node_modules/unpipe/LICENSE +22 -0
  588. package/example/node_modules/unpipe/README.md +43 -0
  589. package/example/node_modules/unpipe/index.js +69 -0
  590. package/example/node_modules/unpipe/package.json +27 -0
  591. package/example/node_modules/vary/HISTORY.md +39 -0
  592. package/example/node_modules/vary/LICENSE +22 -0
  593. package/example/node_modules/vary/README.md +101 -0
  594. package/example/node_modules/vary/index.js +149 -0
  595. package/example/node_modules/vary/package.json +43 -0
  596. package/example/node_modules/wrappy/LICENSE +15 -0
  597. package/example/node_modules/wrappy/README.md +36 -0
  598. package/example/node_modules/wrappy/package.json +29 -0
  599. package/example/node_modules/wrappy/wrappy.js +33 -0
  600. package/example/package-lock.json +101 -142
  601. package/example/package.json +2 -11
  602. package/package.json +11 -23
  603. package/src/cli/archiveSystem.js +119 -0
  604. package/src/cli/doctor.js +87 -0
  605. package/src/cli/index.js +99 -0
  606. package/src/cli/packageManager.js +52 -0
  607. package/src/cli/repl.js +108 -0
  608. package/src/cli/scaffolder.js +68 -0
  609. package/src/cli/testRunner.js +99 -0
  610. package/src/runtime/runner.js +383 -0
  611. package/src/stdlib/index.js +297 -0
  612. package/src/stdlib/sandbox.js +32 -0
  613. package/test_fenrir.sh +435 -0
  614. package/App/App.axaml +0 -8
  615. package/App/App.axaml.cs +0 -23
  616. package/App/FenrirLinux.csproj +0 -27
  617. package/App/LICENSE +0 -674
  618. package/App/MainWindow.axaml +0 -10
  619. package/App/MainWindow.axaml.cs +0 -16
  620. package/App/Program.cs +0 -19
  621. package/App/README.md +0 -24
  622. package/App/Views/InstallationView.axaml +0 -48
  623. package/App/Views/InstallationView.axaml.cs +0 -204
  624. package/App/Views/PasswordView.axaml +0 -34
  625. package/App/Views/PasswordView.axaml.cs +0 -62
  626. package/App/Views/WelcomeView.axaml +0 -63
  627. package/App/Views/WelcomeView.axaml.cs +0 -22
  628. package/App/app.manifest +0 -18
  629. package/App/images/screenshot1.png +0 -0
  630. package/App/images/screenshot2.png +0 -0
  631. package/App/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache +0 -1
  632. package/App/obj/Debug/net9.0/Avalonia/original.dll +0 -0
  633. package/App/obj/Debug/net9.0/Avalonia/original.pdb +0 -0
  634. package/App/obj/Debug/net9.0/Avalonia/original.ref.dll +0 -0
  635. package/App/obj/Debug/net9.0/Avalonia/references +0 -202
  636. package/App/obj/Debug/net9.0/Avalonia/resources +0 -0
  637. package/App/obj/Debug/net9.0/FenrirLi.7B98506C.Up2Date +0 -0
  638. package/App/obj/Debug/net9.0/FenrirLinux.AssemblyInfo.cs +0 -22
  639. package/App/obj/Debug/net9.0/FenrirLinux.AssemblyInfoInputs.cache +0 -1
  640. package/App/obj/Debug/net9.0/FenrirLinux.GeneratedMSBuildEditorConfig.editorconfig +0 -35
  641. package/App/obj/Debug/net9.0/FenrirLinux.assets.cache +0 -0
  642. package/App/obj/Debug/net9.0/FenrirLinux.csproj.AssemblyReference.cache +0 -0
  643. package/App/obj/Debug/net9.0/FenrirLinux.csproj.CoreCompileInputs.cache +0 -1
  644. package/App/obj/Debug/net9.0/FenrirLinux.csproj.FileListAbsolute.txt +0 -135
  645. package/App/obj/Debug/net9.0/FenrirLinux.dll +0 -0
  646. package/App/obj/Debug/net9.0/FenrirLinux.genruntimeconfig.cache +0 -1
  647. package/App/obj/Debug/net9.0/FenrirLinux.pdb +0 -0
  648. package/App/obj/Debug/net9.0/apphost +0 -0
  649. package/App/obj/Debug/net9.0/ref/FenrirLinux.dll +0 -0
  650. package/App/obj/Debug/net9.0/refint/FenrirLinux.dll +0 -0
  651. package/App/obj/FenrirLinux.csproj.nuget.dgspec.json +0 -115
  652. package/App/obj/FenrirLinux.csproj.nuget.g.props +0 -26
  653. package/App/obj/FenrirLinux.csproj.nuget.g.targets +0 -9
  654. package/App/obj/Release/net9.0/linux-x64/Avalonia/Resources.Inputs.cache +0 -1
  655. package/App/obj/Release/net9.0/linux-x64/Avalonia/original.dll +0 -0
  656. package/App/obj/Release/net9.0/linux-x64/Avalonia/original.pdb +0 -0
  657. package/App/obj/Release/net9.0/linux-x64/Avalonia/original.ref.dll +0 -0
  658. package/App/obj/Release/net9.0/linux-x64/Avalonia/references +0 -194
  659. package/App/obj/Release/net9.0/linux-x64/Avalonia/resources +0 -0
  660. package/App/obj/Release/net9.0/linux-x64/FenrirLi.7B98506C.Up2Date +0 -0
  661. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.AssemblyInfo.cs +0 -22
  662. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.AssemblyInfoInputs.cache +0 -1
  663. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.GeneratedMSBuildEditorConfig.editorconfig +0 -39
  664. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.assets.cache +0 -0
  665. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.csproj.AssemblyReference.cache +0 -0
  666. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.csproj.CoreCompileInputs.cache +0 -1
  667. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.csproj.FileListAbsolute.txt +0 -238
  668. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.deps.json +0 -1317
  669. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.dll +0 -0
  670. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.genbundle.cache +0 -1
  671. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.genpublishdeps.cache +0 -1
  672. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.genruntimeconfig.cache +0 -1
  673. package/App/obj/Release/net9.0/linux-x64/FenrirLinux.pdb +0 -0
  674. package/App/obj/Release/net9.0/linux-x64/PublishOutputs.fac9e24064.txt +0 -4
  675. package/App/obj/Release/net9.0/linux-x64/apphost +0 -0
  676. package/App/obj/Release/net9.0/linux-x64/ref/FenrirLinux.dll +0 -0
  677. package/App/obj/Release/net9.0/linux-x64/refint/FenrirLinux.dll +0 -0
  678. package/App/obj/Release/net9.0/linux-x64/singlefilehost +0 -0
  679. package/App/obj/project.assets.json +0 -2463
  680. package/App/obj/project.nuget.cache +0 -47
  681. package/LICENSE +0 -674
  682. package/dist/archiveSystem.js +0 -219
  683. package/dist/cli.js +0 -188
  684. package/dist/packageManager.js +0 -98
  685. package/dist/parser.js +0 -24
  686. package/dist/runtime.js +0 -99
  687. package/dist/transformer.js +0 -120
  688. package/example/fenrir+aperium/aperium.json +0 -17
  689. package/example/fenrir+aperium/aperium_modules/hello-world/index.js +0 -4
  690. package/example/fenrir+aperium/aperium_modules/hello-world/module.json +0 -6
  691. package/example/fenrir+aperium/app.fnr +0 -19
  692. package/example/fenrir+aperium/package.json +0 -17
  693. package/src/archiveSystem.ts +0 -264
  694. package/src/cli.ts +0 -216
  695. package/src/packageManager.ts +0 -119
  696. package/src/parser.ts +0 -36
  697. package/src/runtime.ts +0 -111
  698. package/src/transformer.ts +0 -147
  699. package/tsconfig.json +0 -15
@@ -1,1317 +0,0 @@
1
- {
2
- "runtimeTarget": {
3
- "name": ".NETCoreApp,Version=v9.0/linux-x64",
4
- "signature": ""
5
- },
6
- "compilationOptions": {},
7
- "targets": {
8
- ".NETCoreApp,Version=v9.0": {},
9
- ".NETCoreApp,Version=v9.0/linux-x64": {
10
- "FenrirLinux/1.0.0": {
11
- "dependencies": {
12
- "Avalonia": "11.0.6",
13
- "Avalonia.Desktop": "11.0.6",
14
- "Avalonia.Fonts.Inter": "11.0.6",
15
- "Avalonia.ReactiveUI": "11.0.6",
16
- "Avalonia.Themes.Fluent": "11.0.6",
17
- "Microsoft.NET.ILLink.Tasks": "9.0.8",
18
- "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "9.0.8"
19
- },
20
- "runtime": {
21
- "FenrirLinux.dll": {}
22
- }
23
- },
24
- "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/9.0.8": {
25
- "runtime": {
26
- "Microsoft.CSharp.dll": {
27
- "assemblyVersion": "9.0.0.0",
28
- "fileVersion": "9.0.825.36511"
29
- },
30
- "Microsoft.VisualBasic.Core.dll": {
31
- "assemblyVersion": "14.0.0.0",
32
- "fileVersion": "14.0.825.36511"
33
- },
34
- "Microsoft.VisualBasic.dll": {
35
- "assemblyVersion": "10.0.0.0",
36
- "fileVersion": "9.0.825.36511"
37
- },
38
- "Microsoft.Win32.Primitives.dll": {
39
- "assemblyVersion": "9.0.0.0",
40
- "fileVersion": "9.0.825.36511"
41
- },
42
- "Microsoft.Win32.Registry.dll": {
43
- "assemblyVersion": "9.0.0.0",
44
- "fileVersion": "9.0.825.36511"
45
- },
46
- "System.AppContext.dll": {
47
- "assemblyVersion": "9.0.0.0",
48
- "fileVersion": "9.0.825.36511"
49
- },
50
- "System.Buffers.dll": {
51
- "assemblyVersion": "9.0.0.0",
52
- "fileVersion": "9.0.825.36511"
53
- },
54
- "System.Collections.Concurrent.dll": {
55
- "assemblyVersion": "9.0.0.0",
56
- "fileVersion": "9.0.825.36511"
57
- },
58
- "System.Collections.Immutable.dll": {
59
- "assemblyVersion": "9.0.0.0",
60
- "fileVersion": "9.0.825.36511"
61
- },
62
- "System.Collections.NonGeneric.dll": {
63
- "assemblyVersion": "9.0.0.0",
64
- "fileVersion": "9.0.825.36511"
65
- },
66
- "System.Collections.Specialized.dll": {
67
- "assemblyVersion": "9.0.0.0",
68
- "fileVersion": "9.0.825.36511"
69
- },
70
- "System.Collections.dll": {
71
- "assemblyVersion": "9.0.0.0",
72
- "fileVersion": "9.0.825.36511"
73
- },
74
- "System.ComponentModel.Annotations.dll": {
75
- "assemblyVersion": "9.0.0.0",
76
- "fileVersion": "9.0.825.36511"
77
- },
78
- "System.ComponentModel.DataAnnotations.dll": {
79
- "assemblyVersion": "4.0.0.0",
80
- "fileVersion": "9.0.825.36511"
81
- },
82
- "System.ComponentModel.EventBasedAsync.dll": {
83
- "assemblyVersion": "9.0.0.0",
84
- "fileVersion": "9.0.825.36511"
85
- },
86
- "System.ComponentModel.Primitives.dll": {
87
- "assemblyVersion": "9.0.0.0",
88
- "fileVersion": "9.0.825.36511"
89
- },
90
- "System.ComponentModel.TypeConverter.dll": {
91
- "assemblyVersion": "9.0.0.0",
92
- "fileVersion": "9.0.825.36511"
93
- },
94
- "System.ComponentModel.dll": {
95
- "assemblyVersion": "9.0.0.0",
96
- "fileVersion": "9.0.825.36511"
97
- },
98
- "System.Configuration.dll": {
99
- "assemblyVersion": "4.0.0.0",
100
- "fileVersion": "9.0.825.36511"
101
- },
102
- "System.Console.dll": {
103
- "assemblyVersion": "9.0.0.0",
104
- "fileVersion": "9.0.825.36511"
105
- },
106
- "System.Core.dll": {
107
- "assemblyVersion": "4.0.0.0",
108
- "fileVersion": "9.0.825.36511"
109
- },
110
- "System.Data.Common.dll": {
111
- "assemblyVersion": "9.0.0.0",
112
- "fileVersion": "9.0.825.36511"
113
- },
114
- "System.Data.DataSetExtensions.dll": {
115
- "assemblyVersion": "9.0.0.0",
116
- "fileVersion": "9.0.825.36511"
117
- },
118
- "System.Data.dll": {
119
- "assemblyVersion": "4.0.0.0",
120
- "fileVersion": "9.0.825.36511"
121
- },
122
- "System.Diagnostics.Contracts.dll": {
123
- "assemblyVersion": "9.0.0.0",
124
- "fileVersion": "9.0.825.36511"
125
- },
126
- "System.Diagnostics.Debug.dll": {
127
- "assemblyVersion": "9.0.0.0",
128
- "fileVersion": "9.0.825.36511"
129
- },
130
- "System.Diagnostics.DiagnosticSource.dll": {
131
- "assemblyVersion": "9.0.0.0",
132
- "fileVersion": "9.0.825.36511"
133
- },
134
- "System.Diagnostics.FileVersionInfo.dll": {
135
- "assemblyVersion": "9.0.0.0",
136
- "fileVersion": "9.0.825.36511"
137
- },
138
- "System.Diagnostics.Process.dll": {
139
- "assemblyVersion": "9.0.0.0",
140
- "fileVersion": "9.0.825.36511"
141
- },
142
- "System.Diagnostics.StackTrace.dll": {
143
- "assemblyVersion": "9.0.0.0",
144
- "fileVersion": "9.0.825.36511"
145
- },
146
- "System.Diagnostics.TextWriterTraceListener.dll": {
147
- "assemblyVersion": "9.0.0.0",
148
- "fileVersion": "9.0.825.36511"
149
- },
150
- "System.Diagnostics.Tools.dll": {
151
- "assemblyVersion": "9.0.0.0",
152
- "fileVersion": "9.0.825.36511"
153
- },
154
- "System.Diagnostics.TraceSource.dll": {
155
- "assemblyVersion": "9.0.0.0",
156
- "fileVersion": "9.0.825.36511"
157
- },
158
- "System.Diagnostics.Tracing.dll": {
159
- "assemblyVersion": "9.0.0.0",
160
- "fileVersion": "9.0.825.36511"
161
- },
162
- "System.Drawing.Primitives.dll": {
163
- "assemblyVersion": "9.0.0.0",
164
- "fileVersion": "9.0.825.36511"
165
- },
166
- "System.Drawing.dll": {
167
- "assemblyVersion": "4.0.0.0",
168
- "fileVersion": "9.0.825.36511"
169
- },
170
- "System.Dynamic.Runtime.dll": {
171
- "assemblyVersion": "9.0.0.0",
172
- "fileVersion": "9.0.825.36511"
173
- },
174
- "System.Formats.Asn1.dll": {
175
- "assemblyVersion": "9.0.0.0",
176
- "fileVersion": "9.0.825.36511"
177
- },
178
- "System.Formats.Tar.dll": {
179
- "assemblyVersion": "9.0.0.0",
180
- "fileVersion": "9.0.825.36511"
181
- },
182
- "System.Globalization.Calendars.dll": {
183
- "assemblyVersion": "9.0.0.0",
184
- "fileVersion": "9.0.825.36511"
185
- },
186
- "System.Globalization.Extensions.dll": {
187
- "assemblyVersion": "9.0.0.0",
188
- "fileVersion": "9.0.825.36511"
189
- },
190
- "System.Globalization.dll": {
191
- "assemblyVersion": "9.0.0.0",
192
- "fileVersion": "9.0.825.36511"
193
- },
194
- "System.IO.Compression.Brotli.dll": {
195
- "assemblyVersion": "9.0.0.0",
196
- "fileVersion": "9.0.825.36511"
197
- },
198
- "System.IO.Compression.FileSystem.dll": {
199
- "assemblyVersion": "4.0.0.0",
200
- "fileVersion": "9.0.825.36511"
201
- },
202
- "System.IO.Compression.ZipFile.dll": {
203
- "assemblyVersion": "9.0.0.0",
204
- "fileVersion": "9.0.825.36511"
205
- },
206
- "System.IO.Compression.dll": {
207
- "assemblyVersion": "9.0.0.0",
208
- "fileVersion": "9.0.825.36511"
209
- },
210
- "System.IO.FileSystem.AccessControl.dll": {
211
- "assemblyVersion": "9.0.0.0",
212
- "fileVersion": "9.0.825.36511"
213
- },
214
- "System.IO.FileSystem.DriveInfo.dll": {
215
- "assemblyVersion": "9.0.0.0",
216
- "fileVersion": "9.0.825.36511"
217
- },
218
- "System.IO.FileSystem.Primitives.dll": {
219
- "assemblyVersion": "9.0.0.0",
220
- "fileVersion": "9.0.825.36511"
221
- },
222
- "System.IO.FileSystem.Watcher.dll": {
223
- "assemblyVersion": "9.0.0.0",
224
- "fileVersion": "9.0.825.36511"
225
- },
226
- "System.IO.FileSystem.dll": {
227
- "assemblyVersion": "9.0.0.0",
228
- "fileVersion": "9.0.825.36511"
229
- },
230
- "System.IO.IsolatedStorage.dll": {
231
- "assemblyVersion": "9.0.0.0",
232
- "fileVersion": "9.0.825.36511"
233
- },
234
- "System.IO.MemoryMappedFiles.dll": {
235
- "assemblyVersion": "9.0.0.0",
236
- "fileVersion": "9.0.825.36511"
237
- },
238
- "System.IO.Pipelines.dll": {
239
- "assemblyVersion": "9.0.0.0",
240
- "fileVersion": "9.0.825.36511"
241
- },
242
- "System.IO.Pipes.AccessControl.dll": {
243
- "assemblyVersion": "9.0.0.0",
244
- "fileVersion": "9.0.825.36511"
245
- },
246
- "System.IO.Pipes.dll": {
247
- "assemblyVersion": "9.0.0.0",
248
- "fileVersion": "9.0.825.36511"
249
- },
250
- "System.IO.UnmanagedMemoryStream.dll": {
251
- "assemblyVersion": "9.0.0.0",
252
- "fileVersion": "9.0.825.36511"
253
- },
254
- "System.IO.dll": {
255
- "assemblyVersion": "9.0.0.0",
256
- "fileVersion": "9.0.825.36511"
257
- },
258
- "System.Linq.Expressions.dll": {
259
- "assemblyVersion": "9.0.0.0",
260
- "fileVersion": "9.0.825.36511"
261
- },
262
- "System.Linq.Parallel.dll": {
263
- "assemblyVersion": "9.0.0.0",
264
- "fileVersion": "9.0.825.36511"
265
- },
266
- "System.Linq.Queryable.dll": {
267
- "assemblyVersion": "9.0.0.0",
268
- "fileVersion": "9.0.825.36511"
269
- },
270
- "System.Linq.dll": {
271
- "assemblyVersion": "9.0.0.0",
272
- "fileVersion": "9.0.825.36511"
273
- },
274
- "System.Memory.dll": {
275
- "assemblyVersion": "9.0.0.0",
276
- "fileVersion": "9.0.825.36511"
277
- },
278
- "System.Net.Http.Json.dll": {
279
- "assemblyVersion": "9.0.0.0",
280
- "fileVersion": "9.0.825.36511"
281
- },
282
- "System.Net.Http.dll": {
283
- "assemblyVersion": "9.0.0.0",
284
- "fileVersion": "9.0.825.36511"
285
- },
286
- "System.Net.HttpListener.dll": {
287
- "assemblyVersion": "9.0.0.0",
288
- "fileVersion": "9.0.825.36511"
289
- },
290
- "System.Net.Mail.dll": {
291
- "assemblyVersion": "9.0.0.0",
292
- "fileVersion": "9.0.825.36511"
293
- },
294
- "System.Net.NameResolution.dll": {
295
- "assemblyVersion": "9.0.0.0",
296
- "fileVersion": "9.0.825.36511"
297
- },
298
- "System.Net.NetworkInformation.dll": {
299
- "assemblyVersion": "9.0.0.0",
300
- "fileVersion": "9.0.825.36511"
301
- },
302
- "System.Net.Ping.dll": {
303
- "assemblyVersion": "9.0.0.0",
304
- "fileVersion": "9.0.825.36511"
305
- },
306
- "System.Net.Primitives.dll": {
307
- "assemblyVersion": "9.0.0.0",
308
- "fileVersion": "9.0.825.36511"
309
- },
310
- "System.Net.Quic.dll": {
311
- "assemblyVersion": "9.0.0.0",
312
- "fileVersion": "9.0.825.36511"
313
- },
314
- "System.Net.Requests.dll": {
315
- "assemblyVersion": "9.0.0.0",
316
- "fileVersion": "9.0.825.36511"
317
- },
318
- "System.Net.Security.dll": {
319
- "assemblyVersion": "9.0.0.0",
320
- "fileVersion": "9.0.825.36511"
321
- },
322
- "System.Net.ServicePoint.dll": {
323
- "assemblyVersion": "9.0.0.0",
324
- "fileVersion": "9.0.825.36511"
325
- },
326
- "System.Net.Sockets.dll": {
327
- "assemblyVersion": "9.0.0.0",
328
- "fileVersion": "9.0.825.36511"
329
- },
330
- "System.Net.WebClient.dll": {
331
- "assemblyVersion": "9.0.0.0",
332
- "fileVersion": "9.0.825.36511"
333
- },
334
- "System.Net.WebHeaderCollection.dll": {
335
- "assemblyVersion": "9.0.0.0",
336
- "fileVersion": "9.0.825.36511"
337
- },
338
- "System.Net.WebProxy.dll": {
339
- "assemblyVersion": "9.0.0.0",
340
- "fileVersion": "9.0.825.36511"
341
- },
342
- "System.Net.WebSockets.Client.dll": {
343
- "assemblyVersion": "9.0.0.0",
344
- "fileVersion": "9.0.825.36511"
345
- },
346
- "System.Net.WebSockets.dll": {
347
- "assemblyVersion": "9.0.0.0",
348
- "fileVersion": "9.0.825.36511"
349
- },
350
- "System.Net.dll": {
351
- "assemblyVersion": "4.0.0.0",
352
- "fileVersion": "9.0.825.36511"
353
- },
354
- "System.Numerics.Vectors.dll": {
355
- "assemblyVersion": "9.0.0.0",
356
- "fileVersion": "9.0.825.36511"
357
- },
358
- "System.Numerics.dll": {
359
- "assemblyVersion": "4.0.0.0",
360
- "fileVersion": "9.0.825.36511"
361
- },
362
- "System.ObjectModel.dll": {
363
- "assemblyVersion": "9.0.0.0",
364
- "fileVersion": "9.0.825.36511"
365
- },
366
- "System.Private.CoreLib.dll": {
367
- "assemblyVersion": "9.0.0.0",
368
- "fileVersion": "9.0.825.36511"
369
- },
370
- "System.Private.DataContractSerialization.dll": {
371
- "assemblyVersion": "9.0.0.0",
372
- "fileVersion": "9.0.825.36511"
373
- },
374
- "System.Private.Uri.dll": {
375
- "assemblyVersion": "9.0.0.0",
376
- "fileVersion": "9.0.825.36511"
377
- },
378
- "System.Private.Xml.Linq.dll": {
379
- "assemblyVersion": "9.0.0.0",
380
- "fileVersion": "9.0.825.36511"
381
- },
382
- "System.Private.Xml.dll": {
383
- "assemblyVersion": "9.0.0.0",
384
- "fileVersion": "9.0.825.36511"
385
- },
386
- "System.Reflection.DispatchProxy.dll": {
387
- "assemblyVersion": "9.0.0.0",
388
- "fileVersion": "9.0.825.36511"
389
- },
390
- "System.Reflection.Emit.ILGeneration.dll": {
391
- "assemblyVersion": "9.0.0.0",
392
- "fileVersion": "9.0.825.36511"
393
- },
394
- "System.Reflection.Emit.Lightweight.dll": {
395
- "assemblyVersion": "9.0.0.0",
396
- "fileVersion": "9.0.825.36511"
397
- },
398
- "System.Reflection.Emit.dll": {
399
- "assemblyVersion": "9.0.0.0",
400
- "fileVersion": "9.0.825.36511"
401
- },
402
- "System.Reflection.Extensions.dll": {
403
- "assemblyVersion": "9.0.0.0",
404
- "fileVersion": "9.0.825.36511"
405
- },
406
- "System.Reflection.Metadata.dll": {
407
- "assemblyVersion": "9.0.0.0",
408
- "fileVersion": "9.0.825.36511"
409
- },
410
- "System.Reflection.Primitives.dll": {
411
- "assemblyVersion": "9.0.0.0",
412
- "fileVersion": "9.0.825.36511"
413
- },
414
- "System.Reflection.TypeExtensions.dll": {
415
- "assemblyVersion": "9.0.0.0",
416
- "fileVersion": "9.0.825.36511"
417
- },
418
- "System.Reflection.dll": {
419
- "assemblyVersion": "9.0.0.0",
420
- "fileVersion": "9.0.825.36511"
421
- },
422
- "System.Resources.Reader.dll": {
423
- "assemblyVersion": "9.0.0.0",
424
- "fileVersion": "9.0.825.36511"
425
- },
426
- "System.Resources.ResourceManager.dll": {
427
- "assemblyVersion": "9.0.0.0",
428
- "fileVersion": "9.0.825.36511"
429
- },
430
- "System.Resources.Writer.dll": {
431
- "assemblyVersion": "9.0.0.0",
432
- "fileVersion": "9.0.825.36511"
433
- },
434
- "System.Runtime.CompilerServices.Unsafe.dll": {
435
- "assemblyVersion": "9.0.0.0",
436
- "fileVersion": "9.0.825.36511"
437
- },
438
- "System.Runtime.CompilerServices.VisualC.dll": {
439
- "assemblyVersion": "9.0.0.0",
440
- "fileVersion": "9.0.825.36511"
441
- },
442
- "System.Runtime.Extensions.dll": {
443
- "assemblyVersion": "9.0.0.0",
444
- "fileVersion": "9.0.825.36511"
445
- },
446
- "System.Runtime.Handles.dll": {
447
- "assemblyVersion": "9.0.0.0",
448
- "fileVersion": "9.0.825.36511"
449
- },
450
- "System.Runtime.InteropServices.JavaScript.dll": {
451
- "assemblyVersion": "9.0.0.0",
452
- "fileVersion": "9.0.825.36511"
453
- },
454
- "System.Runtime.InteropServices.RuntimeInformation.dll": {
455
- "assemblyVersion": "9.0.0.0",
456
- "fileVersion": "9.0.825.36511"
457
- },
458
- "System.Runtime.InteropServices.dll": {
459
- "assemblyVersion": "9.0.0.0",
460
- "fileVersion": "9.0.825.36511"
461
- },
462
- "System.Runtime.Intrinsics.dll": {
463
- "assemblyVersion": "9.0.0.0",
464
- "fileVersion": "9.0.825.36511"
465
- },
466
- "System.Runtime.Loader.dll": {
467
- "assemblyVersion": "9.0.0.0",
468
- "fileVersion": "9.0.825.36511"
469
- },
470
- "System.Runtime.Numerics.dll": {
471
- "assemblyVersion": "9.0.0.0",
472
- "fileVersion": "9.0.825.36511"
473
- },
474
- "System.Runtime.Serialization.Formatters.dll": {
475
- "assemblyVersion": "8.1.0.0",
476
- "fileVersion": "9.0.825.36511"
477
- },
478
- "System.Runtime.Serialization.Json.dll": {
479
- "assemblyVersion": "9.0.0.0",
480
- "fileVersion": "9.0.825.36511"
481
- },
482
- "System.Runtime.Serialization.Primitives.dll": {
483
- "assemblyVersion": "9.0.0.0",
484
- "fileVersion": "9.0.825.36511"
485
- },
486
- "System.Runtime.Serialization.Xml.dll": {
487
- "assemblyVersion": "9.0.0.0",
488
- "fileVersion": "9.0.825.36511"
489
- },
490
- "System.Runtime.Serialization.dll": {
491
- "assemblyVersion": "4.0.0.0",
492
- "fileVersion": "9.0.825.36511"
493
- },
494
- "System.Runtime.dll": {
495
- "assemblyVersion": "9.0.0.0",
496
- "fileVersion": "9.0.825.36511"
497
- },
498
- "System.Security.AccessControl.dll": {
499
- "assemblyVersion": "9.0.0.0",
500
- "fileVersion": "9.0.825.36511"
501
- },
502
- "System.Security.Claims.dll": {
503
- "assemblyVersion": "9.0.0.0",
504
- "fileVersion": "9.0.825.36511"
505
- },
506
- "System.Security.Cryptography.Algorithms.dll": {
507
- "assemblyVersion": "9.0.0.0",
508
- "fileVersion": "9.0.825.36511"
509
- },
510
- "System.Security.Cryptography.Cng.dll": {
511
- "assemblyVersion": "9.0.0.0",
512
- "fileVersion": "9.0.825.36511"
513
- },
514
- "System.Security.Cryptography.Csp.dll": {
515
- "assemblyVersion": "9.0.0.0",
516
- "fileVersion": "9.0.825.36511"
517
- },
518
- "System.Security.Cryptography.Encoding.dll": {
519
- "assemblyVersion": "9.0.0.0",
520
- "fileVersion": "9.0.825.36511"
521
- },
522
- "System.Security.Cryptography.OpenSsl.dll": {
523
- "assemblyVersion": "9.0.0.0",
524
- "fileVersion": "9.0.825.36511"
525
- },
526
- "System.Security.Cryptography.Primitives.dll": {
527
- "assemblyVersion": "9.0.0.0",
528
- "fileVersion": "9.0.825.36511"
529
- },
530
- "System.Security.Cryptography.X509Certificates.dll": {
531
- "assemblyVersion": "9.0.0.0",
532
- "fileVersion": "9.0.825.36511"
533
- },
534
- "System.Security.Cryptography.dll": {
535
- "assemblyVersion": "9.0.0.0",
536
- "fileVersion": "9.0.825.36511"
537
- },
538
- "System.Security.Principal.Windows.dll": {
539
- "assemblyVersion": "9.0.0.0",
540
- "fileVersion": "9.0.825.36511"
541
- },
542
- "System.Security.Principal.dll": {
543
- "assemblyVersion": "9.0.0.0",
544
- "fileVersion": "9.0.825.36511"
545
- },
546
- "System.Security.SecureString.dll": {
547
- "assemblyVersion": "9.0.0.0",
548
- "fileVersion": "9.0.825.36511"
549
- },
550
- "System.Security.dll": {
551
- "assemblyVersion": "4.0.0.0",
552
- "fileVersion": "9.0.825.36511"
553
- },
554
- "System.ServiceModel.Web.dll": {
555
- "assemblyVersion": "4.0.0.0",
556
- "fileVersion": "9.0.825.36511"
557
- },
558
- "System.ServiceProcess.dll": {
559
- "assemblyVersion": "4.0.0.0",
560
- "fileVersion": "9.0.825.36511"
561
- },
562
- "System.Text.Encoding.CodePages.dll": {
563
- "assemblyVersion": "9.0.0.0",
564
- "fileVersion": "9.0.825.36511"
565
- },
566
- "System.Text.Encoding.Extensions.dll": {
567
- "assemblyVersion": "9.0.0.0",
568
- "fileVersion": "9.0.825.36511"
569
- },
570
- "System.Text.Encoding.dll": {
571
- "assemblyVersion": "9.0.0.0",
572
- "fileVersion": "9.0.825.36511"
573
- },
574
- "System.Text.Encodings.Web.dll": {
575
- "assemblyVersion": "9.0.0.0",
576
- "fileVersion": "9.0.825.36511"
577
- },
578
- "System.Text.Json.dll": {
579
- "assemblyVersion": "9.0.0.0",
580
- "fileVersion": "9.0.825.36511"
581
- },
582
- "System.Text.RegularExpressions.dll": {
583
- "assemblyVersion": "9.0.0.0",
584
- "fileVersion": "9.0.825.36511"
585
- },
586
- "System.Threading.Channels.dll": {
587
- "assemblyVersion": "9.0.0.0",
588
- "fileVersion": "9.0.825.36511"
589
- },
590
- "System.Threading.Overlapped.dll": {
591
- "assemblyVersion": "9.0.0.0",
592
- "fileVersion": "9.0.825.36511"
593
- },
594
- "System.Threading.Tasks.Dataflow.dll": {
595
- "assemblyVersion": "9.0.0.0",
596
- "fileVersion": "9.0.825.36511"
597
- },
598
- "System.Threading.Tasks.Extensions.dll": {
599
- "assemblyVersion": "9.0.0.0",
600
- "fileVersion": "9.0.825.36511"
601
- },
602
- "System.Threading.Tasks.Parallel.dll": {
603
- "assemblyVersion": "9.0.0.0",
604
- "fileVersion": "9.0.825.36511"
605
- },
606
- "System.Threading.Tasks.dll": {
607
- "assemblyVersion": "9.0.0.0",
608
- "fileVersion": "9.0.825.36511"
609
- },
610
- "System.Threading.Thread.dll": {
611
- "assemblyVersion": "9.0.0.0",
612
- "fileVersion": "9.0.825.36511"
613
- },
614
- "System.Threading.ThreadPool.dll": {
615
- "assemblyVersion": "9.0.0.0",
616
- "fileVersion": "9.0.825.36511"
617
- },
618
- "System.Threading.Timer.dll": {
619
- "assemblyVersion": "9.0.0.0",
620
- "fileVersion": "9.0.825.36511"
621
- },
622
- "System.Threading.dll": {
623
- "assemblyVersion": "9.0.0.0",
624
- "fileVersion": "9.0.825.36511"
625
- },
626
- "System.Transactions.Local.dll": {
627
- "assemblyVersion": "9.0.0.0",
628
- "fileVersion": "9.0.825.36511"
629
- },
630
- "System.Transactions.dll": {
631
- "assemblyVersion": "4.0.0.0",
632
- "fileVersion": "9.0.825.36511"
633
- },
634
- "System.ValueTuple.dll": {
635
- "assemblyVersion": "9.0.0.0",
636
- "fileVersion": "9.0.825.36511"
637
- },
638
- "System.Web.HttpUtility.dll": {
639
- "assemblyVersion": "9.0.0.0",
640
- "fileVersion": "9.0.825.36511"
641
- },
642
- "System.Web.dll": {
643
- "assemblyVersion": "4.0.0.0",
644
- "fileVersion": "9.0.825.36511"
645
- },
646
- "System.Windows.dll": {
647
- "assemblyVersion": "4.0.0.0",
648
- "fileVersion": "9.0.825.36511"
649
- },
650
- "System.Xml.Linq.dll": {
651
- "assemblyVersion": "4.0.0.0",
652
- "fileVersion": "9.0.825.36511"
653
- },
654
- "System.Xml.ReaderWriter.dll": {
655
- "assemblyVersion": "9.0.0.0",
656
- "fileVersion": "9.0.825.36511"
657
- },
658
- "System.Xml.Serialization.dll": {
659
- "assemblyVersion": "4.0.0.0",
660
- "fileVersion": "9.0.825.36511"
661
- },
662
- "System.Xml.XDocument.dll": {
663
- "assemblyVersion": "9.0.0.0",
664
- "fileVersion": "9.0.825.36511"
665
- },
666
- "System.Xml.XPath.XDocument.dll": {
667
- "assemblyVersion": "9.0.0.0",
668
- "fileVersion": "9.0.825.36511"
669
- },
670
- "System.Xml.XPath.dll": {
671
- "assemblyVersion": "9.0.0.0",
672
- "fileVersion": "9.0.825.36511"
673
- },
674
- "System.Xml.XmlDocument.dll": {
675
- "assemblyVersion": "9.0.0.0",
676
- "fileVersion": "9.0.825.36511"
677
- },
678
- "System.Xml.XmlSerializer.dll": {
679
- "assemblyVersion": "9.0.0.0",
680
- "fileVersion": "9.0.825.36511"
681
- },
682
- "System.Xml.dll": {
683
- "assemblyVersion": "4.0.0.0",
684
- "fileVersion": "9.0.825.36511"
685
- },
686
- "System.dll": {
687
- "assemblyVersion": "4.0.0.0",
688
- "fileVersion": "9.0.825.36511"
689
- },
690
- "WindowsBase.dll": {
691
- "assemblyVersion": "4.0.0.0",
692
- "fileVersion": "9.0.825.36511"
693
- },
694
- "mscorlib.dll": {
695
- "assemblyVersion": "4.0.0.0",
696
- "fileVersion": "9.0.825.36511"
697
- },
698
- "netstandard.dll": {
699
- "assemblyVersion": "2.1.0.0",
700
- "fileVersion": "9.0.825.36511"
701
- }
702
- }
703
- },
704
- "Avalonia/11.0.6": {
705
- "dependencies": {
706
- "Avalonia.BuildServices": "0.0.29",
707
- "Avalonia.Remote.Protocol": "11.0.6",
708
- "MicroCom.Runtime": "0.11.0",
709
- "System.ComponentModel.Annotations": "4.5.0"
710
- },
711
- "runtime": {
712
- "lib/net6.0/Avalonia.Base.dll": {
713
- "assemblyVersion": "11.0.6.0",
714
- "fileVersion": "11.0.6.0"
715
- },
716
- "lib/net6.0/Avalonia.Controls.dll": {
717
- "assemblyVersion": "11.0.6.0",
718
- "fileVersion": "11.0.6.0"
719
- },
720
- "lib/net6.0/Avalonia.DesignerSupport.dll": {
721
- "assemblyVersion": "0.7.0.0",
722
- "fileVersion": "0.7.0.0"
723
- },
724
- "lib/net6.0/Avalonia.Dialogs.dll": {
725
- "assemblyVersion": "11.0.6.0",
726
- "fileVersion": "11.0.6.0"
727
- },
728
- "lib/net6.0/Avalonia.Markup.Xaml.dll": {
729
- "assemblyVersion": "11.0.6.0",
730
- "fileVersion": "11.0.6.0"
731
- },
732
- "lib/net6.0/Avalonia.Markup.dll": {
733
- "assemblyVersion": "11.0.6.0",
734
- "fileVersion": "11.0.6.0"
735
- },
736
- "lib/net6.0/Avalonia.Metal.dll": {
737
- "assemblyVersion": "11.0.6.0",
738
- "fileVersion": "11.0.6.0"
739
- },
740
- "lib/net6.0/Avalonia.MicroCom.dll": {
741
- "assemblyVersion": "11.0.6.0",
742
- "fileVersion": "11.0.6.0"
743
- },
744
- "lib/net6.0/Avalonia.OpenGL.dll": {
745
- "assemblyVersion": "11.0.6.0",
746
- "fileVersion": "11.0.6.0"
747
- },
748
- "lib/net6.0/Avalonia.dll": {
749
- "assemblyVersion": "11.0.6.0",
750
- "fileVersion": "11.0.6.0"
751
- }
752
- }
753
- },
754
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {},
755
- "Avalonia.BuildServices/0.0.29": {},
756
- "Avalonia.Desktop/11.0.6": {
757
- "dependencies": {
758
- "Avalonia": "11.0.6",
759
- "Avalonia.Native": "11.0.6",
760
- "Avalonia.Skia": "11.0.6",
761
- "Avalonia.Win32": "11.0.6",
762
- "Avalonia.X11": "11.0.6"
763
- },
764
- "runtime": {
765
- "lib/net6.0/Avalonia.Desktop.dll": {
766
- "assemblyVersion": "11.0.6.0",
767
- "fileVersion": "11.0.6.0"
768
- }
769
- }
770
- },
771
- "Avalonia.Fonts.Inter/11.0.6": {
772
- "dependencies": {
773
- "Avalonia": "11.0.6"
774
- },
775
- "runtime": {
776
- "lib/net6.0/Avalonia.Fonts.Inter.dll": {
777
- "assemblyVersion": "11.0.6.0",
778
- "fileVersion": "11.0.6.0"
779
- }
780
- }
781
- },
782
- "Avalonia.FreeDesktop/11.0.6": {
783
- "dependencies": {
784
- "Avalonia": "11.0.6",
785
- "Tmds.DBus.Protocol": "0.15.0"
786
- },
787
- "runtime": {
788
- "lib/net6.0/Avalonia.FreeDesktop.dll": {
789
- "assemblyVersion": "11.0.6.0",
790
- "fileVersion": "11.0.6.0"
791
- }
792
- }
793
- },
794
- "Avalonia.Native/11.0.6": {
795
- "dependencies": {
796
- "Avalonia": "11.0.6"
797
- },
798
- "runtime": {
799
- "lib/net6.0/Avalonia.Native.dll": {
800
- "assemblyVersion": "11.0.6.0",
801
- "fileVersion": "11.0.6.0"
802
- }
803
- }
804
- },
805
- "Avalonia.ReactiveUI/11.0.6": {
806
- "dependencies": {
807
- "Avalonia": "11.0.6",
808
- "ReactiveUI": "18.3.1",
809
- "System.Reactive": "5.0.0"
810
- },
811
- "runtime": {
812
- "lib/net6.0/Avalonia.ReactiveUI.dll": {
813
- "assemblyVersion": "11.0.6.0",
814
- "fileVersion": "11.0.6.0"
815
- }
816
- }
817
- },
818
- "Avalonia.Remote.Protocol/11.0.6": {
819
- "runtime": {
820
- "lib/net6.0/Avalonia.Remote.Protocol.dll": {
821
- "assemblyVersion": "11.0.6.0",
822
- "fileVersion": "11.0.6.0"
823
- }
824
- }
825
- },
826
- "Avalonia.Skia/11.0.6": {
827
- "dependencies": {
828
- "Avalonia": "11.0.6",
829
- "HarfBuzzSharp": "7.3.0",
830
- "HarfBuzzSharp.NativeAssets.Linux": "7.3.0",
831
- "HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0",
832
- "SkiaSharp": "2.88.6",
833
- "SkiaSharp.NativeAssets.Linux": "2.88.6",
834
- "SkiaSharp.NativeAssets.WebAssembly": "2.88.6"
835
- },
836
- "runtime": {
837
- "lib/net6.0/Avalonia.Skia.dll": {
838
- "assemblyVersion": "11.0.6.0",
839
- "fileVersion": "11.0.6.0"
840
- }
841
- }
842
- },
843
- "Avalonia.Themes.Fluent/11.0.6": {
844
- "dependencies": {
845
- "Avalonia": "11.0.6"
846
- },
847
- "runtime": {
848
- "lib/net6.0/Avalonia.Themes.Fluent.dll": {
849
- "assemblyVersion": "11.0.6.0",
850
- "fileVersion": "11.0.6.0"
851
- }
852
- }
853
- },
854
- "Avalonia.Win32/11.0.6": {
855
- "dependencies": {
856
- "Avalonia": "11.0.6",
857
- "Avalonia.Angle.Windows.Natives": "2.1.0.2023020321",
858
- "System.Drawing.Common": "6.0.0",
859
- "System.Numerics.Vectors": "4.5.0"
860
- },
861
- "runtime": {
862
- "lib/net6.0/Avalonia.Win32.dll": {
863
- "assemblyVersion": "11.0.6.0",
864
- "fileVersion": "11.0.6.0"
865
- }
866
- }
867
- },
868
- "Avalonia.X11/11.0.6": {
869
- "dependencies": {
870
- "Avalonia": "11.0.6",
871
- "Avalonia.FreeDesktop": "11.0.6",
872
- "Avalonia.Skia": "11.0.6"
873
- },
874
- "runtime": {
875
- "lib/net6.0/Avalonia.X11.dll": {
876
- "assemblyVersion": "11.0.6.0",
877
- "fileVersion": "11.0.6.0"
878
- }
879
- }
880
- },
881
- "DynamicData/7.9.5": {
882
- "dependencies": {
883
- "System.Reactive": "5.0.0"
884
- },
885
- "runtime": {
886
- "lib/net6.0/DynamicData.dll": {
887
- "assemblyVersion": "7.9.0.0",
888
- "fileVersion": "7.9.5.54039"
889
- }
890
- }
891
- },
892
- "HarfBuzzSharp/7.3.0": {
893
- "dependencies": {
894
- "HarfBuzzSharp.NativeAssets.Win32": "7.3.0",
895
- "HarfBuzzSharp.NativeAssets.macOS": "7.3.0"
896
- },
897
- "runtime": {
898
- "lib/net6.0/HarfBuzzSharp.dll": {
899
- "assemblyVersion": "1.0.0.0",
900
- "fileVersion": "7.3.0.0"
901
- }
902
- }
903
- },
904
- "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
905
- "dependencies": {
906
- "HarfBuzzSharp": "7.3.0"
907
- },
908
- "native": {
909
- "runtimes/linux-x64/native/libHarfBuzzSharp.so": {
910
- "fileVersion": "0.0.0.0"
911
- }
912
- }
913
- },
914
- "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {},
915
- "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {},
916
- "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {},
917
- "MicroCom.Runtime/0.11.0": {
918
- "runtime": {
919
- "lib/net5.0/MicroCom.Runtime.dll": {
920
- "assemblyVersion": "0.11.0.0",
921
- "fileVersion": "0.11.0.0"
922
- }
923
- }
924
- },
925
- "Microsoft.NET.ILLink.Tasks/9.0.8": {},
926
- "Microsoft.Win32.SystemEvents/6.0.0": {
927
- "runtime": {
928
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
929
- "assemblyVersion": "6.0.0.0",
930
- "fileVersion": "6.0.21.52210"
931
- }
932
- }
933
- },
934
- "ReactiveUI/18.3.1": {
935
- "dependencies": {
936
- "DynamicData": "7.9.5",
937
- "Splat": "14.4.1"
938
- },
939
- "runtime": {
940
- "lib/net6.0/ReactiveUI.dll": {
941
- "assemblyVersion": "18.3.0.0",
942
- "fileVersion": "18.3.1.49589"
943
- }
944
- }
945
- },
946
- "SkiaSharp/2.88.6": {
947
- "dependencies": {
948
- "SkiaSharp.NativeAssets.Win32": "2.88.6",
949
- "SkiaSharp.NativeAssets.macOS": "2.88.6"
950
- },
951
- "runtime": {
952
- "lib/net6.0/SkiaSharp.dll": {
953
- "assemblyVersion": "2.88.0.0",
954
- "fileVersion": "2.88.6.0"
955
- }
956
- }
957
- },
958
- "SkiaSharp.NativeAssets.Linux/2.88.6": {
959
- "dependencies": {
960
- "SkiaSharp": "2.88.6"
961
- },
962
- "native": {
963
- "runtimes/linux-x64/native/libSkiaSharp.so": {
964
- "fileVersion": "0.0.0.0"
965
- }
966
- }
967
- },
968
- "SkiaSharp.NativeAssets.macOS/2.88.6": {},
969
- "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {},
970
- "SkiaSharp.NativeAssets.Win32/2.88.6": {},
971
- "Splat/14.4.1": {
972
- "runtime": {
973
- "lib/net6.0/Splat.dll": {
974
- "assemblyVersion": "14.4.0.0",
975
- "fileVersion": "14.4.1.53869"
976
- }
977
- }
978
- },
979
- "System.ComponentModel.Annotations/4.5.0": {},
980
- "System.Drawing.Common/6.0.0": {
981
- "dependencies": {
982
- "Microsoft.Win32.SystemEvents": "6.0.0"
983
- },
984
- "runtime": {
985
- "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
986
- "assemblyVersion": "6.0.0.0",
987
- "fileVersion": "6.0.21.52210"
988
- }
989
- }
990
- },
991
- "System.IO.Pipelines/6.0.0": {},
992
- "System.Numerics.Vectors/4.5.0": {},
993
- "System.Reactive/5.0.0": {
994
- "runtime": {
995
- "lib/net5.0/System.Reactive.dll": {
996
- "assemblyVersion": "5.0.0.0",
997
- "fileVersion": "5.0.0.1"
998
- }
999
- }
1000
- },
1001
- "Tmds.DBus.Protocol/0.15.0": {
1002
- "dependencies": {
1003
- "System.IO.Pipelines": "6.0.0"
1004
- },
1005
- "runtime": {
1006
- "lib/net6.0/Tmds.DBus.Protocol.dll": {
1007
- "assemblyVersion": "0.15.0.0",
1008
- "fileVersion": "0.15.0.0"
1009
- }
1010
- }
1011
- }
1012
- }
1013
- },
1014
- "libraries": {
1015
- "FenrirLinux/1.0.0": {
1016
- "type": "project",
1017
- "serviceable": false,
1018
- "sha512": ""
1019
- },
1020
- "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/9.0.8": {
1021
- "type": "runtimepack",
1022
- "serviceable": false,
1023
- "sha512": ""
1024
- },
1025
- "Avalonia/11.0.6": {
1026
- "type": "package",
1027
- "serviceable": true,
1028
- "sha512": "sha512-BhuWLzZOWKqv6i0dTvbx/jsSwqZDhY4093+ihRai0TIc48kgGhX3TpUGRsRFfzfnb7FHwlkgZHjNgleVX+LEJg==",
1029
- "path": "avalonia/11.0.6",
1030
- "hashPath": "avalonia.11.0.6.nupkg.sha512"
1031
- },
1032
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
1033
- "type": "package",
1034
- "serviceable": true,
1035
- "sha512": "sha512-Zlkkb8ipxrxNWVPCJgMO19fpcpYPP+bpOQ+jPtCFj8v+TzVvPdnGHuyv9IMvSHhhMfEpps4m4hjaP4FORQYVAA==",
1036
- "path": "avalonia.angle.windows.natives/2.1.0.2023020321",
1037
- "hashPath": "avalonia.angle.windows.natives.2.1.0.2023020321.nupkg.sha512"
1038
- },
1039
- "Avalonia.BuildServices/0.0.29": {
1040
- "type": "package",
1041
- "serviceable": true,
1042
- "sha512": "sha512-U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==",
1043
- "path": "avalonia.buildservices/0.0.29",
1044
- "hashPath": "avalonia.buildservices.0.0.29.nupkg.sha512"
1045
- },
1046
- "Avalonia.Desktop/11.0.6": {
1047
- "type": "package",
1048
- "serviceable": true,
1049
- "sha512": "sha512-4nn7dOZPPOYl84SgEBQpY2c4p7LRu9XkFcaIU963aB4Kz+BzQ6RH8fmtZMTYaJUb65cm3KBtQTd+NbYt7xZMPA==",
1050
- "path": "avalonia.desktop/11.0.6",
1051
- "hashPath": "avalonia.desktop.11.0.6.nupkg.sha512"
1052
- },
1053
- "Avalonia.Fonts.Inter/11.0.6": {
1054
- "type": "package",
1055
- "serviceable": true,
1056
- "sha512": "sha512-RucxTP8JstJvEr7p0648auRFWRHI49jj4PM2a6GzkiNsvZ+gVL8bz/y6md4+ANZFu7GTj8rdcAf2Fqq1ERdXqw==",
1057
- "path": "avalonia.fonts.inter/11.0.6",
1058
- "hashPath": "avalonia.fonts.inter.11.0.6.nupkg.sha512"
1059
- },
1060
- "Avalonia.FreeDesktop/11.0.6": {
1061
- "type": "package",
1062
- "serviceable": true,
1063
- "sha512": "sha512-9z5D+eiC6YIboyqku5gkpVrV1nWoBmrygbKOw1xDJ+ZCf3p6slsKqhz2T1nsMrrdGt/rw7OpfRWizvT2hgYVPQ==",
1064
- "path": "avalonia.freedesktop/11.0.6",
1065
- "hashPath": "avalonia.freedesktop.11.0.6.nupkg.sha512"
1066
- },
1067
- "Avalonia.Native/11.0.6": {
1068
- "type": "package",
1069
- "serviceable": true,
1070
- "sha512": "sha512-1d2zrLDv0facy7EU2RILNHXg5iR5anEDtPdz+jtKR4mQ6sIRYFD19IFYitNYA4hFwJMVFgEhqZWMQx9BRCM+mA==",
1071
- "path": "avalonia.native/11.0.6",
1072
- "hashPath": "avalonia.native.11.0.6.nupkg.sha512"
1073
- },
1074
- "Avalonia.ReactiveUI/11.0.6": {
1075
- "type": "package",
1076
- "serviceable": true,
1077
- "sha512": "sha512-tA+6LhDWCaSXms0YJcLJy3ib5XJFtjYWlSRygooRCv+rR0Jiw8X7UA6DppEe8SgWJMc395XfiIioEcQ3NfPBeA==",
1078
- "path": "avalonia.reactiveui/11.0.6",
1079
- "hashPath": "avalonia.reactiveui.11.0.6.nupkg.sha512"
1080
- },
1081
- "Avalonia.Remote.Protocol/11.0.6": {
1082
- "type": "package",
1083
- "serviceable": true,
1084
- "sha512": "sha512-aIuCvIW+gjKg3USW6FuAMW6k2HDhTTCzWcGYCnuloOSnFe3EgeqEJr+qbO2whnMD1zLoJil3RWmTBl/b/yUqOw==",
1085
- "path": "avalonia.remote.protocol/11.0.6",
1086
- "hashPath": "avalonia.remote.protocol.11.0.6.nupkg.sha512"
1087
- },
1088
- "Avalonia.Skia/11.0.6": {
1089
- "type": "package",
1090
- "serviceable": true,
1091
- "sha512": "sha512-pl+VsGJknUliP4e6Lvj/eGArOamJys7f4BG5CCgbjSamUeg+sd+VN+UdM7GhUcagmeaiTSgzOmV+1+oKsCB9xw==",
1092
- "path": "avalonia.skia/11.0.6",
1093
- "hashPath": "avalonia.skia.11.0.6.nupkg.sha512"
1094
- },
1095
- "Avalonia.Themes.Fluent/11.0.6": {
1096
- "type": "package",
1097
- "serviceable": true,
1098
- "sha512": "sha512-9z2PFdJEVZo7x8UyfZDVqFF5fayealTl0VtNLwfX7DSE0lXpEPBTmx4q4KseKCFkiAQ0WZ/8YH1K3HjPeO8cHQ==",
1099
- "path": "avalonia.themes.fluent/11.0.6",
1100
- "hashPath": "avalonia.themes.fluent.11.0.6.nupkg.sha512"
1101
- },
1102
- "Avalonia.Win32/11.0.6": {
1103
- "type": "package",
1104
- "serviceable": true,
1105
- "sha512": "sha512-5JxM7K4PMvB5wsYCnT1QGjJmtiYgW4Nq5g7vk4RPB6Pr+A6TuL3arVfcGI4FOV8+3Q1F9znPImRQOUU3zhj/8g==",
1106
- "path": "avalonia.win32/11.0.6",
1107
- "hashPath": "avalonia.win32.11.0.6.nupkg.sha512"
1108
- },
1109
- "Avalonia.X11/11.0.6": {
1110
- "type": "package",
1111
- "serviceable": true,
1112
- "sha512": "sha512-SBS3R1roDLZnnykbltu8q/8RkKACSDi1pOOvKKswa0CjauehIMcK8X1XdCjQDXN+SAWbNOzQHDU5g31a4SNS+Q==",
1113
- "path": "avalonia.x11/11.0.6",
1114
- "hashPath": "avalonia.x11.11.0.6.nupkg.sha512"
1115
- },
1116
- "DynamicData/7.9.5": {
1117
- "type": "package",
1118
- "serviceable": true,
1119
- "sha512": "sha512-xFwVha7o3qUtVYxco5p+7Urcztc/m1gmaEUxOG0i7LNe+vfCfyb0ECAsT2FLm3zOPHb0g8s9qVu5LfPKfRNVng==",
1120
- "path": "dynamicdata/7.9.5",
1121
- "hashPath": "dynamicdata.7.9.5.nupkg.sha512"
1122
- },
1123
- "HarfBuzzSharp/7.3.0": {
1124
- "type": "package",
1125
- "serviceable": true,
1126
- "sha512": "sha512-OrQLaxtZMIeS2yHSUtsKzeSdk9CPaCpyJ/JCs+wLfRGatjE8MLUS6LGj6vdbGRxqRavcXs79C9O3oWe6FJR0JQ==",
1127
- "path": "harfbuzzsharp/7.3.0",
1128
- "hashPath": "harfbuzzsharp.7.3.0.nupkg.sha512"
1129
- },
1130
- "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
1131
- "type": "package",
1132
- "serviceable": true,
1133
- "sha512": "sha512-m6F2pEBTN0zTRgQ3caJQRGQkZZizZwHHCbu+rTv+gvwteNBOpqOLD5GE4dB9TFjNNpnyHXtfuMD86JuUra9UvA==",
1134
- "path": "harfbuzzsharp.nativeassets.linux/7.3.0",
1135
- "hashPath": "harfbuzzsharp.nativeassets.linux.7.3.0.nupkg.sha512"
1136
- },
1137
- "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {
1138
- "type": "package",
1139
- "serviceable": true,
1140
- "sha512": "sha512-LWcFJ39j+dN0KK8c/GJJZPPZPL9TqT2FA42/LRGqzUMmSm5LYbINOMnPvUr7RuLR6RFSmKIrgrlgObR8G5ho2A==",
1141
- "path": "harfbuzzsharp.nativeassets.macos/7.3.0",
1142
- "hashPath": "harfbuzzsharp.nativeassets.macos.7.3.0.nupkg.sha512"
1143
- },
1144
- "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {
1145
- "type": "package",
1146
- "serviceable": true,
1147
- "sha512": "sha512-cnl4I6P+VeujfSSD3ZrC5f0TrTGt9EKgCOoZ3LpgLI2xobBKLi5bxOaN2oY6B0xVXxQEhEaWBotg7AuECg00Iw==",
1148
- "path": "harfbuzzsharp.nativeassets.webassembly/7.3.0",
1149
- "hashPath": "harfbuzzsharp.nativeassets.webassembly.7.3.0.nupkg.sha512"
1150
- },
1151
- "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {
1152
- "type": "package",
1153
- "serviceable": true,
1154
- "sha512": "sha512-ulEewLMk+dNmbmpy15ny/YusI6JNUWqchF080TV2jgfFBXPXjWm767JleDi/S7hp8eDeEN6GYIIxpvNr5fLvIw==",
1155
- "path": "harfbuzzsharp.nativeassets.win32/7.3.0",
1156
- "hashPath": "harfbuzzsharp.nativeassets.win32.7.3.0.nupkg.sha512"
1157
- },
1158
- "MicroCom.Runtime/0.11.0": {
1159
- "type": "package",
1160
- "serviceable": true,
1161
- "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
1162
- "path": "microcom.runtime/0.11.0",
1163
- "hashPath": "microcom.runtime.0.11.0.nupkg.sha512"
1164
- },
1165
- "Microsoft.NET.ILLink.Tasks/9.0.8": {
1166
- "type": "package",
1167
- "serviceable": true,
1168
- "sha512": "sha512-Ts9muaUInL4ItwSeC888t2AS6LHxg03rMb90T00DdxZCTW/aLmF48jrLrUoxwKdNdIrb/+JhYZbfQPip9pdIUg==",
1169
- "path": "microsoft.net.illink.tasks/9.0.8",
1170
- "hashPath": "microsoft.net.illink.tasks.9.0.8.nupkg.sha512"
1171
- },
1172
- "Microsoft.Win32.SystemEvents/6.0.0": {
1173
- "type": "package",
1174
- "serviceable": true,
1175
- "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
1176
- "path": "microsoft.win32.systemevents/6.0.0",
1177
- "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
1178
- },
1179
- "ReactiveUI/18.3.1": {
1180
- "type": "package",
1181
- "serviceable": true,
1182
- "sha512": "sha512-0tclGtjrRPfA2gbjiM7O3DeNmo6/TpDn7CMN6jgzDrbgrnysM7oEzjGEeXbtXaOxH6kEf6RiMKWobZoSgbBXhQ==",
1183
- "path": "reactiveui/18.3.1",
1184
- "hashPath": "reactiveui.18.3.1.nupkg.sha512"
1185
- },
1186
- "SkiaSharp/2.88.6": {
1187
- "type": "package",
1188
- "serviceable": true,
1189
- "sha512": "sha512-wdfeBAQrEQCbJIRgAiargzP1Uy+0grZiG4CSgBnhAgcJTsPzlifIaO73JRdwIlT3TyBoeU9jEqzwFUhl4hTYnQ==",
1190
- "path": "skiasharp/2.88.6",
1191
- "hashPath": "skiasharp.2.88.6.nupkg.sha512"
1192
- },
1193
- "SkiaSharp.NativeAssets.Linux/2.88.6": {
1194
- "type": "package",
1195
- "serviceable": true,
1196
- "sha512": "sha512-iQcOUE0tPZvBUxOdZaP3LIdAC21H8BEMhDvpCQ/mUUvbKGLd5rF7veJVSZBNu20SuCC0oZpEdGxB+mLVOK8uzw==",
1197
- "path": "skiasharp.nativeassets.linux/2.88.6",
1198
- "hashPath": "skiasharp.nativeassets.linux.2.88.6.nupkg.sha512"
1199
- },
1200
- "SkiaSharp.NativeAssets.macOS/2.88.6": {
1201
- "type": "package",
1202
- "serviceable": true,
1203
- "sha512": "sha512-Sko9LFxRXSjb3OGh5/RxrVRXxYo48tr5NKuuSy6jB85GrYt8WRqVY1iLOLwtjPiVAt4cp+pyD4i30azanS64dw==",
1204
- "path": "skiasharp.nativeassets.macos/2.88.6",
1205
- "hashPath": "skiasharp.nativeassets.macos.2.88.6.nupkg.sha512"
1206
- },
1207
- "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {
1208
- "type": "package",
1209
- "serviceable": true,
1210
- "sha512": "sha512-pye92IhbHq3uqxrU/I+LdkIRAyWfiUNeJ5IIAmYWt2DQPOU44Uh1nTIcjQ2ghRIFWq62VVUJJy5saLBcQO5zyw==",
1211
- "path": "skiasharp.nativeassets.webassembly/2.88.6",
1212
- "hashPath": "skiasharp.nativeassets.webassembly.2.88.6.nupkg.sha512"
1213
- },
1214
- "SkiaSharp.NativeAssets.Win32/2.88.6": {
1215
- "type": "package",
1216
- "serviceable": true,
1217
- "sha512": "sha512-7TzFO0u/g2MpQsTty4fyCDdMcfcWI+aLswwfnYXr3gtNS6VLKdMXPMeKpJa3pJSLnUBN6wD0JjuCe8OoLBQ6cQ==",
1218
- "path": "skiasharp.nativeassets.win32/2.88.6",
1219
- "hashPath": "skiasharp.nativeassets.win32.2.88.6.nupkg.sha512"
1220
- },
1221
- "Splat/14.4.1": {
1222
- "type": "package",
1223
- "serviceable": true,
1224
- "sha512": "sha512-Z1Mncnzm9pNIaIbZ/EWH6x5ESnKsmAvu8HP4StBRw+yhz0lzE7LCbt22TNTPaFrYLYbYCbGQIc/61yuSnpLidg==",
1225
- "path": "splat/14.4.1",
1226
- "hashPath": "splat.14.4.1.nupkg.sha512"
1227
- },
1228
- "System.ComponentModel.Annotations/4.5.0": {
1229
- "type": "package",
1230
- "serviceable": true,
1231
- "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
1232
- "path": "system.componentmodel.annotations/4.5.0",
1233
- "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
1234
- },
1235
- "System.Drawing.Common/6.0.0": {
1236
- "type": "package",
1237
- "serviceable": true,
1238
- "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
1239
- "path": "system.drawing.common/6.0.0",
1240
- "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
1241
- },
1242
- "System.IO.Pipelines/6.0.0": {
1243
- "type": "package",
1244
- "serviceable": true,
1245
- "sha512": "sha512-mXX66shZ4xLlI3vNLaJ0lt8OIZdmXTvIqXRdQX5HLVGSkLhINLsVhyZuX2UdRFnOGkqnwmMUs40pIIQ7mna4+A==",
1246
- "path": "system.io.pipelines/6.0.0",
1247
- "hashPath": "system.io.pipelines.6.0.0.nupkg.sha512"
1248
- },
1249
- "System.Numerics.Vectors/4.5.0": {
1250
- "type": "package",
1251
- "serviceable": true,
1252
- "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
1253
- "path": "system.numerics.vectors/4.5.0",
1254
- "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
1255
- },
1256
- "System.Reactive/5.0.0": {
1257
- "type": "package",
1258
- "serviceable": true,
1259
- "sha512": "sha512-erBZjkQHWL9jpasCE/0qKAryzVBJFxGHVBAvgRN1bzM0q2s1S4oYREEEL0Vb+1kA/6BKb5FjUZMp5VXmy+gzkQ==",
1260
- "path": "system.reactive/5.0.0",
1261
- "hashPath": "system.reactive.5.0.0.nupkg.sha512"
1262
- },
1263
- "Tmds.DBus.Protocol/0.15.0": {
1264
- "type": "package",
1265
- "serviceable": true,
1266
- "sha512": "sha512-QVo/Y39nTYcCKBqrZuwHjXdwaky0yTQPIT3qUTEEK2MZfDtZWrJ2XyZ59zH8LBgB2fL5cWaTuP2pBTpGz/GeDQ==",
1267
- "path": "tmds.dbus.protocol/0.15.0",
1268
- "hashPath": "tmds.dbus.protocol.0.15.0.nupkg.sha512"
1269
- }
1270
- },
1271
- "runtimes": {
1272
- "android-x64": [
1273
- "android",
1274
- "linux-bionic-x64",
1275
- "linux-bionic",
1276
- "linux-x64",
1277
- "linux",
1278
- "unix-x64",
1279
- "unix",
1280
- "any",
1281
- "base"
1282
- ],
1283
- "linux-bionic-x64": [
1284
- "linux-bionic",
1285
- "linux-x64",
1286
- "linux",
1287
- "unix-x64",
1288
- "unix",
1289
- "any",
1290
- "base"
1291
- ],
1292
- "linux-musl-x64": [
1293
- "linux-musl",
1294
- "linux-x64",
1295
- "linux",
1296
- "unix-x64",
1297
- "unix",
1298
- "any",
1299
- "base"
1300
- ],
1301
- "linux-x64": [
1302
- "linux",
1303
- "unix-x64",
1304
- "unix",
1305
- "any",
1306
- "base"
1307
- ],
1308
- "fedora.42-x64": [
1309
- "linux-x64",
1310
- "linux",
1311
- "unix-x64",
1312
- "unix",
1313
- "any",
1314
- "base"
1315
- ]
1316
- }
1317
- }