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.
- package/Makefile +5 -11
- package/README.md +114 -48
- package/READMEs/turkish.md +156 -0
- package/example/.fenrir/archives/2026-03-14_21-07-26/.metadata.json +7 -0
- package/example/.fenrir/archives/2026-03-14_21-07-26/fenrir.json +9 -0
- package/example/.fenrir/archives/2026-03-14_21-07-26/main.fnr +67 -0
- package/example/{fenrir+aperium → .fenrir/archives/2026-03-14_21-07-26}/package-lock.json +93 -157
- package/example/.fenrir/archives/2026-03-14_21-07-26/package.json +8 -0
- package/example/.fenrir/archives/2026-03-14_21-07-32/.metadata.json +7 -0
- package/example/.fenrir/archives/2026-03-14_21-07-32/fenrir.json +9 -0
- package/example/.fenrir/archives/2026-03-14_21-07-32/main.fnr +67 -0
- package/example/.fenrir/archives/2026-03-14_21-07-32/package-lock.json +826 -0
- package/example/.fenrir/archives/2026-03-14_21-07-32/package.json +8 -0
- package/example/fenrir.json +4 -5
- package/example/main.fnr +96 -11
- package/example/node_modules/.package-lock.json +819 -0
- package/example/node_modules/accepts/HISTORY.md +250 -0
- package/example/node_modules/accepts/LICENSE +23 -0
- package/example/node_modules/accepts/README.md +140 -0
- package/example/node_modules/accepts/index.js +238 -0
- package/example/node_modules/accepts/package.json +47 -0
- package/example/node_modules/body-parser/LICENSE +23 -0
- package/example/node_modules/body-parser/README.md +494 -0
- package/example/node_modules/body-parser/index.js +71 -0
- package/example/node_modules/body-parser/lib/read.js +247 -0
- package/example/node_modules/body-parser/lib/types/json.js +158 -0
- package/example/node_modules/body-parser/lib/types/raw.js +42 -0
- package/example/node_modules/body-parser/lib/types/text.js +36 -0
- package/example/node_modules/body-parser/lib/types/urlencoded.js +142 -0
- package/example/node_modules/body-parser/lib/utils.js +98 -0
- package/example/node_modules/body-parser/package.json +52 -0
- package/example/node_modules/bytes/History.md +97 -0
- package/example/node_modules/bytes/LICENSE +23 -0
- package/example/node_modules/bytes/Readme.md +152 -0
- package/example/node_modules/bytes/index.js +170 -0
- package/example/node_modules/bytes/package.json +42 -0
- package/example/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/example/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/example/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/example/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/example/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/example/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/example/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/example/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/example/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/example/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/example/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/example/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/example/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/example/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/example/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/example/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/example/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/example/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/example/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/example/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/example/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/example/node_modules/call-bound/.eslintrc +13 -0
- package/example/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/example/node_modules/call-bound/.nycrc +9 -0
- package/example/node_modules/call-bound/CHANGELOG.md +42 -0
- package/example/node_modules/call-bound/LICENSE +21 -0
- package/example/node_modules/call-bound/README.md +53 -0
- package/example/node_modules/call-bound/index.d.ts +94 -0
- package/example/node_modules/call-bound/index.js +19 -0
- package/example/node_modules/call-bound/package.json +99 -0
- package/example/node_modules/call-bound/test/index.js +61 -0
- package/example/node_modules/call-bound/tsconfig.json +10 -0
- package/example/node_modules/content-disposition/HISTORY.md +72 -0
- package/example/node_modules/content-disposition/LICENSE +22 -0
- package/example/node_modules/content-disposition/README.md +142 -0
- package/example/node_modules/content-disposition/index.js +458 -0
- package/example/node_modules/content-disposition/package.json +43 -0
- package/example/node_modules/content-type/HISTORY.md +29 -0
- package/example/node_modules/content-type/LICENSE +22 -0
- package/example/node_modules/content-type/README.md +94 -0
- package/example/node_modules/content-type/index.js +225 -0
- package/example/node_modules/content-type/package.json +42 -0
- package/example/node_modules/cookie/LICENSE +24 -0
- package/example/node_modules/cookie/README.md +317 -0
- package/example/node_modules/cookie/SECURITY.md +25 -0
- package/example/node_modules/cookie/index.js +335 -0
- package/example/node_modules/cookie/package.json +44 -0
- package/example/node_modules/cookie-signature/History.md +70 -0
- package/example/node_modules/cookie-signature/LICENSE +22 -0
- package/example/node_modules/cookie-signature/Readme.md +23 -0
- package/example/node_modules/cookie-signature/index.js +47 -0
- package/example/node_modules/cookie-signature/package.json +24 -0
- package/example/node_modules/debug/LICENSE +20 -0
- package/example/node_modules/debug/README.md +481 -0
- package/example/node_modules/debug/package.json +64 -0
- package/example/node_modules/debug/src/browser.js +272 -0
- package/example/node_modules/debug/src/common.js +292 -0
- package/example/node_modules/debug/src/index.js +10 -0
- package/example/node_modules/debug/src/node.js +263 -0
- package/example/node_modules/depd/History.md +103 -0
- package/example/node_modules/depd/LICENSE +22 -0
- package/example/node_modules/depd/Readme.md +280 -0
- package/example/node_modules/depd/index.js +538 -0
- package/example/node_modules/depd/lib/browser/index.js +77 -0
- package/example/node_modules/depd/package.json +45 -0
- package/example/node_modules/dunder-proto/.eslintrc +5 -0
- package/example/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/example/node_modules/dunder-proto/.nycrc +13 -0
- package/example/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/example/node_modules/dunder-proto/LICENSE +21 -0
- package/example/node_modules/dunder-proto/README.md +54 -0
- package/example/node_modules/dunder-proto/get.d.ts +5 -0
- package/example/node_modules/dunder-proto/get.js +30 -0
- package/example/node_modules/dunder-proto/package.json +76 -0
- package/example/node_modules/dunder-proto/set.d.ts +5 -0
- package/example/node_modules/dunder-proto/set.js +35 -0
- package/example/node_modules/dunder-proto/test/get.js +34 -0
- package/example/node_modules/dunder-proto/test/index.js +4 -0
- package/example/node_modules/dunder-proto/test/set.js +50 -0
- package/example/node_modules/dunder-proto/tsconfig.json +9 -0
- package/example/node_modules/ee-first/LICENSE +22 -0
- package/example/node_modules/ee-first/README.md +80 -0
- package/example/node_modules/ee-first/index.js +95 -0
- package/example/node_modules/ee-first/package.json +29 -0
- package/example/node_modules/encodeurl/LICENSE +22 -0
- package/example/node_modules/encodeurl/README.md +109 -0
- package/example/node_modules/encodeurl/index.js +60 -0
- package/example/node_modules/encodeurl/package.json +40 -0
- package/example/node_modules/es-define-property/.eslintrc +13 -0
- package/example/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/example/node_modules/es-define-property/.nycrc +9 -0
- package/example/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/example/node_modules/es-define-property/LICENSE +21 -0
- package/example/node_modules/es-define-property/README.md +49 -0
- package/example/node_modules/es-define-property/index.d.ts +3 -0
- package/example/node_modules/es-define-property/index.js +14 -0
- package/example/node_modules/es-define-property/package.json +81 -0
- package/example/node_modules/es-define-property/test/index.js +56 -0
- package/example/node_modules/es-define-property/tsconfig.json +10 -0
- package/example/node_modules/es-errors/.eslintrc +5 -0
- package/example/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/example/node_modules/es-errors/CHANGELOG.md +40 -0
- package/example/node_modules/es-errors/LICENSE +21 -0
- package/example/node_modules/es-errors/README.md +55 -0
- package/example/node_modules/es-errors/eval.d.ts +3 -0
- package/example/node_modules/es-errors/eval.js +4 -0
- package/example/node_modules/es-errors/index.d.ts +3 -0
- package/example/node_modules/es-errors/index.js +4 -0
- package/example/node_modules/es-errors/package.json +80 -0
- package/example/node_modules/es-errors/range.d.ts +3 -0
- package/example/node_modules/es-errors/range.js +4 -0
- package/example/node_modules/es-errors/ref.d.ts +3 -0
- package/example/node_modules/es-errors/ref.js +4 -0
- package/example/node_modules/es-errors/syntax.d.ts +3 -0
- package/example/node_modules/es-errors/syntax.js +4 -0
- package/example/node_modules/es-errors/test/index.js +19 -0
- package/example/node_modules/es-errors/tsconfig.json +49 -0
- package/example/node_modules/es-errors/type.d.ts +3 -0
- package/example/node_modules/es-errors/type.js +4 -0
- package/example/node_modules/es-errors/uri.d.ts +3 -0
- package/example/node_modules/es-errors/uri.js +4 -0
- package/example/node_modules/es-object-atoms/.eslintrc +16 -0
- package/example/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/example/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/example/node_modules/es-object-atoms/LICENSE +21 -0
- package/example/node_modules/es-object-atoms/README.md +63 -0
- package/example/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/example/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/example/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/example/node_modules/es-object-atoms/ToObject.js +10 -0
- package/example/node_modules/es-object-atoms/index.d.ts +3 -0
- package/example/node_modules/es-object-atoms/index.js +4 -0
- package/example/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/example/node_modules/es-object-atoms/isObject.js +6 -0
- package/example/node_modules/es-object-atoms/package.json +80 -0
- package/example/node_modules/es-object-atoms/test/index.js +38 -0
- package/example/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/example/node_modules/escape-html/LICENSE +24 -0
- package/example/node_modules/escape-html/Readme.md +43 -0
- package/example/node_modules/escape-html/index.js +78 -0
- package/example/node_modules/escape-html/package.json +24 -0
- package/example/node_modules/etag/HISTORY.md +83 -0
- package/example/node_modules/etag/LICENSE +22 -0
- package/example/node_modules/etag/README.md +159 -0
- package/example/node_modules/etag/index.js +131 -0
- package/example/node_modules/etag/package.json +47 -0
- package/example/node_modules/express/LICENSE +24 -0
- package/example/node_modules/express/Readme.md +276 -0
- package/example/node_modules/express/index.js +11 -0
- package/example/node_modules/express/lib/application.js +631 -0
- package/example/node_modules/express/lib/express.js +81 -0
- package/example/node_modules/express/lib/request.js +514 -0
- package/example/node_modules/express/lib/response.js +1053 -0
- package/example/node_modules/express/lib/utils.js +271 -0
- package/example/node_modules/express/lib/view.js +205 -0
- package/example/node_modules/express/package.json +99 -0
- package/example/node_modules/finalhandler/HISTORY.md +239 -0
- package/example/node_modules/finalhandler/LICENSE +22 -0
- package/example/node_modules/finalhandler/README.md +150 -0
- package/example/node_modules/finalhandler/index.js +293 -0
- package/example/node_modules/finalhandler/package.json +47 -0
- package/example/node_modules/forwarded/HISTORY.md +21 -0
- package/example/node_modules/forwarded/LICENSE +22 -0
- package/example/node_modules/forwarded/README.md +57 -0
- package/example/node_modules/forwarded/index.js +90 -0
- package/example/node_modules/forwarded/package.json +45 -0
- package/example/node_modules/fresh/HISTORY.md +80 -0
- package/example/node_modules/fresh/LICENSE +23 -0
- package/example/node_modules/fresh/README.md +117 -0
- package/example/node_modules/fresh/index.js +136 -0
- package/example/node_modules/fresh/package.json +46 -0
- package/example/node_modules/function-bind/.eslintrc +21 -0
- package/example/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/example/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/example/node_modules/function-bind/.nycrc +13 -0
- package/example/node_modules/function-bind/CHANGELOG.md +136 -0
- package/example/node_modules/function-bind/LICENSE +20 -0
- package/example/node_modules/function-bind/README.md +46 -0
- package/example/node_modules/function-bind/implementation.js +84 -0
- package/example/node_modules/function-bind/index.js +5 -0
- package/example/node_modules/function-bind/package.json +87 -0
- package/example/node_modules/function-bind/test/.eslintrc +9 -0
- package/example/node_modules/function-bind/test/index.js +252 -0
- package/example/node_modules/get-intrinsic/.eslintrc +42 -0
- package/example/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/example/node_modules/get-intrinsic/.nycrc +9 -0
- package/example/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/example/node_modules/get-intrinsic/LICENSE +21 -0
- package/example/node_modules/get-intrinsic/README.md +71 -0
- package/example/node_modules/get-intrinsic/index.js +378 -0
- package/example/node_modules/get-intrinsic/package.json +97 -0
- package/example/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/example/node_modules/get-proto/.eslintrc +10 -0
- package/example/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/example/node_modules/get-proto/.nycrc +9 -0
- package/example/node_modules/get-proto/CHANGELOG.md +21 -0
- package/example/node_modules/get-proto/LICENSE +21 -0
- package/example/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/example/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/example/node_modules/get-proto/README.md +50 -0
- package/example/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/example/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/example/node_modules/get-proto/index.d.ts +5 -0
- package/example/node_modules/get-proto/index.js +27 -0
- package/example/node_modules/get-proto/package.json +81 -0
- package/example/node_modules/get-proto/test/index.js +68 -0
- package/example/node_modules/get-proto/tsconfig.json +9 -0
- package/example/node_modules/gopd/.eslintrc +16 -0
- package/example/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/example/node_modules/gopd/CHANGELOG.md +45 -0
- package/example/node_modules/gopd/LICENSE +21 -0
- package/example/node_modules/gopd/README.md +40 -0
- package/example/node_modules/gopd/gOPD.d.ts +1 -0
- package/example/node_modules/gopd/gOPD.js +4 -0
- package/example/node_modules/gopd/index.d.ts +5 -0
- package/example/node_modules/gopd/index.js +15 -0
- package/example/node_modules/gopd/package.json +77 -0
- package/example/node_modules/gopd/test/index.js +36 -0
- package/example/node_modules/gopd/tsconfig.json +9 -0
- package/example/node_modules/has-symbols/.eslintrc +11 -0
- package/example/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/example/node_modules/has-symbols/.nycrc +9 -0
- package/example/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/example/node_modules/has-symbols/LICENSE +21 -0
- package/example/node_modules/has-symbols/README.md +46 -0
- package/example/node_modules/has-symbols/index.d.ts +3 -0
- package/example/node_modules/has-symbols/index.js +14 -0
- package/example/node_modules/has-symbols/package.json +111 -0
- package/example/node_modules/has-symbols/shams.d.ts +3 -0
- package/example/node_modules/has-symbols/shams.js +45 -0
- package/example/node_modules/has-symbols/test/index.js +22 -0
- package/example/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/example/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/example/node_modules/has-symbols/test/tests.js +58 -0
- package/example/node_modules/has-symbols/tsconfig.json +10 -0
- package/example/node_modules/hasown/.eslintrc +5 -0
- package/example/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/example/node_modules/hasown/.nycrc +13 -0
- package/example/node_modules/hasown/CHANGELOG.md +40 -0
- package/example/node_modules/hasown/LICENSE +21 -0
- package/example/node_modules/hasown/README.md +40 -0
- package/example/node_modules/hasown/index.d.ts +3 -0
- package/example/node_modules/hasown/index.js +8 -0
- package/example/node_modules/hasown/package.json +92 -0
- package/example/node_modules/hasown/tsconfig.json +6 -0
- package/example/node_modules/http-errors/HISTORY.md +186 -0
- package/example/node_modules/http-errors/LICENSE +23 -0
- package/example/node_modules/http-errors/README.md +169 -0
- package/example/node_modules/http-errors/index.js +290 -0
- package/example/node_modules/http-errors/package.json +54 -0
- package/example/node_modules/iconv-lite/LICENSE +21 -0
- package/example/node_modules/iconv-lite/README.md +138 -0
- package/example/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
- package/example/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
- package/example/node_modules/iconv-lite/encodings/index.js +23 -0
- package/example/node_modules/iconv-lite/encodings/internal.js +218 -0
- package/example/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
- package/example/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/example/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
- package/example/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/example/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/example/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/example/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/example/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/example/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/example/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/example/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/example/node_modules/iconv-lite/encodings/utf16.js +187 -0
- package/example/node_modules/iconv-lite/encodings/utf32.js +307 -0
- package/example/node_modules/iconv-lite/encodings/utf7.js +283 -0
- package/example/node_modules/iconv-lite/lib/bom-handling.js +48 -0
- package/example/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
- package/example/node_modules/iconv-lite/lib/index.d.ts +129 -0
- package/example/node_modules/iconv-lite/lib/index.js +182 -0
- package/example/node_modules/iconv-lite/lib/streams.js +105 -0
- package/example/node_modules/iconv-lite/package.json +70 -0
- package/example/node_modules/iconv-lite/types/encodings.d.ts +423 -0
- package/example/node_modules/inherits/LICENSE +16 -0
- package/example/node_modules/inherits/README.md +42 -0
- package/example/node_modules/inherits/inherits.js +9 -0
- package/example/node_modules/inherits/inherits_browser.js +27 -0
- package/example/node_modules/inherits/package.json +29 -0
- package/example/node_modules/ipaddr.js/LICENSE +19 -0
- package/example/node_modules/ipaddr.js/README.md +233 -0
- package/example/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/example/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/example/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/example/node_modules/ipaddr.js/package.json +35 -0
- package/example/node_modules/is-promise/LICENSE +19 -0
- package/example/node_modules/is-promise/index.d.ts +2 -0
- package/example/node_modules/is-promise/index.js +6 -0
- package/example/node_modules/is-promise/index.mjs +3 -0
- package/example/node_modules/is-promise/package.json +30 -0
- package/example/node_modules/is-promise/readme.md +33 -0
- package/example/node_modules/math-intrinsics/.eslintrc +16 -0
- package/example/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/example/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/example/node_modules/math-intrinsics/LICENSE +21 -0
- package/example/node_modules/math-intrinsics/README.md +50 -0
- package/example/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/example/node_modules/math-intrinsics/abs.js +4 -0
- package/example/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/example/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/example/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/example/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/example/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/example/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/example/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/example/node_modules/math-intrinsics/floor.js +4 -0
- package/example/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/example/node_modules/math-intrinsics/isFinite.js +12 -0
- package/example/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/example/node_modules/math-intrinsics/isInteger.js +16 -0
- package/example/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/example/node_modules/math-intrinsics/isNaN.js +6 -0
- package/example/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/example/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/example/node_modules/math-intrinsics/max.d.ts +1 -0
- package/example/node_modules/math-intrinsics/max.js +4 -0
- package/example/node_modules/math-intrinsics/min.d.ts +1 -0
- package/example/node_modules/math-intrinsics/min.js +4 -0
- package/example/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/example/node_modules/math-intrinsics/mod.js +9 -0
- package/example/node_modules/math-intrinsics/package.json +86 -0
- package/example/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/example/node_modules/math-intrinsics/pow.js +4 -0
- package/example/node_modules/math-intrinsics/round.d.ts +1 -0
- package/example/node_modules/math-intrinsics/round.js +4 -0
- package/example/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/example/node_modules/math-intrinsics/sign.js +11 -0
- package/example/node_modules/math-intrinsics/test/index.js +192 -0
- package/example/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/example/node_modules/media-typer/HISTORY.md +50 -0
- package/example/node_modules/media-typer/LICENSE +22 -0
- package/example/node_modules/media-typer/README.md +93 -0
- package/example/node_modules/media-typer/index.js +143 -0
- package/example/node_modules/media-typer/package.json +33 -0
- package/example/node_modules/merge-descriptors/index.d.ts +11 -0
- package/example/node_modules/merge-descriptors/index.js +26 -0
- package/example/node_modules/merge-descriptors/license +11 -0
- package/example/node_modules/merge-descriptors/package.json +50 -0
- package/example/node_modules/merge-descriptors/readme.md +55 -0
- package/example/node_modules/mime-db/HISTORY.md +541 -0
- package/example/node_modules/mime-db/LICENSE +23 -0
- package/example/node_modules/mime-db/README.md +109 -0
- package/example/node_modules/mime-db/db.json +9342 -0
- package/example/node_modules/mime-db/index.js +12 -0
- package/example/node_modules/mime-db/package.json +56 -0
- package/example/node_modules/mime-types/HISTORY.md +428 -0
- package/example/node_modules/mime-types/LICENSE +23 -0
- package/example/node_modules/mime-types/README.md +126 -0
- package/example/node_modules/mime-types/index.js +211 -0
- package/example/node_modules/mime-types/mimeScore.js +57 -0
- package/example/node_modules/mime-types/package.json +49 -0
- package/example/node_modules/ms/index.js +162 -0
- package/example/node_modules/ms/license.md +21 -0
- package/example/node_modules/ms/package.json +38 -0
- package/example/node_modules/ms/readme.md +59 -0
- package/example/node_modules/negotiator/HISTORY.md +114 -0
- package/example/node_modules/negotiator/LICENSE +24 -0
- package/example/node_modules/negotiator/README.md +212 -0
- package/example/node_modules/negotiator/index.js +83 -0
- package/example/node_modules/negotiator/lib/charset.js +169 -0
- package/example/node_modules/negotiator/lib/encoding.js +205 -0
- package/example/node_modules/negotiator/lib/language.js +179 -0
- package/example/node_modules/negotiator/lib/mediaType.js +294 -0
- package/example/node_modules/negotiator/package.json +43 -0
- package/example/node_modules/object-inspect/.eslintrc +53 -0
- package/example/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/example/node_modules/object-inspect/.nycrc +13 -0
- package/example/node_modules/object-inspect/CHANGELOG.md +424 -0
- package/example/node_modules/object-inspect/LICENSE +21 -0
- package/example/node_modules/object-inspect/example/all.js +23 -0
- package/example/node_modules/object-inspect/example/circular.js +6 -0
- package/example/node_modules/object-inspect/example/fn.js +5 -0
- package/example/node_modules/object-inspect/example/inspect.js +10 -0
- package/example/node_modules/object-inspect/index.js +544 -0
- package/example/node_modules/object-inspect/package-support.json +20 -0
- package/example/node_modules/object-inspect/package.json +105 -0
- package/example/node_modules/object-inspect/readme.markdown +84 -0
- package/example/node_modules/object-inspect/test/bigint.js +58 -0
- package/example/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/example/node_modules/object-inspect/test/circular.js +16 -0
- package/example/node_modules/object-inspect/test/deep.js +12 -0
- package/example/node_modules/object-inspect/test/element.js +53 -0
- package/example/node_modules/object-inspect/test/err.js +48 -0
- package/example/node_modules/object-inspect/test/fakes.js +29 -0
- package/example/node_modules/object-inspect/test/fn.js +76 -0
- package/example/node_modules/object-inspect/test/global.js +17 -0
- package/example/node_modules/object-inspect/test/has.js +15 -0
- package/example/node_modules/object-inspect/test/holes.js +15 -0
- package/example/node_modules/object-inspect/test/indent-option.js +271 -0
- package/example/node_modules/object-inspect/test/inspect.js +139 -0
- package/example/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/example/node_modules/object-inspect/test/number.js +58 -0
- package/example/node_modules/object-inspect/test/quoteStyle.js +26 -0
- package/example/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/example/node_modules/object-inspect/test/undef.js +12 -0
- package/example/node_modules/object-inspect/test/values.js +261 -0
- package/example/node_modules/object-inspect/test-core-js.js +26 -0
- package/example/node_modules/object-inspect/util.inspect.js +1 -0
- package/example/node_modules/on-finished/HISTORY.md +98 -0
- package/example/node_modules/on-finished/LICENSE +23 -0
- package/example/node_modules/on-finished/README.md +162 -0
- package/example/node_modules/on-finished/index.js +234 -0
- package/example/node_modules/on-finished/package.json +39 -0
- package/example/node_modules/once/LICENSE +15 -0
- package/example/node_modules/once/README.md +79 -0
- package/example/node_modules/once/once.js +42 -0
- package/example/node_modules/once/package.json +33 -0
- package/example/node_modules/parseurl/HISTORY.md +58 -0
- package/example/node_modules/parseurl/LICENSE +24 -0
- package/example/node_modules/parseurl/README.md +133 -0
- package/example/node_modules/parseurl/index.js +158 -0
- package/example/node_modules/parseurl/package.json +40 -0
- package/example/node_modules/path-to-regexp/LICENSE +21 -0
- package/example/node_modules/path-to-regexp/Readme.md +224 -0
- package/example/node_modules/path-to-regexp/dist/index.d.ts +144 -0
- package/example/node_modules/path-to-regexp/dist/index.js +409 -0
- package/example/node_modules/path-to-regexp/dist/index.js.map +1 -0
- package/example/node_modules/path-to-regexp/package.json +64 -0
- package/example/node_modules/proxy-addr/HISTORY.md +161 -0
- package/example/node_modules/proxy-addr/LICENSE +22 -0
- package/example/node_modules/proxy-addr/README.md +139 -0
- package/example/node_modules/proxy-addr/index.js +327 -0
- package/example/node_modules/proxy-addr/package.json +47 -0
- package/example/node_modules/qs/.editorconfig +46 -0
- package/example/node_modules/qs/.github/FUNDING.yml +12 -0
- package/example/node_modules/qs/.github/SECURITY.md +11 -0
- package/example/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/example/node_modules/qs/.nycrc +13 -0
- package/example/node_modules/qs/CHANGELOG.md +806 -0
- package/example/node_modules/qs/LICENSE.md +29 -0
- package/example/node_modules/qs/README.md +758 -0
- package/example/node_modules/qs/dist/qs.js +141 -0
- package/example/node_modules/qs/eslint.config.mjs +56 -0
- package/example/node_modules/qs/lib/formats.js +23 -0
- package/example/node_modules/qs/lib/index.js +11 -0
- package/example/node_modules/qs/lib/parse.js +373 -0
- package/example/node_modules/qs/lib/stringify.js +356 -0
- package/example/node_modules/qs/lib/utils.js +342 -0
- package/example/node_modules/qs/package.json +94 -0
- package/example/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/example/node_modules/qs/test/parse.js +1568 -0
- package/example/node_modules/qs/test/stringify.js +1310 -0
- package/example/node_modules/qs/test/utils.js +404 -0
- package/example/node_modules/range-parser/HISTORY.md +56 -0
- package/example/node_modules/range-parser/LICENSE +23 -0
- package/example/node_modules/range-parser/README.md +84 -0
- package/example/node_modules/range-parser/index.js +162 -0
- package/example/node_modules/range-parser/package.json +44 -0
- package/example/node_modules/raw-body/LICENSE +22 -0
- package/example/node_modules/raw-body/README.md +223 -0
- package/example/node_modules/raw-body/index.d.ts +85 -0
- package/example/node_modules/raw-body/index.js +336 -0
- package/example/node_modules/raw-body/package.json +46 -0
- package/example/node_modules/router/HISTORY.md +228 -0
- package/example/node_modules/router/LICENSE +23 -0
- package/example/node_modules/router/README.md +416 -0
- package/example/node_modules/router/index.js +748 -0
- package/example/node_modules/router/lib/layer.js +247 -0
- package/example/node_modules/router/lib/route.js +242 -0
- package/example/node_modules/router/package.json +44 -0
- package/example/node_modules/safer-buffer/LICENSE +21 -0
- package/example/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/example/node_modules/safer-buffer/Readme.md +156 -0
- package/example/node_modules/safer-buffer/dangerous.js +58 -0
- package/example/node_modules/safer-buffer/package.json +34 -0
- package/example/node_modules/safer-buffer/safer.js +77 -0
- package/example/node_modules/safer-buffer/tests.js +406 -0
- package/example/node_modules/send/LICENSE +23 -0
- package/example/node_modules/send/README.md +317 -0
- package/example/node_modules/send/index.js +997 -0
- package/example/node_modules/send/package.json +63 -0
- package/example/node_modules/serve-static/LICENSE +25 -0
- package/example/node_modules/serve-static/README.md +253 -0
- package/example/node_modules/serve-static/index.js +208 -0
- package/example/node_modules/serve-static/package.json +44 -0
- package/example/node_modules/setprototypeof/LICENSE +13 -0
- package/example/node_modules/setprototypeof/README.md +31 -0
- package/example/node_modules/setprototypeof/index.d.ts +2 -0
- package/example/node_modules/setprototypeof/index.js +17 -0
- package/example/node_modules/setprototypeof/package.json +38 -0
- package/example/node_modules/setprototypeof/test/index.js +24 -0
- package/example/node_modules/side-channel/.editorconfig +9 -0
- package/example/node_modules/side-channel/.eslintrc +12 -0
- package/example/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/example/node_modules/side-channel/.nycrc +13 -0
- package/example/node_modules/side-channel/CHANGELOG.md +110 -0
- package/example/node_modules/side-channel/LICENSE +21 -0
- package/example/node_modules/side-channel/README.md +61 -0
- package/example/node_modules/side-channel/index.d.ts +14 -0
- package/example/node_modules/side-channel/index.js +43 -0
- package/example/node_modules/side-channel/package.json +85 -0
- package/example/node_modules/side-channel/test/index.js +104 -0
- package/example/node_modules/side-channel/tsconfig.json +9 -0
- package/example/node_modules/side-channel-list/.editorconfig +9 -0
- package/example/node_modules/side-channel-list/.eslintrc +11 -0
- package/example/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/example/node_modules/side-channel-list/.nycrc +13 -0
- package/example/node_modules/side-channel-list/CHANGELOG.md +15 -0
- package/example/node_modules/side-channel-list/LICENSE +21 -0
- package/example/node_modules/side-channel-list/README.md +62 -0
- package/example/node_modules/side-channel-list/index.d.ts +13 -0
- package/example/node_modules/side-channel-list/index.js +113 -0
- package/example/node_modules/side-channel-list/list.d.ts +14 -0
- package/example/node_modules/side-channel-list/package.json +77 -0
- package/example/node_modules/side-channel-list/test/index.js +104 -0
- package/example/node_modules/side-channel-list/tsconfig.json +9 -0
- package/example/node_modules/side-channel-map/.editorconfig +9 -0
- package/example/node_modules/side-channel-map/.eslintrc +11 -0
- package/example/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/example/node_modules/side-channel-map/.nycrc +13 -0
- package/example/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/example/node_modules/side-channel-map/LICENSE +21 -0
- package/example/node_modules/side-channel-map/README.md +62 -0
- package/example/node_modules/side-channel-map/index.d.ts +15 -0
- package/example/node_modules/side-channel-map/index.js +68 -0
- package/example/node_modules/side-channel-map/package.json +80 -0
- package/example/node_modules/side-channel-map/test/index.js +114 -0
- package/example/node_modules/side-channel-map/tsconfig.json +9 -0
- package/example/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/example/node_modules/side-channel-weakmap/.eslintrc +12 -0
- package/example/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/example/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/example/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/example/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/example/node_modules/side-channel-weakmap/README.md +62 -0
- package/example/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/example/node_modules/side-channel-weakmap/index.js +84 -0
- package/example/node_modules/side-channel-weakmap/package.json +87 -0
- package/example/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/example/node_modules/side-channel-weakmap/tsconfig.json +9 -0
- package/example/node_modules/statuses/HISTORY.md +87 -0
- package/example/node_modules/statuses/LICENSE +23 -0
- package/example/node_modules/statuses/README.md +139 -0
- package/example/node_modules/statuses/codes.json +65 -0
- package/example/node_modules/statuses/index.js +146 -0
- package/example/node_modules/statuses/package.json +49 -0
- package/example/node_modules/toidentifier/HISTORY.md +9 -0
- package/example/node_modules/toidentifier/LICENSE +21 -0
- package/example/node_modules/toidentifier/README.md +61 -0
- package/example/node_modules/toidentifier/index.js +32 -0
- package/example/node_modules/toidentifier/package.json +38 -0
- package/example/node_modules/type-is/HISTORY.md +292 -0
- package/example/node_modules/type-is/LICENSE +23 -0
- package/example/node_modules/type-is/README.md +198 -0
- package/example/node_modules/type-is/index.js +250 -0
- package/example/node_modules/type-is/package.json +47 -0
- package/example/node_modules/unpipe/HISTORY.md +4 -0
- package/example/node_modules/unpipe/LICENSE +22 -0
- package/example/node_modules/unpipe/README.md +43 -0
- package/example/node_modules/unpipe/index.js +69 -0
- package/example/node_modules/unpipe/package.json +27 -0
- package/example/node_modules/vary/HISTORY.md +39 -0
- package/example/node_modules/vary/LICENSE +22 -0
- package/example/node_modules/vary/README.md +101 -0
- package/example/node_modules/vary/index.js +149 -0
- package/example/node_modules/vary/package.json +43 -0
- package/example/node_modules/wrappy/LICENSE +15 -0
- package/example/node_modules/wrappy/README.md +36 -0
- package/example/node_modules/wrappy/package.json +29 -0
- package/example/node_modules/wrappy/wrappy.js +33 -0
- package/example/package-lock.json +101 -142
- package/example/package.json +2 -11
- package/package.json +11 -23
- package/src/cli/archiveSystem.js +119 -0
- package/src/cli/doctor.js +87 -0
- package/src/cli/index.js +99 -0
- package/src/cli/packageManager.js +52 -0
- package/src/cli/repl.js +108 -0
- package/src/cli/scaffolder.js +68 -0
- package/src/cli/testRunner.js +99 -0
- package/src/runtime/runner.js +383 -0
- package/src/stdlib/index.js +297 -0
- package/src/stdlib/sandbox.js +32 -0
- package/test_fenrir.sh +435 -0
- package/App/App.axaml +0 -8
- package/App/App.axaml.cs +0 -23
- package/App/FenrirLinux.csproj +0 -27
- package/App/LICENSE +0 -674
- package/App/MainWindow.axaml +0 -10
- package/App/MainWindow.axaml.cs +0 -16
- package/App/Program.cs +0 -19
- package/App/README.md +0 -24
- package/App/Views/InstallationView.axaml +0 -48
- package/App/Views/InstallationView.axaml.cs +0 -204
- package/App/Views/PasswordView.axaml +0 -34
- package/App/Views/PasswordView.axaml.cs +0 -62
- package/App/Views/WelcomeView.axaml +0 -63
- package/App/Views/WelcomeView.axaml.cs +0 -22
- package/App/app.manifest +0 -18
- package/App/images/screenshot1.png +0 -0
- package/App/images/screenshot2.png +0 -0
- package/App/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache +0 -1
- package/App/obj/Debug/net9.0/Avalonia/original.dll +0 -0
- package/App/obj/Debug/net9.0/Avalonia/original.pdb +0 -0
- package/App/obj/Debug/net9.0/Avalonia/original.ref.dll +0 -0
- package/App/obj/Debug/net9.0/Avalonia/references +0 -202
- package/App/obj/Debug/net9.0/Avalonia/resources +0 -0
- package/App/obj/Debug/net9.0/FenrirLi.7B98506C.Up2Date +0 -0
- package/App/obj/Debug/net9.0/FenrirLinux.AssemblyInfo.cs +0 -22
- package/App/obj/Debug/net9.0/FenrirLinux.AssemblyInfoInputs.cache +0 -1
- package/App/obj/Debug/net9.0/FenrirLinux.GeneratedMSBuildEditorConfig.editorconfig +0 -35
- package/App/obj/Debug/net9.0/FenrirLinux.assets.cache +0 -0
- package/App/obj/Debug/net9.0/FenrirLinux.csproj.AssemblyReference.cache +0 -0
- package/App/obj/Debug/net9.0/FenrirLinux.csproj.CoreCompileInputs.cache +0 -1
- package/App/obj/Debug/net9.0/FenrirLinux.csproj.FileListAbsolute.txt +0 -135
- package/App/obj/Debug/net9.0/FenrirLinux.dll +0 -0
- package/App/obj/Debug/net9.0/FenrirLinux.genruntimeconfig.cache +0 -1
- package/App/obj/Debug/net9.0/FenrirLinux.pdb +0 -0
- package/App/obj/Debug/net9.0/apphost +0 -0
- package/App/obj/Debug/net9.0/ref/FenrirLinux.dll +0 -0
- package/App/obj/Debug/net9.0/refint/FenrirLinux.dll +0 -0
- package/App/obj/FenrirLinux.csproj.nuget.dgspec.json +0 -115
- package/App/obj/FenrirLinux.csproj.nuget.g.props +0 -26
- package/App/obj/FenrirLinux.csproj.nuget.g.targets +0 -9
- package/App/obj/Release/net9.0/linux-x64/Avalonia/Resources.Inputs.cache +0 -1
- package/App/obj/Release/net9.0/linux-x64/Avalonia/original.dll +0 -0
- package/App/obj/Release/net9.0/linux-x64/Avalonia/original.pdb +0 -0
- package/App/obj/Release/net9.0/linux-x64/Avalonia/original.ref.dll +0 -0
- package/App/obj/Release/net9.0/linux-x64/Avalonia/references +0 -194
- package/App/obj/Release/net9.0/linux-x64/Avalonia/resources +0 -0
- package/App/obj/Release/net9.0/linux-x64/FenrirLi.7B98506C.Up2Date +0 -0
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.AssemblyInfo.cs +0 -22
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.AssemblyInfoInputs.cache +0 -1
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.GeneratedMSBuildEditorConfig.editorconfig +0 -39
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.assets.cache +0 -0
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.csproj.AssemblyReference.cache +0 -0
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.csproj.CoreCompileInputs.cache +0 -1
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.csproj.FileListAbsolute.txt +0 -238
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.deps.json +0 -1317
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.dll +0 -0
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.genbundle.cache +0 -1
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.genpublishdeps.cache +0 -1
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.genruntimeconfig.cache +0 -1
- package/App/obj/Release/net9.0/linux-x64/FenrirLinux.pdb +0 -0
- package/App/obj/Release/net9.0/linux-x64/PublishOutputs.fac9e24064.txt +0 -4
- package/App/obj/Release/net9.0/linux-x64/apphost +0 -0
- package/App/obj/Release/net9.0/linux-x64/ref/FenrirLinux.dll +0 -0
- package/App/obj/Release/net9.0/linux-x64/refint/FenrirLinux.dll +0 -0
- package/App/obj/Release/net9.0/linux-x64/singlefilehost +0 -0
- package/App/obj/project.assets.json +0 -2463
- package/App/obj/project.nuget.cache +0 -47
- package/LICENSE +0 -674
- package/dist/archiveSystem.js +0 -219
- package/dist/cli.js +0 -188
- package/dist/packageManager.js +0 -98
- package/dist/parser.js +0 -24
- package/dist/runtime.js +0 -99
- package/dist/transformer.js +0 -120
- package/example/fenrir+aperium/aperium.json +0 -17
- package/example/fenrir+aperium/aperium_modules/hello-world/index.js +0 -4
- package/example/fenrir+aperium/aperium_modules/hello-world/module.json +0 -6
- package/example/fenrir+aperium/app.fnr +0 -19
- package/example/fenrir+aperium/package.json +0 -17
- package/src/archiveSystem.ts +0 -264
- package/src/cli.ts +0 -216
- package/src/packageManager.ts +0 -119
- package/src/parser.ts +0 -36
- package/src/runtime.ts +0 -111
- package/src/transformer.ts +0 -147
- 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
|
-
}
|