nyora 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1251) hide show
  1. nyora-0.3.0/.gitignore +9 -0
  2. nyora-0.3.0/PKG-INFO +329 -0
  3. nyora-0.3.0/README.md +278 -0
  4. nyora-0.3.0/bridge.js +157 -0
  5. nyora-0.3.0/docs/.gitignore +1 -0
  6. nyora-0.3.0/docs/Makefile +19 -0
  7. nyora-0.3.0/docs/_static/brand.css +146 -0
  8. nyora-0.3.0/docs/conf.py +133 -0
  9. nyora-0.3.0/docs/guide/agents.md +292 -0
  10. nyora-0.3.0/docs/guide/cli.md +470 -0
  11. nyora-0.3.0/docs/guide/library.md +456 -0
  12. nyora-0.3.0/docs/guide/ota.md +158 -0
  13. nyora-0.3.0/docs/guide/server.md +192 -0
  14. nyora-0.3.0/docs/guide/tui.md +135 -0
  15. nyora-0.3.0/docs/index.md +74 -0
  16. nyora-0.3.0/docs/make.bat +35 -0
  17. nyora-0.3.0/docs/quickstart.md +170 -0
  18. nyora-0.3.0/docs/reference/api.md +170 -0
  19. nyora-0.3.0/node_modules/.package-lock.json +776 -0
  20. nyora-0.3.0/node_modules/@asamuzakjp/css-color/LICENSE +21 -0
  21. nyora-0.3.0/node_modules/@asamuzakjp/css-color/README.md +316 -0
  22. nyora-0.3.0/node_modules/@asamuzakjp/css-color/package.json +81 -0
  23. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/index.ts +27 -0
  24. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/cache.ts +114 -0
  25. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/color.ts +3459 -0
  26. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/common.ts +31 -0
  27. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/constant.ts +66 -0
  28. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/convert.ts +469 -0
  29. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/css-calc.ts +965 -0
  30. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/css-gradient.ts +289 -0
  31. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/css-var.ts +250 -0
  32. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/relative-color.ts +580 -0
  33. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/resolve.ts +379 -0
  34. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/typedef.ts +87 -0
  35. nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/util.ts +336 -0
  36. nyora-0.3.0/node_modules/@csstools/color-helpers/CHANGELOG.md +10 -0
  37. nyora-0.3.0/node_modules/@csstools/color-helpers/LICENSE.md +18 -0
  38. nyora-0.3.0/node_modules/@csstools/color-helpers/README.md +32 -0
  39. nyora-0.3.0/node_modules/@csstools/color-helpers/package.json +62 -0
  40. nyora-0.3.0/node_modules/@csstools/css-calc/CHANGELOG.md +10 -0
  41. nyora-0.3.0/node_modules/@csstools/css-calc/LICENSE.md +20 -0
  42. nyora-0.3.0/node_modules/@csstools/css-calc/README.md +132 -0
  43. nyora-0.3.0/node_modules/@csstools/css-calc/package.json +66 -0
  44. nyora-0.3.0/node_modules/@csstools/css-color-parser/CHANGELOG.md +13 -0
  45. nyora-0.3.0/node_modules/@csstools/css-color-parser/LICENSE.md +20 -0
  46. nyora-0.3.0/node_modules/@csstools/css-color-parser/README.md +37 -0
  47. nyora-0.3.0/node_modules/@csstools/css-color-parser/package.json +71 -0
  48. nyora-0.3.0/node_modules/@csstools/css-parser-algorithms/CHANGELOG.md +9 -0
  49. nyora-0.3.0/node_modules/@csstools/css-parser-algorithms/LICENSE.md +20 -0
  50. nyora-0.3.0/node_modules/@csstools/css-parser-algorithms/README.md +119 -0
  51. nyora-0.3.0/node_modules/@csstools/css-parser-algorithms/package.json +65 -0
  52. nyora-0.3.0/node_modules/@csstools/css-tokenizer/CHANGELOG.md +9 -0
  53. nyora-0.3.0/node_modules/@csstools/css-tokenizer/LICENSE.md +20 -0
  54. nyora-0.3.0/node_modules/@csstools/css-tokenizer/README.md +111 -0
  55. nyora-0.3.0/node_modules/@csstools/css-tokenizer/package.json +62 -0
  56. nyora-0.3.0/node_modules/agent-base/LICENSE +22 -0
  57. nyora-0.3.0/node_modules/agent-base/README.md +69 -0
  58. nyora-0.3.0/node_modules/agent-base/package.json +46 -0
  59. nyora-0.3.0/node_modules/asynckit/LICENSE +21 -0
  60. nyora-0.3.0/node_modules/asynckit/README.md +233 -0
  61. nyora-0.3.0/node_modules/asynckit/bench.js +76 -0
  62. nyora-0.3.0/node_modules/asynckit/index.js +6 -0
  63. nyora-0.3.0/node_modules/asynckit/lib/abort.js +29 -0
  64. nyora-0.3.0/node_modules/asynckit/lib/async.js +34 -0
  65. nyora-0.3.0/node_modules/asynckit/lib/defer.js +26 -0
  66. nyora-0.3.0/node_modules/asynckit/lib/iterate.js +75 -0
  67. nyora-0.3.0/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  68. nyora-0.3.0/node_modules/asynckit/lib/readable_parallel.js +25 -0
  69. nyora-0.3.0/node_modules/asynckit/lib/readable_serial.js +25 -0
  70. nyora-0.3.0/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  71. nyora-0.3.0/node_modules/asynckit/lib/state.js +37 -0
  72. nyora-0.3.0/node_modules/asynckit/lib/streamify.js +141 -0
  73. nyora-0.3.0/node_modules/asynckit/lib/terminator.js +29 -0
  74. nyora-0.3.0/node_modules/asynckit/package.json +63 -0
  75. nyora-0.3.0/node_modules/asynckit/parallel.js +43 -0
  76. nyora-0.3.0/node_modules/asynckit/serial.js +17 -0
  77. nyora-0.3.0/node_modules/asynckit/serialOrdered.js +75 -0
  78. nyora-0.3.0/node_modules/asynckit/stream.js +21 -0
  79. nyora-0.3.0/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  80. nyora-0.3.0/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  81. nyora-0.3.0/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  82. nyora-0.3.0/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  83. nyora-0.3.0/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  84. nyora-0.3.0/node_modules/call-bind-apply-helpers/README.md +62 -0
  85. nyora-0.3.0/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  86. nyora-0.3.0/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  87. nyora-0.3.0/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  88. nyora-0.3.0/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  89. nyora-0.3.0/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  90. nyora-0.3.0/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  91. nyora-0.3.0/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  92. nyora-0.3.0/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  93. nyora-0.3.0/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  94. nyora-0.3.0/node_modules/call-bind-apply-helpers/index.js +15 -0
  95. nyora-0.3.0/node_modules/call-bind-apply-helpers/package.json +85 -0
  96. nyora-0.3.0/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  97. nyora-0.3.0/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  98. nyora-0.3.0/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  99. nyora-0.3.0/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  100. nyora-0.3.0/node_modules/combined-stream/License +19 -0
  101. nyora-0.3.0/node_modules/combined-stream/Readme.md +138 -0
  102. nyora-0.3.0/node_modules/combined-stream/lib/combined_stream.js +208 -0
  103. nyora-0.3.0/node_modules/combined-stream/package.json +25 -0
  104. nyora-0.3.0/node_modules/combined-stream/yarn.lock +17 -0
  105. nyora-0.3.0/node_modules/cssstyle/LICENSE +20 -0
  106. nyora-0.3.0/node_modules/cssstyle/README.md +11 -0
  107. nyora-0.3.0/node_modules/cssstyle/lib/CSSStyleDeclaration.js +613 -0
  108. nyora-0.3.0/node_modules/cssstyle/lib/allExtraProperties.js +49 -0
  109. nyora-0.3.0/node_modules/cssstyle/lib/allWebkitProperties.js +114 -0
  110. nyora-0.3.0/node_modules/cssstyle/lib/generated/allProperties.js +615 -0
  111. nyora-0.3.0/node_modules/cssstyle/lib/generated/implementedProperties.js +79 -0
  112. nyora-0.3.0/node_modules/cssstyle/lib/generated/properties.js +2673 -0
  113. nyora-0.3.0/node_modules/cssstyle/lib/parsers.js +537 -0
  114. nyora-0.3.0/node_modules/cssstyle/lib/properties/background.js +52 -0
  115. nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundAttachment.js +32 -0
  116. nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundColor.js +35 -0
  117. nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundImage.js +31 -0
  118. nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundPosition.js +52 -0
  119. nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundRepeat.js +32 -0
  120. nyora-0.3.0/node_modules/cssstyle/lib/properties/border.js +42 -0
  121. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderBottom.js +40 -0
  122. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderBottomColor.js +35 -0
  123. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderBottomStyle.js +50 -0
  124. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderBottomWidth.js +36 -0
  125. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderCollapse.js +26 -0
  126. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderColor.js +43 -0
  127. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderLeft.js +40 -0
  128. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderLeftColor.js +35 -0
  129. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderLeftStyle.js +50 -0
  130. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderLeftWidth.js +36 -0
  131. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderRight.js +40 -0
  132. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderRightColor.js +35 -0
  133. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderRightStyle.js +50 -0
  134. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderRightWidth.js +36 -0
  135. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderSpacing.js +45 -0
  136. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderStyle.js +54 -0
  137. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderTop.js +40 -0
  138. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderTopColor.js +35 -0
  139. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderTopStyle.js +50 -0
  140. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderTopWidth.js +36 -0
  141. nyora-0.3.0/node_modules/cssstyle/lib/properties/borderWidth.js +44 -0
  142. nyora-0.3.0/node_modules/cssstyle/lib/properties/bottom.js +30 -0
  143. nyora-0.3.0/node_modules/cssstyle/lib/properties/clear.js +40 -0
  144. nyora-0.3.0/node_modules/cssstyle/lib/properties/clip.js +54 -0
  145. nyora-0.3.0/node_modules/cssstyle/lib/properties/color.js +30 -0
  146. nyora-0.3.0/node_modules/cssstyle/lib/properties/flex.js +73 -0
  147. nyora-0.3.0/node_modules/cssstyle/lib/properties/flexBasis.js +33 -0
  148. nyora-0.3.0/node_modules/cssstyle/lib/properties/flexGrow.js +28 -0
  149. nyora-0.3.0/node_modules/cssstyle/lib/properties/flexShrink.js +28 -0
  150. nyora-0.3.0/node_modules/cssstyle/lib/properties/float.js +27 -0
  151. nyora-0.3.0/node_modules/cssstyle/lib/properties/floodColor.js +30 -0
  152. nyora-0.3.0/node_modules/cssstyle/lib/properties/font.js +189 -0
  153. nyora-0.3.0/node_modules/cssstyle/lib/properties/fontFamily.js +95 -0
  154. nyora-0.3.0/node_modules/cssstyle/lib/properties/fontSize.js +47 -0
  155. nyora-0.3.0/node_modules/cssstyle/lib/properties/fontStyle.js +32 -0
  156. nyora-0.3.0/node_modules/cssstyle/lib/properties/fontVariant.js +36 -0
  157. nyora-0.3.0/node_modules/cssstyle/lib/properties/fontWeight.js +36 -0
  158. nyora-0.3.0/node_modules/cssstyle/lib/properties/height.js +31 -0
  159. nyora-0.3.0/node_modules/cssstyle/lib/properties/left.js +30 -0
  160. nyora-0.3.0/node_modules/cssstyle/lib/properties/lightingColor.js +30 -0
  161. nyora-0.3.0/node_modules/cssstyle/lib/properties/lineHeight.js +39 -0
  162. nyora-0.3.0/node_modules/cssstyle/lib/properties/margin.js +58 -0
  163. nyora-0.3.0/node_modules/cssstyle/lib/properties/marginBottom.js +40 -0
  164. nyora-0.3.0/node_modules/cssstyle/lib/properties/marginLeft.js +40 -0
  165. nyora-0.3.0/node_modules/cssstyle/lib/properties/marginRight.js +40 -0
  166. nyora-0.3.0/node_modules/cssstyle/lib/properties/marginTop.js +40 -0
  167. nyora-0.3.0/node_modules/cssstyle/lib/properties/opacity.js +46 -0
  168. nyora-0.3.0/node_modules/cssstyle/lib/properties/outlineColor.js +30 -0
  169. nyora-0.3.0/node_modules/cssstyle/lib/properties/padding.js +58 -0
  170. nyora-0.3.0/node_modules/cssstyle/lib/properties/paddingBottom.js +42 -0
  171. nyora-0.3.0/node_modules/cssstyle/lib/properties/paddingLeft.js +40 -0
  172. nyora-0.3.0/node_modules/cssstyle/lib/properties/paddingRight.js +40 -0
  173. nyora-0.3.0/node_modules/cssstyle/lib/properties/paddingTop.js +40 -0
  174. nyora-0.3.0/node_modules/cssstyle/lib/properties/right.js +30 -0
  175. nyora-0.3.0/node_modules/cssstyle/lib/properties/stopColor.js +30 -0
  176. nyora-0.3.0/node_modules/cssstyle/lib/properties/top.js +30 -0
  177. nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js +30 -0
  178. nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js +30 -0
  179. nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js +30 -0
  180. nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js +30 -0
  181. nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js +30 -0
  182. nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js +30 -0
  183. nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js +30 -0
  184. nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitTextFillColor.js +30 -0
  185. nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js +30 -0
  186. nyora-0.3.0/node_modules/cssstyle/lib/properties/width.js +31 -0
  187. nyora-0.3.0/node_modules/cssstyle/lib/utils/camelize.js +37 -0
  188. nyora-0.3.0/node_modules/cssstyle/lib/utils/propertyDescriptors.js +16 -0
  189. nyora-0.3.0/node_modules/cssstyle/lib/utils/strings.js +167 -0
  190. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/LICENSE.txt +20 -0
  191. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/README.mdown +74 -0
  192. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSConditionRule.js +25 -0
  193. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSContainerRule.js +50 -0
  194. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSDocumentRule.js +39 -0
  195. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSFontFaceRule.js +36 -0
  196. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSGroupingRule.js +69 -0
  197. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSHostRule.js +37 -0
  198. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSImportRule.js +132 -0
  199. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSKeyframeRule.js +37 -0
  200. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSKeyframesRule.js +39 -0
  201. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSLayerBlockRule.js +48 -0
  202. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSMediaRule.js +53 -0
  203. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSOM.js +3 -0
  204. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSRule.js +42 -0
  205. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStartingStyleRule.js +37 -0
  206. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStyleDeclaration.js +148 -0
  207. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStyleRule.js +190 -0
  208. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStyleSheet.js +88 -0
  209. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSSupportsRule.js +36 -0
  210. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSValue.js +43 -0
  211. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSValueExpression.js +344 -0
  212. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/MatcherList.js +62 -0
  213. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/MediaList.js +61 -0
  214. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/StyleSheet.js +17 -0
  215. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/clone.js +80 -0
  216. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/index.js +26 -0
  217. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/parse.js +525 -0
  218. nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/package.json +27 -0
  219. nyora-0.3.0/node_modules/cssstyle/package.json +72 -0
  220. nyora-0.3.0/node_modules/data-urls/LICENSE.txt +7 -0
  221. nyora-0.3.0/node_modules/data-urls/README.md +62 -0
  222. nyora-0.3.0/node_modules/data-urls/lib/parser.js +69 -0
  223. nyora-0.3.0/node_modules/data-urls/lib/utils.js +20 -0
  224. nyora-0.3.0/node_modules/data-urls/package.json +48 -0
  225. nyora-0.3.0/node_modules/debug/LICENSE +20 -0
  226. nyora-0.3.0/node_modules/debug/README.md +481 -0
  227. nyora-0.3.0/node_modules/debug/package.json +64 -0
  228. nyora-0.3.0/node_modules/debug/src/browser.js +272 -0
  229. nyora-0.3.0/node_modules/debug/src/common.js +292 -0
  230. nyora-0.3.0/node_modules/debug/src/index.js +10 -0
  231. nyora-0.3.0/node_modules/debug/src/node.js +263 -0
  232. nyora-0.3.0/node_modules/decimal.js/LICENCE.md +23 -0
  233. nyora-0.3.0/node_modules/decimal.js/README.md +246 -0
  234. nyora-0.3.0/node_modules/decimal.js/decimal.d.ts +301 -0
  235. nyora-0.3.0/node_modules/decimal.js/decimal.js +4951 -0
  236. nyora-0.3.0/node_modules/decimal.js/decimal.mjs +4914 -0
  237. nyora-0.3.0/node_modules/decimal.js/package.json +55 -0
  238. nyora-0.3.0/node_modules/delayed-stream/.npmignore +1 -0
  239. nyora-0.3.0/node_modules/delayed-stream/License +19 -0
  240. nyora-0.3.0/node_modules/delayed-stream/Makefile +7 -0
  241. nyora-0.3.0/node_modules/delayed-stream/Readme.md +141 -0
  242. nyora-0.3.0/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  243. nyora-0.3.0/node_modules/delayed-stream/package.json +27 -0
  244. nyora-0.3.0/node_modules/dunder-proto/.eslintrc +5 -0
  245. nyora-0.3.0/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  246. nyora-0.3.0/node_modules/dunder-proto/.nycrc +13 -0
  247. nyora-0.3.0/node_modules/dunder-proto/CHANGELOG.md +24 -0
  248. nyora-0.3.0/node_modules/dunder-proto/LICENSE +21 -0
  249. nyora-0.3.0/node_modules/dunder-proto/README.md +54 -0
  250. nyora-0.3.0/node_modules/dunder-proto/get.d.ts +5 -0
  251. nyora-0.3.0/node_modules/dunder-proto/get.js +30 -0
  252. nyora-0.3.0/node_modules/dunder-proto/package.json +76 -0
  253. nyora-0.3.0/node_modules/dunder-proto/set.d.ts +5 -0
  254. nyora-0.3.0/node_modules/dunder-proto/set.js +35 -0
  255. nyora-0.3.0/node_modules/dunder-proto/test/get.js +34 -0
  256. nyora-0.3.0/node_modules/dunder-proto/test/index.js +4 -0
  257. nyora-0.3.0/node_modules/dunder-proto/test/set.js +50 -0
  258. nyora-0.3.0/node_modules/dunder-proto/tsconfig.json +9 -0
  259. nyora-0.3.0/node_modules/entities/LICENSE +11 -0
  260. nyora-0.3.0/node_modules/entities/decode.d.ts +1 -0
  261. nyora-0.3.0/node_modules/entities/decode.js +3 -0
  262. nyora-0.3.0/node_modules/entities/escape.d.ts +1 -0
  263. nyora-0.3.0/node_modules/entities/escape.js +3 -0
  264. nyora-0.3.0/node_modules/entities/package.json +118 -0
  265. nyora-0.3.0/node_modules/entities/readme.md +122 -0
  266. nyora-0.3.0/node_modules/entities/src/decode-codepoint.ts +81 -0
  267. nyora-0.3.0/node_modules/entities/src/decode.spec.ts +320 -0
  268. nyora-0.3.0/node_modules/entities/src/decode.ts +620 -0
  269. nyora-0.3.0/node_modules/entities/src/encode.spec.ts +78 -0
  270. nyora-0.3.0/node_modules/entities/src/encode.ts +77 -0
  271. nyora-0.3.0/node_modules/entities/src/escape.spec.ts +14 -0
  272. nyora-0.3.0/node_modules/entities/src/escape.ts +148 -0
  273. nyora-0.3.0/node_modules/entities/src/generated/.eslintrc.json +10 -0
  274. nyora-0.3.0/node_modules/entities/src/generated/decode-data-html.ts +8 -0
  275. nyora-0.3.0/node_modules/entities/src/generated/decode-data-xml.ts +8 -0
  276. nyora-0.3.0/node_modules/entities/src/generated/encode-html.ts +17 -0
  277. nyora-0.3.0/node_modules/entities/src/index.spec.ts +125 -0
  278. nyora-0.3.0/node_modules/entities/src/index.ts +188 -0
  279. nyora-0.3.0/node_modules/es-define-property/.eslintrc +13 -0
  280. nyora-0.3.0/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  281. nyora-0.3.0/node_modules/es-define-property/.nycrc +9 -0
  282. nyora-0.3.0/node_modules/es-define-property/CHANGELOG.md +29 -0
  283. nyora-0.3.0/node_modules/es-define-property/LICENSE +21 -0
  284. nyora-0.3.0/node_modules/es-define-property/README.md +49 -0
  285. nyora-0.3.0/node_modules/es-define-property/index.d.ts +3 -0
  286. nyora-0.3.0/node_modules/es-define-property/index.js +14 -0
  287. nyora-0.3.0/node_modules/es-define-property/package.json +81 -0
  288. nyora-0.3.0/node_modules/es-define-property/test/index.js +56 -0
  289. nyora-0.3.0/node_modules/es-define-property/tsconfig.json +10 -0
  290. nyora-0.3.0/node_modules/es-errors/.eslintrc +5 -0
  291. nyora-0.3.0/node_modules/es-errors/.github/FUNDING.yml +12 -0
  292. nyora-0.3.0/node_modules/es-errors/CHANGELOG.md +40 -0
  293. nyora-0.3.0/node_modules/es-errors/LICENSE +21 -0
  294. nyora-0.3.0/node_modules/es-errors/README.md +55 -0
  295. nyora-0.3.0/node_modules/es-errors/eval.d.ts +3 -0
  296. nyora-0.3.0/node_modules/es-errors/eval.js +4 -0
  297. nyora-0.3.0/node_modules/es-errors/index.d.ts +3 -0
  298. nyora-0.3.0/node_modules/es-errors/index.js +4 -0
  299. nyora-0.3.0/node_modules/es-errors/package.json +80 -0
  300. nyora-0.3.0/node_modules/es-errors/range.d.ts +3 -0
  301. nyora-0.3.0/node_modules/es-errors/range.js +4 -0
  302. nyora-0.3.0/node_modules/es-errors/ref.d.ts +3 -0
  303. nyora-0.3.0/node_modules/es-errors/ref.js +4 -0
  304. nyora-0.3.0/node_modules/es-errors/syntax.d.ts +3 -0
  305. nyora-0.3.0/node_modules/es-errors/syntax.js +4 -0
  306. nyora-0.3.0/node_modules/es-errors/test/index.js +19 -0
  307. nyora-0.3.0/node_modules/es-errors/tsconfig.json +49 -0
  308. nyora-0.3.0/node_modules/es-errors/type.d.ts +3 -0
  309. nyora-0.3.0/node_modules/es-errors/type.js +4 -0
  310. nyora-0.3.0/node_modules/es-errors/uri.d.ts +3 -0
  311. nyora-0.3.0/node_modules/es-errors/uri.js +4 -0
  312. nyora-0.3.0/node_modules/es-object-atoms/.eslintrc +16 -0
  313. nyora-0.3.0/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  314. nyora-0.3.0/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  315. nyora-0.3.0/node_modules/es-object-atoms/LICENSE +21 -0
  316. nyora-0.3.0/node_modules/es-object-atoms/README.md +63 -0
  317. nyora-0.3.0/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  318. nyora-0.3.0/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  319. nyora-0.3.0/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  320. nyora-0.3.0/node_modules/es-object-atoms/ToObject.js +10 -0
  321. nyora-0.3.0/node_modules/es-object-atoms/index.d.ts +3 -0
  322. nyora-0.3.0/node_modules/es-object-atoms/index.js +4 -0
  323. nyora-0.3.0/node_modules/es-object-atoms/isObject.d.ts +3 -0
  324. nyora-0.3.0/node_modules/es-object-atoms/isObject.js +6 -0
  325. nyora-0.3.0/node_modules/es-object-atoms/package.json +79 -0
  326. nyora-0.3.0/node_modules/es-object-atoms/test/index.js +38 -0
  327. nyora-0.3.0/node_modules/es-object-atoms/tsconfig.json +7 -0
  328. nyora-0.3.0/node_modules/es-set-tostringtag/.eslintrc +13 -0
  329. nyora-0.3.0/node_modules/es-set-tostringtag/.nycrc +9 -0
  330. nyora-0.3.0/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
  331. nyora-0.3.0/node_modules/es-set-tostringtag/LICENSE +21 -0
  332. nyora-0.3.0/node_modules/es-set-tostringtag/README.md +53 -0
  333. nyora-0.3.0/node_modules/es-set-tostringtag/index.d.ts +10 -0
  334. nyora-0.3.0/node_modules/es-set-tostringtag/index.js +35 -0
  335. nyora-0.3.0/node_modules/es-set-tostringtag/package.json +78 -0
  336. nyora-0.3.0/node_modules/es-set-tostringtag/test/index.js +85 -0
  337. nyora-0.3.0/node_modules/es-set-tostringtag/tsconfig.json +9 -0
  338. nyora-0.3.0/node_modules/form-data/CHANGELOG.md +686 -0
  339. nyora-0.3.0/node_modules/form-data/License +19 -0
  340. nyora-0.3.0/node_modules/form-data/README.md +355 -0
  341. nyora-0.3.0/node_modules/form-data/index.d.ts +62 -0
  342. nyora-0.3.0/node_modules/form-data/lib/browser.js +4 -0
  343. nyora-0.3.0/node_modules/form-data/lib/form_data.js +506 -0
  344. nyora-0.3.0/node_modules/form-data/lib/populate.js +10 -0
  345. nyora-0.3.0/node_modules/form-data/package.json +82 -0
  346. nyora-0.3.0/node_modules/function-bind/.eslintrc +21 -0
  347. nyora-0.3.0/node_modules/function-bind/.github/FUNDING.yml +12 -0
  348. nyora-0.3.0/node_modules/function-bind/.github/SECURITY.md +3 -0
  349. nyora-0.3.0/node_modules/function-bind/.nycrc +13 -0
  350. nyora-0.3.0/node_modules/function-bind/CHANGELOG.md +136 -0
  351. nyora-0.3.0/node_modules/function-bind/LICENSE +20 -0
  352. nyora-0.3.0/node_modules/function-bind/README.md +46 -0
  353. nyora-0.3.0/node_modules/function-bind/implementation.js +84 -0
  354. nyora-0.3.0/node_modules/function-bind/index.js +5 -0
  355. nyora-0.3.0/node_modules/function-bind/package.json +87 -0
  356. nyora-0.3.0/node_modules/function-bind/test/.eslintrc +9 -0
  357. nyora-0.3.0/node_modules/function-bind/test/index.js +252 -0
  358. nyora-0.3.0/node_modules/get-intrinsic/.eslintrc +42 -0
  359. nyora-0.3.0/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  360. nyora-0.3.0/node_modules/get-intrinsic/.nycrc +9 -0
  361. nyora-0.3.0/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  362. nyora-0.3.0/node_modules/get-intrinsic/LICENSE +21 -0
  363. nyora-0.3.0/node_modules/get-intrinsic/README.md +71 -0
  364. nyora-0.3.0/node_modules/get-intrinsic/index.js +378 -0
  365. nyora-0.3.0/node_modules/get-intrinsic/package.json +97 -0
  366. nyora-0.3.0/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  367. nyora-0.3.0/node_modules/get-proto/.eslintrc +10 -0
  368. nyora-0.3.0/node_modules/get-proto/.github/FUNDING.yml +12 -0
  369. nyora-0.3.0/node_modules/get-proto/.nycrc +9 -0
  370. nyora-0.3.0/node_modules/get-proto/CHANGELOG.md +21 -0
  371. nyora-0.3.0/node_modules/get-proto/LICENSE +21 -0
  372. nyora-0.3.0/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  373. nyora-0.3.0/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  374. nyora-0.3.0/node_modules/get-proto/README.md +50 -0
  375. nyora-0.3.0/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  376. nyora-0.3.0/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  377. nyora-0.3.0/node_modules/get-proto/index.d.ts +5 -0
  378. nyora-0.3.0/node_modules/get-proto/index.js +27 -0
  379. nyora-0.3.0/node_modules/get-proto/package.json +81 -0
  380. nyora-0.3.0/node_modules/get-proto/test/index.js +68 -0
  381. nyora-0.3.0/node_modules/get-proto/tsconfig.json +9 -0
  382. nyora-0.3.0/node_modules/gopd/.eslintrc +16 -0
  383. nyora-0.3.0/node_modules/gopd/.github/FUNDING.yml +12 -0
  384. nyora-0.3.0/node_modules/gopd/CHANGELOG.md +45 -0
  385. nyora-0.3.0/node_modules/gopd/LICENSE +21 -0
  386. nyora-0.3.0/node_modules/gopd/README.md +40 -0
  387. nyora-0.3.0/node_modules/gopd/gOPD.d.ts +1 -0
  388. nyora-0.3.0/node_modules/gopd/gOPD.js +4 -0
  389. nyora-0.3.0/node_modules/gopd/index.d.ts +5 -0
  390. nyora-0.3.0/node_modules/gopd/index.js +15 -0
  391. nyora-0.3.0/node_modules/gopd/package.json +77 -0
  392. nyora-0.3.0/node_modules/gopd/test/index.js +36 -0
  393. nyora-0.3.0/node_modules/gopd/tsconfig.json +9 -0
  394. nyora-0.3.0/node_modules/has-symbols/.eslintrc +11 -0
  395. nyora-0.3.0/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  396. nyora-0.3.0/node_modules/has-symbols/.nycrc +9 -0
  397. nyora-0.3.0/node_modules/has-symbols/CHANGELOG.md +91 -0
  398. nyora-0.3.0/node_modules/has-symbols/LICENSE +21 -0
  399. nyora-0.3.0/node_modules/has-symbols/README.md +46 -0
  400. nyora-0.3.0/node_modules/has-symbols/index.d.ts +3 -0
  401. nyora-0.3.0/node_modules/has-symbols/index.js +14 -0
  402. nyora-0.3.0/node_modules/has-symbols/package.json +111 -0
  403. nyora-0.3.0/node_modules/has-symbols/shams.d.ts +3 -0
  404. nyora-0.3.0/node_modules/has-symbols/shams.js +45 -0
  405. nyora-0.3.0/node_modules/has-symbols/test/index.js +22 -0
  406. nyora-0.3.0/node_modules/has-symbols/test/shams/core-js.js +29 -0
  407. nyora-0.3.0/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  408. nyora-0.3.0/node_modules/has-symbols/test/tests.js +58 -0
  409. nyora-0.3.0/node_modules/has-symbols/tsconfig.json +10 -0
  410. nyora-0.3.0/node_modules/has-tostringtag/.eslintrc +5 -0
  411. nyora-0.3.0/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
  412. nyora-0.3.0/node_modules/has-tostringtag/.nycrc +13 -0
  413. nyora-0.3.0/node_modules/has-tostringtag/CHANGELOG.md +42 -0
  414. nyora-0.3.0/node_modules/has-tostringtag/LICENSE +21 -0
  415. nyora-0.3.0/node_modules/has-tostringtag/README.md +46 -0
  416. nyora-0.3.0/node_modules/has-tostringtag/index.d.ts +3 -0
  417. nyora-0.3.0/node_modules/has-tostringtag/index.js +8 -0
  418. nyora-0.3.0/node_modules/has-tostringtag/package.json +108 -0
  419. nyora-0.3.0/node_modules/has-tostringtag/shams.d.ts +3 -0
  420. nyora-0.3.0/node_modules/has-tostringtag/shams.js +8 -0
  421. nyora-0.3.0/node_modules/has-tostringtag/test/index.js +21 -0
  422. nyora-0.3.0/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
  423. nyora-0.3.0/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
  424. nyora-0.3.0/node_modules/has-tostringtag/test/tests.js +15 -0
  425. nyora-0.3.0/node_modules/has-tostringtag/tsconfig.json +49 -0
  426. nyora-0.3.0/node_modules/hasown/.github/FUNDING.yml +12 -0
  427. nyora-0.3.0/node_modules/hasown/.nycrc +13 -0
  428. nyora-0.3.0/node_modules/hasown/CHANGELOG.md +58 -0
  429. nyora-0.3.0/node_modules/hasown/LICENSE +21 -0
  430. nyora-0.3.0/node_modules/hasown/README.md +40 -0
  431. nyora-0.3.0/node_modules/hasown/eslint.config.mjs +6 -0
  432. nyora-0.3.0/node_modules/hasown/index.d.ts +3 -0
  433. nyora-0.3.0/node_modules/hasown/index.js +8 -0
  434. nyora-0.3.0/node_modules/hasown/package.json +91 -0
  435. nyora-0.3.0/node_modules/hasown/tsconfig.json +6 -0
  436. nyora-0.3.0/node_modules/html-encoding-sniffer/LICENSE.txt +7 -0
  437. nyora-0.3.0/node_modules/html-encoding-sniffer/README.md +40 -0
  438. nyora-0.3.0/node_modules/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
  439. nyora-0.3.0/node_modules/html-encoding-sniffer/package.json +30 -0
  440. nyora-0.3.0/node_modules/http-proxy-agent/LICENSE +22 -0
  441. nyora-0.3.0/node_modules/http-proxy-agent/README.md +44 -0
  442. nyora-0.3.0/node_modules/http-proxy-agent/package.json +47 -0
  443. nyora-0.3.0/node_modules/https-proxy-agent/LICENSE +22 -0
  444. nyora-0.3.0/node_modules/https-proxy-agent/README.md +70 -0
  445. nyora-0.3.0/node_modules/https-proxy-agent/package.json +50 -0
  446. nyora-0.3.0/node_modules/iconv-lite/.github/dependabot.yml +11 -0
  447. nyora-0.3.0/node_modules/iconv-lite/.idea/codeStyles/Project.xml +47 -0
  448. nyora-0.3.0/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +5 -0
  449. nyora-0.3.0/node_modules/iconv-lite/.idea/iconv-lite.iml +12 -0
  450. nyora-0.3.0/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +6 -0
  451. nyora-0.3.0/node_modules/iconv-lite/.idea/modules.xml +8 -0
  452. nyora-0.3.0/node_modules/iconv-lite/.idea/vcs.xml +6 -0
  453. nyora-0.3.0/node_modules/iconv-lite/Changelog.md +212 -0
  454. nyora-0.3.0/node_modules/iconv-lite/LICENSE +21 -0
  455. nyora-0.3.0/node_modules/iconv-lite/README.md +130 -0
  456. nyora-0.3.0/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
  457. nyora-0.3.0/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
  458. nyora-0.3.0/node_modules/iconv-lite/encodings/index.js +23 -0
  459. nyora-0.3.0/node_modules/iconv-lite/encodings/internal.js +198 -0
  460. nyora-0.3.0/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  461. nyora-0.3.0/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  462. nyora-0.3.0/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
  463. nyora-0.3.0/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  464. nyora-0.3.0/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  465. nyora-0.3.0/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  466. nyora-0.3.0/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  467. nyora-0.3.0/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  468. nyora-0.3.0/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  469. nyora-0.3.0/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  470. nyora-0.3.0/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  471. nyora-0.3.0/node_modules/iconv-lite/encodings/utf16.js +197 -0
  472. nyora-0.3.0/node_modules/iconv-lite/encodings/utf32.js +319 -0
  473. nyora-0.3.0/node_modules/iconv-lite/encodings/utf7.js +290 -0
  474. nyora-0.3.0/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  475. nyora-0.3.0/node_modules/iconv-lite/lib/index.d.ts +41 -0
  476. nyora-0.3.0/node_modules/iconv-lite/lib/index.js +180 -0
  477. nyora-0.3.0/node_modules/iconv-lite/lib/streams.js +109 -0
  478. nyora-0.3.0/node_modules/iconv-lite/package.json +44 -0
  479. nyora-0.3.0/node_modules/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
  480. nyora-0.3.0/node_modules/is-potential-custom-element-name/README.md +40 -0
  481. nyora-0.3.0/node_modules/is-potential-custom-element-name/index.js +9 -0
  482. nyora-0.3.0/node_modules/is-potential-custom-element-name/package.json +35 -0
  483. nyora-0.3.0/node_modules/jsdom/LICENSE.txt +22 -0
  484. nyora-0.3.0/node_modules/jsdom/README.md +521 -0
  485. nyora-0.3.0/node_modules/jsdom/lib/api.js +334 -0
  486. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/Window.js +1014 -0
  487. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
  488. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/js-globals.json +312 -0
  489. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
  490. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/parser/html.js +208 -0
  491. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/parser/index.js +37 -0
  492. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
  493. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
  494. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
  495. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +98 -0
  496. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
  497. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
  498. nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
  499. nyora-0.3.0/node_modules/jsdom/lib/jsdom/level2/style.js +57 -0
  500. nyora-0.3.0/node_modules/jsdom/lib/jsdom/level3/xpath.js +1875 -0
  501. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
  502. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +84 -0
  503. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
  504. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
  505. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/attributes.js +312 -0
  506. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
  507. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
  508. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/crypto/Crypto-impl.js +68 -0
  509. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
  510. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +268 -0
  511. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/custom-elements/ElementInternals-impl.js +38 -0
  512. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/documents.js +15 -0
  513. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +59 -0
  514. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +30 -0
  515. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
  516. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
  517. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/serialization.js +36 -0
  518. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
  519. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
  520. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
  521. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
  522. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
  523. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +24 -0
  524. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js +419 -0
  525. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
  526. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
  527. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
  528. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
  529. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
  530. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +72 -0
  531. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
  532. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
  533. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
  534. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
  535. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/SubmitEvent-impl.js +13 -0
  536. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
  537. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
  538. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
  539. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/fetch/Headers-impl.js +172 -0
  540. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/fetch/header-list.js +65 -0
  541. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
  542. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
  543. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
  544. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
  545. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
  546. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AbortController.js +143 -0
  547. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AbortSignal.js +215 -0
  548. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AbstractRange.js +171 -0
  549. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +55 -0
  550. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
  551. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Attr.js +217 -0
  552. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/BarProp.js +117 -0
  553. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
  554. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Blob.js +203 -0
  555. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/BlobCallback.js +30 -0
  556. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
  557. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CDATASection.js +109 -0
  558. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
  559. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CharacterData.js +453 -0
  560. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CloseEvent.js +168 -0
  561. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CloseEventInit.js +65 -0
  562. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Comment.js +120 -0
  563. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CompositionEvent.js +219 -0
  564. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
  565. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Crypto.js +144 -0
  566. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +34 -0
  567. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
  568. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CustomEvent.js +206 -0
  569. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
  570. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMException.js +222 -0
  571. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMImplementation.js +237 -0
  572. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
  573. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMRect.js +276 -0
  574. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMRectInit.js +76 -0
  575. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMRectReadOnly.js +285 -0
  576. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMStringMap.js +323 -0
  577. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMTokenList.js +563 -0
  578. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Document.js +4157 -0
  579. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DocumentFragment.js +334 -0
  580. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
  581. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DocumentType.js +252 -0
  582. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Element.js +3718 -0
  583. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
  584. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +29 -0
  585. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ElementInternals.js +2137 -0
  586. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
  587. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ErrorEvent.js +192 -0
  588. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +92 -0
  589. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Event.js +430 -0
  590. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +36 -0
  591. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventInit.js +58 -0
  592. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
  593. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
  594. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventModifierInit.js +221 -0
  595. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js +259 -0
  596. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/External.js +130 -0
  597. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/File.js +177 -0
  598. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FileList.js +324 -0
  599. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +33 -0
  600. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FileReader.js +468 -0
  601. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FocusEvent.js +144 -0
  602. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
  603. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FormData.js +468 -0
  604. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Function.js +42 -0
  605. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +31 -0
  606. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +1023 -0
  607. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +822 -0
  608. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +110 -0
  609. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
  610. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +193 -0
  611. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +877 -0
  612. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +522 -0
  613. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +304 -0
  614. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLCollection.js +378 -0
  615. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
  616. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
  617. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +125 -0
  618. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
  619. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
  620. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
  621. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
  622. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLElement.js +3137 -0
  623. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +371 -0
  624. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +329 -0
  625. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +236 -0
  626. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormControlsCollection.js +344 -0
  627. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +501 -0
  628. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +494 -0
  629. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +708 -0
  630. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +320 -0
  631. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +110 -0
  632. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
  633. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
  634. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +670 -0
  635. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +877 -0
  636. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1920 -0
  637. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +201 -0
  638. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +179 -0
  639. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +166 -0
  640. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +545 -0
  641. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +168 -0
  642. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +554 -0
  643. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +891 -0
  644. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
  645. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +276 -0
  646. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +365 -0
  647. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLModElement.js +207 -0
  648. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +281 -0
  649. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +925 -0
  650. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +197 -0
  651. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +376 -0
  652. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +537 -0
  653. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +392 -0
  654. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
  655. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +276 -0
  656. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +110 -0
  657. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +160 -0
  658. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +228 -0
  659. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
  660. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +462 -0
  661. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +1015 -0
  662. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +192 -0
  663. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +330 -0
  664. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +110 -0
  665. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +207 -0
  666. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
  667. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +729 -0
  668. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +372 -0
  669. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +799 -0
  670. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +414 -0
  671. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +346 -0
  672. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +123 -0
  673. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1206 -0
  674. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
  675. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
  676. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +356 -0
  677. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +197 -0
  678. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +109 -0
  679. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +333 -0
  680. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +157 -0
  681. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +50 -0
  682. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Headers.js +418 -0
  683. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/History.js +266 -0
  684. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/InputEvent.js +168 -0
  685. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/InputEventInit.js +68 -0
  686. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +445 -0
  687. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +116 -0
  688. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Location.js +404 -0
  689. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MessageEvent.js +317 -0
  690. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MessageEventInit.js +100 -0
  691. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MimeType.js +156 -0
  692. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +352 -0
  693. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MouseEvent.js +569 -0
  694. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MouseEventInit.js +159 -0
  695. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MutationCallback.js +34 -0
  696. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MutationObserver.js +178 -0
  697. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +121 -0
  698. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MutationRecord.js +229 -0
  699. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +553 -0
  700. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Navigator.js +326 -0
  701. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Node.js +763 -0
  702. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/NodeFilter.js +75 -0
  703. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/NodeIterator.js +207 -0
  704. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/NodeList.js +328 -0
  705. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +42 -0
  706. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +56 -0
  707. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +144 -0
  708. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +35 -0
  709. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Performance.js +142 -0
  710. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Plugin.js +385 -0
  711. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PluginArray.js +362 -0
  712. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PopStateEvent.js +144 -0
  713. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
  714. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +122 -0
  715. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ProgressEvent.js +170 -0
  716. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +65 -0
  717. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/RadioNodeList.js +322 -0
  718. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Range.js +641 -0
  719. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +149 -0
  720. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
  721. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGElement.js +2799 -0
  722. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +139 -0
  723. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGNumber.js +132 -0
  724. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +737 -0
  725. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGStringList.js +537 -0
  726. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +109 -0
  727. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Screen.js +180 -0
  728. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
  729. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
  730. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +14 -0
  731. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
  732. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
  733. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Selection.js +569 -0
  734. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
  735. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ShadowRoot.js +187 -0
  736. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
  737. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
  738. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StaticRange.js +123 -0
  739. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +72 -0
  740. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Storage.js +423 -0
  741. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StorageEvent.js +318 -0
  742. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StorageEventInit.js +99 -0
  743. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StyleSheetList.js +326 -0
  744. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SubmitEvent.js +144 -0
  745. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SubmitEventInit.js +36 -0
  746. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
  747. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Text.js +170 -0
  748. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
  749. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/TouchEvent.js +222 -0
  750. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
  751. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/TreeWalker.js +255 -0
  752. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
  753. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/UIEventInit.js +62 -0
  754. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ValidityState.js +249 -0
  755. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
  756. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/VoidFunction.js +26 -0
  757. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/WebSocket.js +476 -0
  758. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/WheelEvent.js +191 -0
  759. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/WheelEventInit.js +71 -0
  760. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLDocument.js +109 -0
  761. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +655 -0
  762. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +334 -0
  763. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +14 -0
  764. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +109 -0
  765. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLSerializer.js +132 -0
  766. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/utils.js +190 -0
  767. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js +39 -0
  768. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/geometry/DOMRectReadOnly-impl.js +72 -0
  769. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/agent-factory.js +13 -0
  770. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
  771. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/colors.js +245 -0
  772. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/create-element.js +323 -0
  773. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
  774. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/custom-elements.js +272 -0
  775. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
  776. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/details.js +15 -0
  777. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
  778. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/events.js +24 -0
  779. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
  780. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
  781. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
  782. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/http-request.js +261 -0
  783. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
  784. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
  785. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/json.js +12 -0
  786. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
  787. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
  788. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/node.js +68 -0
  789. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
  790. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
  791. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/page-transition-event.js +9 -0
  792. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
  793. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
  794. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
  795. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
  796. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/style-rules.js +243 -0
  797. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/stylesheets.js +123 -0
  798. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
  799. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
  800. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/text.js +19 -0
  801. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
  802. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/validate-names.js +65 -0
  803. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +22 -0
  804. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/interfaces.js +228 -0
  805. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
  806. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
  807. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
  808. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
  809. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
  810. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
  811. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
  812. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
  813. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
  814. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
  815. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
  816. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
  817. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
  818. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
  819. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/node-document-position.js +10 -0
  820. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/node-type.js +16 -0
  821. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/node.js +331 -0
  822. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
  823. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
  824. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
  825. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
  826. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
  827. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
  828. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
  829. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Document-impl.js +935 -0
  830. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
  831. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
  832. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
  833. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Element-impl.js +599 -0
  834. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +22 -0
  835. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
  836. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +145 -0
  837. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
  838. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
  839. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
  840. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
  841. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
  842. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
  843. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
  844. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
  845. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
  846. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
  847. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
  848. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
  849. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
  850. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
  851. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
  852. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
  853. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +210 -0
  854. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
  855. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
  856. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
  857. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormControlsCollection-impl.js +33 -0
  858. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +240 -0
  859. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
  860. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
  861. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
  862. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
  863. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
  864. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
  865. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +367 -0
  866. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
  867. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
  868. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1097 -0
  869. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
  870. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
  871. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
  872. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +108 -0
  873. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
  874. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
  875. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
  876. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
  877. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
  878. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
  879. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
  880. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
  881. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
  882. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
  883. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
  884. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
  885. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
  886. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
  887. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
  888. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
  889. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
  890. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
  891. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +72 -0
  892. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
  893. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +262 -0
  894. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
  895. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
  896. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
  897. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
  898. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
  899. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
  900. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
  901. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
  902. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
  903. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
  904. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
  905. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
  906. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +244 -0
  907. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
  908. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
  909. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
  910. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
  911. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
  912. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
  913. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
  914. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Node-impl.js +1161 -0
  915. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
  916. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
  917. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
  918. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
  919. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
  920. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/RadioNodeList-impl.js +49 -0
  921. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
  922. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
  923. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
  924. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
  925. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
  926. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +41 -0
  927. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
  928. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
  929. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
  930. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
  931. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
  932. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/range/Range-impl.js +897 -0
  933. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
  934. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
  935. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/selection/Selection-impl.js +358 -0
  936. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
  937. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
  938. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
  939. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
  940. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +107 -0
  941. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
  942. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
  943. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/webidl/DOMException-impl.js +46 -0
  944. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
  945. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
  946. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
  947. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
  948. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/History-impl.js +148 -0
  949. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/Location-impl.js +228 -0
  950. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
  951. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
  952. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/navigation.js +85 -0
  953. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/FormData-impl.js +191 -0
  954. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
  955. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
  956. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
  957. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +59 -0
  958. nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/xhr-utils.js +441 -0
  959. nyora-0.3.0/node_modules/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
  960. nyora-0.3.0/node_modules/jsdom/lib/jsdom/utils.js +105 -0
  961. nyora-0.3.0/node_modules/jsdom/lib/jsdom/virtual-console.js +34 -0
  962. nyora-0.3.0/node_modules/jsdom/package.json +92 -0
  963. nyora-0.3.0/node_modules/lru-cache/LICENSE +15 -0
  964. nyora-0.3.0/node_modules/lru-cache/README.md +331 -0
  965. nyora-0.3.0/node_modules/lru-cache/package.json +116 -0
  966. nyora-0.3.0/node_modules/math-intrinsics/.eslintrc +16 -0
  967. nyora-0.3.0/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  968. nyora-0.3.0/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  969. nyora-0.3.0/node_modules/math-intrinsics/LICENSE +21 -0
  970. nyora-0.3.0/node_modules/math-intrinsics/README.md +50 -0
  971. nyora-0.3.0/node_modules/math-intrinsics/abs.d.ts +1 -0
  972. nyora-0.3.0/node_modules/math-intrinsics/abs.js +4 -0
  973. nyora-0.3.0/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  974. nyora-0.3.0/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  975. nyora-0.3.0/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  976. nyora-0.3.0/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  977. nyora-0.3.0/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  978. nyora-0.3.0/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  979. nyora-0.3.0/node_modules/math-intrinsics/floor.d.ts +1 -0
  980. nyora-0.3.0/node_modules/math-intrinsics/floor.js +4 -0
  981. nyora-0.3.0/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  982. nyora-0.3.0/node_modules/math-intrinsics/isFinite.js +12 -0
  983. nyora-0.3.0/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  984. nyora-0.3.0/node_modules/math-intrinsics/isInteger.js +16 -0
  985. nyora-0.3.0/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  986. nyora-0.3.0/node_modules/math-intrinsics/isNaN.js +6 -0
  987. nyora-0.3.0/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  988. nyora-0.3.0/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  989. nyora-0.3.0/node_modules/math-intrinsics/max.d.ts +1 -0
  990. nyora-0.3.0/node_modules/math-intrinsics/max.js +4 -0
  991. nyora-0.3.0/node_modules/math-intrinsics/min.d.ts +1 -0
  992. nyora-0.3.0/node_modules/math-intrinsics/min.js +4 -0
  993. nyora-0.3.0/node_modules/math-intrinsics/mod.d.ts +3 -0
  994. nyora-0.3.0/node_modules/math-intrinsics/mod.js +9 -0
  995. nyora-0.3.0/node_modules/math-intrinsics/package.json +86 -0
  996. nyora-0.3.0/node_modules/math-intrinsics/pow.d.ts +1 -0
  997. nyora-0.3.0/node_modules/math-intrinsics/pow.js +4 -0
  998. nyora-0.3.0/node_modules/math-intrinsics/round.d.ts +1 -0
  999. nyora-0.3.0/node_modules/math-intrinsics/round.js +4 -0
  1000. nyora-0.3.0/node_modules/math-intrinsics/sign.d.ts +3 -0
  1001. nyora-0.3.0/node_modules/math-intrinsics/sign.js +11 -0
  1002. nyora-0.3.0/node_modules/math-intrinsics/test/index.js +192 -0
  1003. nyora-0.3.0/node_modules/math-intrinsics/tsconfig.json +3 -0
  1004. nyora-0.3.0/node_modules/mime-db/HISTORY.md +507 -0
  1005. nyora-0.3.0/node_modules/mime-db/LICENSE +23 -0
  1006. nyora-0.3.0/node_modules/mime-db/README.md +100 -0
  1007. nyora-0.3.0/node_modules/mime-db/db.json +8519 -0
  1008. nyora-0.3.0/node_modules/mime-db/index.js +12 -0
  1009. nyora-0.3.0/node_modules/mime-db/package.json +60 -0
  1010. nyora-0.3.0/node_modules/mime-types/HISTORY.md +397 -0
  1011. nyora-0.3.0/node_modules/mime-types/LICENSE +23 -0
  1012. nyora-0.3.0/node_modules/mime-types/README.md +113 -0
  1013. nyora-0.3.0/node_modules/mime-types/index.js +188 -0
  1014. nyora-0.3.0/node_modules/mime-types/package.json +44 -0
  1015. nyora-0.3.0/node_modules/ms/index.js +162 -0
  1016. nyora-0.3.0/node_modules/ms/license.md +21 -0
  1017. nyora-0.3.0/node_modules/ms/package.json +38 -0
  1018. nyora-0.3.0/node_modules/ms/readme.md +59 -0
  1019. nyora-0.3.0/node_modules/nwsapi/LICENSE +22 -0
  1020. nyora-0.3.0/node_modules/nwsapi/README.md +132 -0
  1021. nyora-0.3.0/node_modules/nwsapi/package.json +43 -0
  1022. nyora-0.3.0/node_modules/nwsapi/src/modules/nwsapi-jquery.js +135 -0
  1023. nyora-0.3.0/node_modules/nwsapi/src/modules/nwsapi-traversal.js +90 -0
  1024. nyora-0.3.0/node_modules/nwsapi/src/nwsapi.js +2018 -0
  1025. nyora-0.3.0/node_modules/parse5/LICENSE +19 -0
  1026. nyora-0.3.0/node_modules/parse5/README.md +38 -0
  1027. nyora-0.3.0/node_modules/parse5/package.json +50 -0
  1028. nyora-0.3.0/node_modules/psl/LICENSE +9 -0
  1029. nyora-0.3.0/node_modules/psl/README.md +260 -0
  1030. nyora-0.3.0/node_modules/psl/SECURITY.md +13 -0
  1031. nyora-0.3.0/node_modules/psl/browserstack-logo.svg +90 -0
  1032. nyora-0.3.0/node_modules/psl/data/rules.js +9778 -0
  1033. nyora-0.3.0/node_modules/psl/index.js +247 -0
  1034. nyora-0.3.0/node_modules/psl/package.json +51 -0
  1035. nyora-0.3.0/node_modules/psl/types/index.d.ts +52 -0
  1036. nyora-0.3.0/node_modules/psl/types/test.ts +14 -0
  1037. nyora-0.3.0/node_modules/psl/types/tsconfig.json +22 -0
  1038. nyora-0.3.0/node_modules/psl/vite.config.js +20 -0
  1039. nyora-0.3.0/node_modules/punycode/LICENSE-MIT.txt +20 -0
  1040. nyora-0.3.0/node_modules/punycode/README.md +148 -0
  1041. nyora-0.3.0/node_modules/punycode/package.json +58 -0
  1042. nyora-0.3.0/node_modules/punycode/punycode.es6.js +444 -0
  1043. nyora-0.3.0/node_modules/punycode/punycode.js +443 -0
  1044. nyora-0.3.0/node_modules/querystringify/LICENSE +22 -0
  1045. nyora-0.3.0/node_modules/querystringify/README.md +61 -0
  1046. nyora-0.3.0/node_modules/querystringify/index.js +118 -0
  1047. nyora-0.3.0/node_modules/querystringify/package.json +38 -0
  1048. nyora-0.3.0/node_modules/requires-port/.npmignore +2 -0
  1049. nyora-0.3.0/node_modules/requires-port/.travis.yml +19 -0
  1050. nyora-0.3.0/node_modules/requires-port/LICENSE +22 -0
  1051. nyora-0.3.0/node_modules/requires-port/README.md +47 -0
  1052. nyora-0.3.0/node_modules/requires-port/index.js +38 -0
  1053. nyora-0.3.0/node_modules/requires-port/package.json +47 -0
  1054. nyora-0.3.0/node_modules/requires-port/test.js +98 -0
  1055. nyora-0.3.0/node_modules/rrweb-cssom/LICENSE.txt +20 -0
  1056. nyora-0.3.0/node_modules/rrweb-cssom/README.mdown +74 -0
  1057. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSConditionRule.js +25 -0
  1058. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSContainerRule.js +50 -0
  1059. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSDocumentRule.js +39 -0
  1060. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSFontFaceRule.js +36 -0
  1061. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSGroupingRule.js +69 -0
  1062. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSHostRule.js +37 -0
  1063. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSImportRule.js +132 -0
  1064. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSKeyframeRule.js +37 -0
  1065. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSKeyframesRule.js +39 -0
  1066. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSMediaRule.js +53 -0
  1067. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSOM.js +3 -0
  1068. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSRule.js +45 -0
  1069. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSStartingStyleRule.js +37 -0
  1070. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSStyleDeclaration.js +148 -0
  1071. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSStyleRule.js +190 -0
  1072. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSStyleSheet.js +88 -0
  1073. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSSupportsRule.js +36 -0
  1074. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSValue.js +43 -0
  1075. nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSValueExpression.js +344 -0
  1076. nyora-0.3.0/node_modules/rrweb-cssom/lib/MatcherList.js +62 -0
  1077. nyora-0.3.0/node_modules/rrweb-cssom/lib/MediaList.js +61 -0
  1078. nyora-0.3.0/node_modules/rrweb-cssom/lib/StyleSheet.js +17 -0
  1079. nyora-0.3.0/node_modules/rrweb-cssom/lib/clone.js +75 -0
  1080. nyora-0.3.0/node_modules/rrweb-cssom/lib/index.js +25 -0
  1081. nyora-0.3.0/node_modules/rrweb-cssom/lib/parse.js +504 -0
  1082. nyora-0.3.0/node_modules/rrweb-cssom/package.json +27 -0
  1083. nyora-0.3.0/node_modules/safer-buffer/LICENSE +21 -0
  1084. nyora-0.3.0/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  1085. nyora-0.3.0/node_modules/safer-buffer/Readme.md +156 -0
  1086. nyora-0.3.0/node_modules/safer-buffer/dangerous.js +58 -0
  1087. nyora-0.3.0/node_modules/safer-buffer/package.json +34 -0
  1088. nyora-0.3.0/node_modules/safer-buffer/safer.js +77 -0
  1089. nyora-0.3.0/node_modules/safer-buffer/tests.js +406 -0
  1090. nyora-0.3.0/node_modules/saxes/README.md +323 -0
  1091. nyora-0.3.0/node_modules/saxes/package.json +71 -0
  1092. nyora-0.3.0/node_modules/saxes/saxes.d.ts +635 -0
  1093. nyora-0.3.0/node_modules/saxes/saxes.js +2053 -0
  1094. nyora-0.3.0/node_modules/saxes/saxes.js.map +1 -0
  1095. nyora-0.3.0/node_modules/symbol-tree/LICENSE +21 -0
  1096. nyora-0.3.0/node_modules/symbol-tree/README.md +545 -0
  1097. nyora-0.3.0/node_modules/symbol-tree/lib/SymbolTree.js +838 -0
  1098. nyora-0.3.0/node_modules/symbol-tree/lib/SymbolTreeNode.js +54 -0
  1099. nyora-0.3.0/node_modules/symbol-tree/lib/TreeIterator.js +69 -0
  1100. nyora-0.3.0/node_modules/symbol-tree/lib/TreePosition.js +11 -0
  1101. nyora-0.3.0/node_modules/symbol-tree/package.json +47 -0
  1102. nyora-0.3.0/node_modules/tough-cookie/LICENSE +12 -0
  1103. nyora-0.3.0/node_modules/tough-cookie/README.md +596 -0
  1104. nyora-0.3.0/node_modules/tough-cookie/lib/cookie.js +1758 -0
  1105. nyora-0.3.0/node_modules/tough-cookie/lib/memstore.js +242 -0
  1106. nyora-0.3.0/node_modules/tough-cookie/lib/pathMatch.js +61 -0
  1107. nyora-0.3.0/node_modules/tough-cookie/lib/permuteDomain.js +65 -0
  1108. nyora-0.3.0/node_modules/tough-cookie/lib/pubsuffix-psl.js +73 -0
  1109. nyora-0.3.0/node_modules/tough-cookie/lib/store.js +76 -0
  1110. nyora-0.3.0/node_modules/tough-cookie/lib/utilHelper.js +39 -0
  1111. nyora-0.3.0/node_modules/tough-cookie/lib/validators.js +110 -0
  1112. nyora-0.3.0/node_modules/tough-cookie/lib/version.js +2 -0
  1113. nyora-0.3.0/node_modules/tough-cookie/package.json +110 -0
  1114. nyora-0.3.0/node_modules/tr46/LICENSE.md +21 -0
  1115. nyora-0.3.0/node_modules/tr46/README.md +76 -0
  1116. nyora-0.3.0/node_modules/tr46/index.js +344 -0
  1117. nyora-0.3.0/node_modules/tr46/lib/mappingTable.json +1 -0
  1118. nyora-0.3.0/node_modules/tr46/lib/regexes.js +29 -0
  1119. nyora-0.3.0/node_modules/tr46/lib/statusMapping.js +9 -0
  1120. nyora-0.3.0/node_modules/tr46/package.json +44 -0
  1121. nyora-0.3.0/node_modules/universalify/LICENSE +20 -0
  1122. nyora-0.3.0/node_modules/universalify/README.md +76 -0
  1123. nyora-0.3.0/node_modules/universalify/index.js +29 -0
  1124. nyora-0.3.0/node_modules/universalify/package.json +34 -0
  1125. nyora-0.3.0/node_modules/url-parse/LICENSE +22 -0
  1126. nyora-0.3.0/node_modules/url-parse/README.md +153 -0
  1127. nyora-0.3.0/node_modules/url-parse/index.js +589 -0
  1128. nyora-0.3.0/node_modules/url-parse/package.json +49 -0
  1129. nyora-0.3.0/node_modules/w3c-xmlserializer/LICENSE.md +25 -0
  1130. nyora-0.3.0/node_modules/w3c-xmlserializer/README.md +41 -0
  1131. nyora-0.3.0/node_modules/w3c-xmlserializer/lib/attributes.js +125 -0
  1132. nyora-0.3.0/node_modules/w3c-xmlserializer/lib/constants.js +44 -0
  1133. nyora-0.3.0/node_modules/w3c-xmlserializer/lib/serialize.js +365 -0
  1134. nyora-0.3.0/node_modules/w3c-xmlserializer/package.json +32 -0
  1135. nyora-0.3.0/node_modules/webidl-conversions/LICENSE.md +12 -0
  1136. nyora-0.3.0/node_modules/webidl-conversions/README.md +99 -0
  1137. nyora-0.3.0/node_modules/webidl-conversions/lib/index.js +450 -0
  1138. nyora-0.3.0/node_modules/webidl-conversions/package.json +35 -0
  1139. nyora-0.3.0/node_modules/whatwg-encoding/LICENSE.txt +7 -0
  1140. nyora-0.3.0/node_modules/whatwg-encoding/README.md +50 -0
  1141. nyora-0.3.0/node_modules/whatwg-encoding/lib/labels-to-names.json +217 -0
  1142. nyora-0.3.0/node_modules/whatwg-encoding/lib/supported-names.json +38 -0
  1143. nyora-0.3.0/node_modules/whatwg-encoding/lib/whatwg-encoding.js +60 -0
  1144. nyora-0.3.0/node_modules/whatwg-encoding/package.json +32 -0
  1145. nyora-0.3.0/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
  1146. nyora-0.3.0/node_modules/whatwg-mimetype/README.md +101 -0
  1147. nyora-0.3.0/node_modules/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
  1148. nyora-0.3.0/node_modules/whatwg-mimetype/lib/mime-type.js +127 -0
  1149. nyora-0.3.0/node_modules/whatwg-mimetype/lib/parser.js +105 -0
  1150. nyora-0.3.0/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
  1151. nyora-0.3.0/node_modules/whatwg-mimetype/lib/utils.js +60 -0
  1152. nyora-0.3.0/node_modules/whatwg-mimetype/package.json +45 -0
  1153. nyora-0.3.0/node_modules/whatwg-url/LICENSE.txt +21 -0
  1154. nyora-0.3.0/node_modules/whatwg-url/README.md +106 -0
  1155. nyora-0.3.0/node_modules/whatwg-url/index.js +27 -0
  1156. nyora-0.3.0/node_modules/whatwg-url/lib/Function.js +42 -0
  1157. nyora-0.3.0/node_modules/whatwg-url/lib/URL-impl.js +233 -0
  1158. nyora-0.3.0/node_modules/whatwg-url/lib/URL.js +499 -0
  1159. nyora-0.3.0/node_modules/whatwg-url/lib/URLSearchParams-impl.js +135 -0
  1160. nyora-0.3.0/node_modules/whatwg-url/lib/URLSearchParams.js +505 -0
  1161. nyora-0.3.0/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
  1162. nyora-0.3.0/node_modules/whatwg-url/lib/encoding.js +16 -0
  1163. nyora-0.3.0/node_modules/whatwg-url/lib/infra.js +26 -0
  1164. nyora-0.3.0/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
  1165. nyora-0.3.0/node_modules/whatwg-url/lib/url-state-machine.js +1274 -0
  1166. nyora-0.3.0/node_modules/whatwg-url/lib/urlencoded.js +89 -0
  1167. nyora-0.3.0/node_modules/whatwg-url/lib/utils.js +190 -0
  1168. nyora-0.3.0/node_modules/whatwg-url/package.json +53 -0
  1169. nyora-0.3.0/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
  1170. nyora-0.3.0/node_modules/ws/LICENSE +20 -0
  1171. nyora-0.3.0/node_modules/ws/README.md +548 -0
  1172. nyora-0.3.0/node_modules/ws/browser.js +8 -0
  1173. nyora-0.3.0/node_modules/ws/index.js +22 -0
  1174. nyora-0.3.0/node_modules/ws/lib/buffer-util.js +131 -0
  1175. nyora-0.3.0/node_modules/ws/lib/constants.js +19 -0
  1176. nyora-0.3.0/node_modules/ws/lib/event-target.js +292 -0
  1177. nyora-0.3.0/node_modules/ws/lib/extension.js +203 -0
  1178. nyora-0.3.0/node_modules/ws/lib/limiter.js +55 -0
  1179. nyora-0.3.0/node_modules/ws/lib/permessage-deflate.js +528 -0
  1180. nyora-0.3.0/node_modules/ws/lib/receiver.js +760 -0
  1181. nyora-0.3.0/node_modules/ws/lib/sender.js +607 -0
  1182. nyora-0.3.0/node_modules/ws/lib/stream.js +161 -0
  1183. nyora-0.3.0/node_modules/ws/lib/subprotocol.js +62 -0
  1184. nyora-0.3.0/node_modules/ws/lib/validation.js +152 -0
  1185. nyora-0.3.0/node_modules/ws/lib/websocket-server.js +562 -0
  1186. nyora-0.3.0/node_modules/ws/lib/websocket.js +1407 -0
  1187. nyora-0.3.0/node_modules/ws/package.json +70 -0
  1188. nyora-0.3.0/node_modules/ws/wrapper.mjs +21 -0
  1189. nyora-0.3.0/node_modules/xml-name-validator/LICENSE.txt +176 -0
  1190. nyora-0.3.0/node_modules/xml-name-validator/README.md +35 -0
  1191. nyora-0.3.0/node_modules/xml-name-validator/lib/xml-name-validator.js +9 -0
  1192. nyora-0.3.0/node_modules/xml-name-validator/package.json +30 -0
  1193. nyora-0.3.0/node_modules/xmlchars/LICENSE +18 -0
  1194. nyora-0.3.0/node_modules/xmlchars/README.md +33 -0
  1195. nyora-0.3.0/node_modules/xmlchars/package.json +51 -0
  1196. nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed4.d.ts +31 -0
  1197. nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed4.js +44 -0
  1198. nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed4.js.map +1 -0
  1199. nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed5.d.ts +51 -0
  1200. nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed5.js +105 -0
  1201. nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed5.js.map +1 -0
  1202. nyora-0.3.0/node_modules/xmlchars/xml/1.1/ed2.d.ts +73 -0
  1203. nyora-0.3.0/node_modules/xmlchars/xml/1.1/ed2.js +145 -0
  1204. nyora-0.3.0/node_modules/xmlchars/xml/1.1/ed2.js.map +1 -0
  1205. nyora-0.3.0/node_modules/xmlchars/xmlchars.d.ts +170 -0
  1206. nyora-0.3.0/node_modules/xmlchars/xmlchars.js +191 -0
  1207. nyora-0.3.0/node_modules/xmlchars/xmlchars.js.map +1 -0
  1208. nyora-0.3.0/node_modules/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
  1209. nyora-0.3.0/node_modules/xmlchars/xmlns/1.0/ed3.js +65 -0
  1210. nyora-0.3.0/node_modules/xmlchars/xmlns/1.0/ed3.js.map +1 -0
  1211. nyora-0.3.0/package-lock.json +783 -0
  1212. nyora-0.3.0/package.json +10 -0
  1213. nyora-0.3.0/parsers.bundle.js +13078 -0
  1214. nyora-0.3.0/pyproject.toml +103 -0
  1215. nyora-0.3.0/scripts/build-docs.sh +18 -0
  1216. nyora-0.3.0/sources.json +2778 -0
  1217. nyora-0.3.0/src/nyora/__init__.py +79 -0
  1218. nyora-0.3.0/src/nyora/assets/__init__.py +1 -0
  1219. nyora-0.3.0/src/nyora/cli.py +475 -0
  1220. nyora-0.3.0/src/nyora/client.py +380 -0
  1221. nyora-0.3.0/src/nyora/config.py +66 -0
  1222. nyora-0.3.0/src/nyora/direct.py +296 -0
  1223. nyora-0.3.0/src/nyora/errors.py +39 -0
  1224. nyora-0.3.0/src/nyora/helper.py +144 -0
  1225. nyora-0.3.0/src/nyora/models.py +674 -0
  1226. nyora-0.3.0/src/nyora/ota.py +311 -0
  1227. nyora-0.3.0/src/nyora/parser_bridge.py +144 -0
  1228. nyora-0.3.0/src/nyora/py.typed +0 -0
  1229. nyora-0.3.0/src/nyora/runtime.py +955 -0
  1230. nyora-0.3.0/src/nyora/server.py +342 -0
  1231. nyora-0.3.0/src/nyora/services/__init__.py +9 -0
  1232. nyora-0.3.0/src/nyora/services/backup.py +266 -0
  1233. nyora-0.3.0/src/nyora/services/downloads.py +138 -0
  1234. nyora-0.3.0/src/nyora/services/library.py +288 -0
  1235. nyora-0.3.0/src/nyora/services/manga.py +242 -0
  1236. nyora-0.3.0/src/nyora/services/sources.py +124 -0
  1237. nyora-0.3.0/src/nyora/services/system.py +5 -0
  1238. nyora-0.3.0/src/nyora_tui/__init__.py +1 -0
  1239. nyora-0.3.0/src/nyora_tui/app.py +745 -0
  1240. nyora-0.3.0/src/nyora_tui/py.typed +0 -0
  1241. nyora-0.3.0/test_pipeline.py +81 -0
  1242. nyora-0.3.0/tests/__init__.py +1 -0
  1243. nyora-0.3.0/tests/conftest.py +131 -0
  1244. nyora-0.3.0/tests/test_cli.py +181 -0
  1245. nyora-0.3.0/tests/test_direct.py +101 -0
  1246. nyora-0.3.0/tests/test_models.py +166 -0
  1247. nyora-0.3.0/tests/test_ota.py +177 -0
  1248. nyora-0.3.0/tests/test_runtime_polyfills.py +123 -0
  1249. nyora-0.3.0/tests/test_server.py +127 -0
  1250. nyora-0.3.0/tests/test_tui.py +80 -0
  1251. nyora-0.3.0/uv.lock +1738 -0
nyora-0.3.0/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ .venv/
2
+ .ruff_cache/
3
+ .mypy_cache/
4
+ .pytest_cache/
5
+ __pycache__/
6
+ *.py[cod]
7
+ dist/
8
+ build/
9
+ *.egg-info/
nyora-0.3.0/PKG-INFO ADDED
@@ -0,0 +1,329 @@
1
+ Metadata-Version: 2.4
2
+ Name: nyora
3
+ Version: 0.3.0
4
+ Summary: Python SDK and terminal UI (nyora-cli/TUI) for operating Nyora manga sources.
5
+ Project-URL: Homepage, https://nyora.app
6
+ Project-URL: Documentation, https://nyora.app/docs/python/
7
+ Project-URL: Repository, https://github.com/hasan72341/Nyora
8
+ Project-URL: Issues, https://github.com/hasan72341/Nyora/issues
9
+ Author: Md Hasan Raza
10
+ License: GPL-3.0-only
11
+ Keywords: manga,nyora,sdk,tui
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: End Users/Desktop
16
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
24
+ Classifier: Topic :: Internet :: WWW/HTTP
25
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
26
+ Requires-Python: >=3.10
27
+ Requires-Dist: httpx>=0.27.0
28
+ Requires-Dist: platformdirs>=4.2.0
29
+ Requires-Dist: quickjs>=1.19.4
30
+ Requires-Dist: rich>=13.7.0
31
+ Requires-Dist: selectolax>=0.4.10
32
+ Requires-Dist: textual>=0.86.0
33
+ Requires-Dist: typing-extensions>=4.12.0
34
+ Provides-Extra: dev
35
+ Requires-Dist: build>=1.2.0; extra == 'dev'
36
+ Requires-Dist: mypy>=1.11.0; extra == 'dev'
37
+ Requires-Dist: pytest>=8.2.0; extra == 'dev'
38
+ Requires-Dist: ruff>=0.6.0; extra == 'dev'
39
+ Requires-Dist: twine>=5.1.0; extra == 'dev'
40
+ Provides-Extra: docs
41
+ Requires-Dist: furo>=2024.5; extra == 'docs'
42
+ Requires-Dist: linkify-it-py>=2.0; extra == 'docs'
43
+ Requires-Dist: myst-parser>=3.0; extra == 'docs'
44
+ Requires-Dist: sphinx-autodoc-typehints>=2.0; extra == 'docs'
45
+ Requires-Dist: sphinx-copybutton>=0.5; extra == 'docs'
46
+ Requires-Dist: sphinx>=7.3; extra == 'docs'
47
+ Provides-Extra: tui
48
+ Requires-Dist: rich>=13.7.0; extra == 'tui'
49
+ Requires-Dist: textual>=0.86.0; extra == 'tui'
50
+ Description-Content-Type: text/markdown
51
+
52
+ <div align="center">
53
+
54
+ <img src="https://nyora.pages.dev/icon.png" width="120" alt="Nyora" />
55
+
56
+ # Nyora — Python
57
+
58
+ ### Read like the world can wait.
59
+
60
+ The official Python package for **Nyora** — script your library, search 1000+ manga sources, and fetch chapters and pages straight from Python. Pure Python: no JVM, no desktop app, no Node.js, no Java. Just `pip install`.
61
+
62
+ <p>
63
+ <img alt="Python" src="https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=python&logoColor=white" />
64
+ <a href="https://pypi.org/project/nyora/"><img alt="PyPI version" src="https://img.shields.io/pypi/v/nyora?style=for-the-badge&logo=pypi&logoColor=white" /></a>
65
+ <a href="https://pypi.org/project/nyora/"><img alt="Python versions" src="https://img.shields.io/pypi/pyversions/nyora?style=for-the-badge&logo=python&logoColor=white" /></a>
66
+ </p>
67
+
68
+ <p>
69
+ <a href="https://www.gnu.org/licenses/gpl-3.0"><img alt="License: GPL v3" src="https://img.shields.io/badge/License-GPLv3-blue.svg?style=for-the-badge" /></a>
70
+ <a href="https://github.com/Hasan72341/nyora-python/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/Hasan72341/nyora-python?style=for-the-badge&logo=github&logoColor=white" /></a>
71
+ <a href="https://github.com/Hasan72341/nyora-python/pulls"><img alt="PRs welcome" src="https://img.shields.io/badge/PRs-welcome-FF4655?style=for-the-badge&logo=github&logoColor=white" /></a>
72
+ </p>
73
+
74
+ <p>
75
+ <a href="https://nyora.app/docs/python/"><img alt="Documentation" src="https://img.shields.io/badge/Docs-nyora.app%2Fdocs%2Fpython-0ae448?style=for-the-badge&logo=readthedocs&logoColor=white" /></a>
76
+ <a href="https://pypi.org/project/nyora/"><img alt="Install from PyPI" src="https://img.shields.io/badge/Install-pip_install_nyora-3776AB?style=for-the-badge&logo=pypi&logoColor=white" /></a>
77
+ <a href="https://nyora.pages.dev"><img alt="Website" src="https://img.shields.io/badge/Website-nyora.app-FF4655?style=for-the-badge&logo=githubpages&logoColor=white" /></a>
78
+ </p>
79
+
80
+ </div>
81
+
82
+ ---
83
+
84
+ ## About
85
+
86
+ Nyora is a fast, free, ad-free, open-source manga reader that runs on **every** platform — with whole-page AI translation, 1000+ sources, offline downloads, and free cloud sync across all your devices. `nyora` brings that same source-and-parser engine to Python: a pip-installable library, a command-line tool (`nyora-cli`), and a terminal reader (TUI).
87
+
88
+ It runs the full Nyora parser bundle in-process through Python-installed dependencies — pure Python, end to end, with nothing to compile and no companion app to launch.
89
+
90
+ 📖 **Full documentation: [nyora.app/docs/python](https://nyora.app/docs/python/)**
91
+
92
+ ```bash
93
+ pip3 install nyora
94
+ ```
95
+
96
+ This single install gives you **both** things below — a Python library you import, and the `nyora-cli` command-line tool. They are documented as clearly separate surfaces.
97
+
98
+ ---
99
+
100
+ ## Python library (`pip install nyora`)
101
+
102
+ `import nyora` to drive Nyora's source/parser engine from your own code. Open a `Nyora()` client, find a source, search it, fetch details, and resolve page image URLs — all with a clean, typed API. No JVM helper, no desktop app, no Node.js, no Java.
103
+
104
+ ```python
105
+ from nyora import Nyora
106
+
107
+ with Nyora() as client:
108
+ source = client.sources.find("mangadex") # resolve by id or fuzzy name
109
+ page = client.manga.popular(source.id) # SearchPage of entries
110
+ entry = page.entries[0]
111
+
112
+ details = client.manga.details(source.id, entry.url, title=entry.title)
113
+ pages = client.manga.pages(source.id, details.chapters[0].url)
114
+
115
+ for p in pages:
116
+ print(p.url)
117
+ ```
118
+
119
+ The client exposes two typed namespaces:
120
+
121
+ - **`client.sources`** — `list()` the full bundled catalogue, or `find(...)` a source by **id** or fuzzy **name** (e.g. `"asura"`).
122
+ - **`client.manga`** — `popular(...)`, `latest(...)`, `search(...)`, `details(...)`, and `pages(...)`.
123
+
124
+ For concurrent fan-out across many sources, use the async client, which exposes the same namespaces:
125
+
126
+ ```python
127
+ import asyncio
128
+ from nyora import AsyncNyora
129
+
130
+ async def main():
131
+ async with AsyncNyora() as client:
132
+ source = await client.sources.find("asura")
133
+ results = await client.manga.search(source.id, "Solo Leveling")
134
+ print(results.entries[0].title)
135
+
136
+ asyncio.run(main())
137
+ ```
138
+
139
+ You can also attach to an already-running Nyora helper (the desktop helper, another app, or `nyora-cli serve`) over its REST contract instead of running the engine in-process:
140
+
141
+ ```python
142
+ from nyora import NyoraHelper
143
+
144
+ with NyoraHelper.attach("http://127.0.0.1:54123") as client:
145
+ print(client.health())
146
+ ```
147
+
148
+ The parser bundle and source catalogue update **over the air**, so new and fixed sources arrive without upgrading the package:
149
+
150
+ ```python
151
+ from nyora import Nyora
152
+
153
+ with Nyora() as client:
154
+ available, installed, latest = client.check_update()
155
+ if available:
156
+ result = client.update() # sha256-verified, atomic
157
+ print("updated to OTA version", result.version)
158
+ ```
159
+
160
+ → Library guide: **[nyora.app/docs/python/guide/library](https://nyora.app/docs/python/guide/library.html)** · API reference: **[/reference/api](https://nyora.app/docs/python/reference/api.html)**
161
+
162
+ ---
163
+
164
+ ## Command line (`nyora-cli`)
165
+
166
+ Installing the package adds the **`nyora-cli`** command (also aliased as `nyora`). It drives the same pure-Python engine as the library.
167
+
168
+ > **Running bare `nyora-cli` with no subcommand launches the terminal reader (TUI).** Pass a subcommand to run a one-shot command instead.
169
+
170
+ ```bash
171
+ nyora-cli # no subcommand -> launches the TUI
172
+ nyora-cli sources --search asura # one-shot subcommand
173
+ nyora-cli search -s asura "Solo Leveling"
174
+ ```
175
+
176
+ ### Subcommands
177
+
178
+ | Command | Description |
179
+ |---|---|
180
+ | `sources [--search Q]` | List the source catalogue, or fuzzy-find sources by name |
181
+ | `search -s SRC [-p PAGE] QUERY` | Search a source for a query |
182
+ | `popular -s SRC [-p PAGE]` | Browse a source's popular titles |
183
+ | `latest -s SRC [-p PAGE]` | Browse a source's latest updates |
184
+ | `details -s SRC URL` | Fetch manga details and the full chapter list |
185
+ | `pages -s SRC CHAPTER_URL [--branch B]` | Resolve page image URLs for a chapter |
186
+ | `download -s SRC CHAPTER_URL [-o DIR]` | Download every page image of a chapter to `DIR` |
187
+ | `update [--force]` | Self-update the parser bundle over the air (OTA) |
188
+ | `serve [--host H] [--port P]` | Run the pure-Python REST helper |
189
+ | `version` | Print the package and installed OTA version |
190
+
191
+ `-s/--source` accepts a source **id** or a fuzzy **name** (e.g. `asura`). Add the global `--json` flag to any subcommand to emit raw JSON instead of a pretty table — ideal for piping into `jq` or wiring into scripts:
192
+
193
+ ```bash
194
+ nyora-cli --json popular -s mangadex -p 1
195
+ ```
196
+
197
+ ### Terminal reader (TUI)
198
+
199
+ Run bare `nyora-cli` (or `nyora-tui`) to open the full terminal reader, built on [Textual](https://github.com/Textualize/textual): pick a source, browse popular/latest/search, open a title, and page through a chapter — all without leaving the shell. It is non-TTY safe: in a non-interactive shell it prints a friendly notice and exits cleanly.
200
+
201
+ ```bash
202
+ nyora-cli # launches the TUI
203
+ nyora-tui # also launches the TUI
204
+ ```
205
+
206
+ ### Pure-Python REST helper
207
+
208
+ `nyora-cli serve` starts a small stdlib HTTP server that exposes the engine over the same camelCase REST contract the desktop helper uses, so any other Nyora app (or `NyoraHelper.attach(...)`) can connect:
209
+
210
+ ```bash
211
+ nyora-cli serve --host 127.0.0.1 --port 0
212
+ # -> http://127.0.0.1:54123
213
+ ```
214
+
215
+ It binds the requested host/port (port `0` picks a free port), prints the base URL, and writes a `helper.port` file so other Nyora processes can auto-discover it. Endpoints include `/health`, `/sources`, `/sources/popular`, `/sources/latest`, `/sources/search`, `/manga/details`, and `/manga/pages`.
216
+
217
+ → CLI guide: **[/guide/cli](https://nyora.app/docs/python/guide/cli.html)** · TUI guide: **[/guide/tui](https://nyora.app/docs/python/guide/tui.html)** · Server guide: **[/guide/server](https://nyora.app/docs/python/guide/server.html)**
218
+
219
+ ---
220
+
221
+ ## Installation
222
+
223
+ ### From PyPI (recommended)
224
+
225
+ ```bash
226
+ pip3 install nyora
227
+ ```
228
+
229
+ This installs the `nyora` Python library **and** the `nyora-cli` command (aliased as `nyora`), including the Textual-based terminal reader and the REST helper. It is pure Python with only Python-installed dependencies — no JVM helper, desktop app, Node.js, or Java to install.
230
+
231
+ | Install | Command | Adds |
232
+ |---|---|---|
233
+ | Default | `pip3 install nyora` | Library + `nyora-cli` + TUI + REST helper |
234
+ | Docs tooling | `pip3 install "nyora[docs]"` | Sphinx + Furo to build these docs |
235
+ | Dev tooling | `pip3 install "nyora[dev]"` | Build, test, lint, and publish tooling |
236
+
237
+ ### Requirements
238
+
239
+ - **Python 3.10 or newer** (tested through 3.14).
240
+ - A network connection for source requests and OTA parser-bundle updates.
241
+
242
+ ### Troubleshooting
243
+
244
+ - **`nyora-cli: command not found`** — ensure your Python `Scripts`/`bin` directory is on your `PATH`, or invoke it as `python -m nyora`.
245
+ - **Stale or missing sources** — run `nyora-cli update` (or `--force`), then `nyora-cli version` to confirm the installed OTA version.
246
+ - **Permission errors writing the cache** — the OTA bundle is written into the user cache directory; make sure that location is writable for your user.
247
+
248
+ ---
249
+
250
+ ## What it can and cannot do
251
+
252
+ | Capability | Supported | Notes |
253
+ |---|---|---|
254
+ | List the full source catalogue | Yes | `client.sources.list()` / `nyora-cli sources` |
255
+ | Resolve a source by id or fuzzy name | Yes | `client.sources.find(...)` |
256
+ | Popular / latest / search browsing | Yes | `client.manga.popular` · `.latest` · `.search` |
257
+ | Manga details + full chapter list | Yes | `client.manga.details(...)` |
258
+ | Resolve page image URLs | Yes | `client.manga.pages(...)` |
259
+ | Download a chapter's pages to disk | Yes | `nyora-cli download` |
260
+ | Synchronous **and** async clients | Yes | `Nyora` and `AsyncNyora` |
261
+ | Run as a REST helper / attach to one | Yes | `nyora-cli serve` · `NyoraHelper.attach(...)` |
262
+ | OTA self-update of sources | Yes | sha256-verified, atomic writes |
263
+ | Pure Python — no JVM / Node.js / Java | Yes | Runs the parser bundle in-process |
264
+ | Host the consumer reading UI | No | Use the platform apps for a full reader |
265
+ | Bundled OCR / image translation pipeline | No | Translation lives in the consumer apps; the library gives you the page URLs to build on |
266
+ | Bypass a source's own access controls | No | It parses publicly accessible providers only |
267
+
268
+ ---
269
+
270
+ ## Build from source
271
+
272
+ For local development in this repository, the project is managed with [`uv`](https://github.com/astral-sh/uv).
273
+
274
+ ```bash
275
+ uv sync --extra dev --extra docs
276
+ uv run python -c "from nyora import Nyora, Manga, Source; print(Nyora, Manga, Source)"
277
+ ```
278
+
279
+ `uv sync` resolves and installs all dependencies into a managed virtual environment, and the `uv run` smoke test confirms the core symbols import cleanly. Requires Python 3.10+.
280
+
281
+ Build the documentation locally with:
282
+
283
+ ```bash
284
+ bash scripts/build-docs.sh
285
+ ```
286
+
287
+ ### Packaging
288
+
289
+ ```bash
290
+ uv lock
291
+ uv build
292
+ uv run twine check dist/*
293
+ ```
294
+
295
+ The parser bundle and source catalogue are force-included into the wheel, so a fresh install can run the engine immediately and update over the air from there.
296
+
297
+ ---
298
+
299
+ ## Nyora on every platform
300
+
301
+ The Nyora reader is everywhere your screens are — and your library, history, bookmarks, and progress sync for free across all of them.
302
+
303
+ | Platform | Repo | Get it |
304
+ |---|---|---|
305
+ | Python | [nyora-python](https://github.com/Hasan72341/nyora-python) **(you are here)** | [`pip3 install nyora`](https://pypi.org/project/nyora/) |
306
+ | Android | [nyora-android](https://github.com/Hasan72341/nyora-android) | [APK](https://github.com/Hasan72341/nyora-android/releases/latest) |
307
+ | macOS | [nyora-mac](https://github.com/Hasan72341/nyora-mac) | [.dmg / brew](https://github.com/Hasan72341/nyora-mac/releases/latest) |
308
+ | Windows | [nyora-windows](https://github.com/Hasan72341/nyora-windows) | [.exe (x64/ARM64)](https://github.com/Hasan72341/nyora-windows/releases/latest) |
309
+ | Linux | [nyora-linux](https://github.com/Hasan72341/nyora-linux) | [deb · rpm · curl](https://github.com/Hasan72341/nyora-linux/releases/latest) |
310
+ | iOS / iPadOS | [nyora-ios](https://github.com/Hasan72341/nyora-ios) | [sideload IPA](https://github.com/Hasan72341/nyora-ios/releases/latest) |
311
+ | Web | [nyora-web](https://github.com/Hasan72341/nyora-web) | [nyoraweb.pages.dev](https://nyoraweb.pages.dev) |
312
+
313
+ ---
314
+
315
+ ## Privacy & open source
316
+
317
+ Nyora is 100% free, ad-free, and contains no tracking. `nyora` is fully auditable open-source code: there are no analytics, no telemetry, and no accounts. The only network calls it makes are to the sources you ask for and to fetch the sha256-verified OTA parser bundle. Licensed under **GPL-3.0-only**.
318
+
319
+ ## Acknowledgements
320
+
321
+ Nyora's source and parser engine builds on the work of the open-source manga community. `nyora` is developed and maintained by **Md Hasan Raza** — [GitHub](https://github.com/Hasan72341) · hasanraza96@outlook.com.
322
+
323
+ ## License
324
+
325
+ Licensed under **GPL-3.0-only**. See the project metadata in `pyproject.toml` for details.
326
+
327
+ ---
328
+
329
+ > Nyora is not affiliated with any of the manga sources it can access.
nyora-0.3.0/README.md ADDED
@@ -0,0 +1,278 @@
1
+ <div align="center">
2
+
3
+ <img src="https://nyora.pages.dev/icon.png" width="120" alt="Nyora" />
4
+
5
+ # Nyora — Python
6
+
7
+ ### Read like the world can wait.
8
+
9
+ The official Python package for **Nyora** — script your library, search 1000+ manga sources, and fetch chapters and pages straight from Python. Pure Python: no JVM, no desktop app, no Node.js, no Java. Just `pip install`.
10
+
11
+ <p>
12
+ <img alt="Python" src="https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=python&logoColor=white" />
13
+ <a href="https://pypi.org/project/nyora/"><img alt="PyPI version" src="https://img.shields.io/pypi/v/nyora?style=for-the-badge&logo=pypi&logoColor=white" /></a>
14
+ <a href="https://pypi.org/project/nyora/"><img alt="Python versions" src="https://img.shields.io/pypi/pyversions/nyora?style=for-the-badge&logo=python&logoColor=white" /></a>
15
+ </p>
16
+
17
+ <p>
18
+ <a href="https://www.gnu.org/licenses/gpl-3.0"><img alt="License: GPL v3" src="https://img.shields.io/badge/License-GPLv3-blue.svg?style=for-the-badge" /></a>
19
+ <a href="https://github.com/Hasan72341/nyora-python/stargazers"><img alt="Stars" src="https://img.shields.io/github/stars/Hasan72341/nyora-python?style=for-the-badge&logo=github&logoColor=white" /></a>
20
+ <a href="https://github.com/Hasan72341/nyora-python/pulls"><img alt="PRs welcome" src="https://img.shields.io/badge/PRs-welcome-FF4655?style=for-the-badge&logo=github&logoColor=white" /></a>
21
+ </p>
22
+
23
+ <p>
24
+ <a href="https://nyora.app/docs/python/"><img alt="Documentation" src="https://img.shields.io/badge/Docs-nyora.app%2Fdocs%2Fpython-0ae448?style=for-the-badge&logo=readthedocs&logoColor=white" /></a>
25
+ <a href="https://pypi.org/project/nyora/"><img alt="Install from PyPI" src="https://img.shields.io/badge/Install-pip_install_nyora-3776AB?style=for-the-badge&logo=pypi&logoColor=white" /></a>
26
+ <a href="https://nyora.pages.dev"><img alt="Website" src="https://img.shields.io/badge/Website-nyora.app-FF4655?style=for-the-badge&logo=githubpages&logoColor=white" /></a>
27
+ </p>
28
+
29
+ </div>
30
+
31
+ ---
32
+
33
+ ## About
34
+
35
+ Nyora is a fast, free, ad-free, open-source manga reader that runs on **every** platform — with whole-page AI translation, 1000+ sources, offline downloads, and free cloud sync across all your devices. `nyora` brings that same source-and-parser engine to Python: a pip-installable library, a command-line tool (`nyora-cli`), and a terminal reader (TUI).
36
+
37
+ It runs the full Nyora parser bundle in-process through Python-installed dependencies — pure Python, end to end, with nothing to compile and no companion app to launch.
38
+
39
+ 📖 **Full documentation: [nyora.app/docs/python](https://nyora.app/docs/python/)**
40
+
41
+ ```bash
42
+ pip3 install nyora
43
+ ```
44
+
45
+ This single install gives you **both** things below — a Python library you import, and the `nyora-cli` command-line tool. They are documented as clearly separate surfaces.
46
+
47
+ ---
48
+
49
+ ## Python library (`pip install nyora`)
50
+
51
+ `import nyora` to drive Nyora's source/parser engine from your own code. Open a `Nyora()` client, find a source, search it, fetch details, and resolve page image URLs — all with a clean, typed API. No JVM helper, no desktop app, no Node.js, no Java.
52
+
53
+ ```python
54
+ from nyora import Nyora
55
+
56
+ with Nyora() as client:
57
+ source = client.sources.find("mangadex") # resolve by id or fuzzy name
58
+ page = client.manga.popular(source.id) # SearchPage of entries
59
+ entry = page.entries[0]
60
+
61
+ details = client.manga.details(source.id, entry.url, title=entry.title)
62
+ pages = client.manga.pages(source.id, details.chapters[0].url)
63
+
64
+ for p in pages:
65
+ print(p.url)
66
+ ```
67
+
68
+ The client exposes two typed namespaces:
69
+
70
+ - **`client.sources`** — `list()` the full bundled catalogue, or `find(...)` a source by **id** or fuzzy **name** (e.g. `"asura"`).
71
+ - **`client.manga`** — `popular(...)`, `latest(...)`, `search(...)`, `details(...)`, and `pages(...)`.
72
+
73
+ For concurrent fan-out across many sources, use the async client, which exposes the same namespaces:
74
+
75
+ ```python
76
+ import asyncio
77
+ from nyora import AsyncNyora
78
+
79
+ async def main():
80
+ async with AsyncNyora() as client:
81
+ source = await client.sources.find("asura")
82
+ results = await client.manga.search(source.id, "Solo Leveling")
83
+ print(results.entries[0].title)
84
+
85
+ asyncio.run(main())
86
+ ```
87
+
88
+ You can also attach to an already-running Nyora helper (the desktop helper, another app, or `nyora-cli serve`) over its REST contract instead of running the engine in-process:
89
+
90
+ ```python
91
+ from nyora import NyoraHelper
92
+
93
+ with NyoraHelper.attach("http://127.0.0.1:54123") as client:
94
+ print(client.health())
95
+ ```
96
+
97
+ The parser bundle and source catalogue update **over the air**, so new and fixed sources arrive without upgrading the package:
98
+
99
+ ```python
100
+ from nyora import Nyora
101
+
102
+ with Nyora() as client:
103
+ available, installed, latest = client.check_update()
104
+ if available:
105
+ result = client.update() # sha256-verified, atomic
106
+ print("updated to OTA version", result.version)
107
+ ```
108
+
109
+ → Library guide: **[nyora.app/docs/python/guide/library](https://nyora.app/docs/python/guide/library.html)** · API reference: **[/reference/api](https://nyora.app/docs/python/reference/api.html)**
110
+
111
+ ---
112
+
113
+ ## Command line (`nyora-cli`)
114
+
115
+ Installing the package adds the **`nyora-cli`** command (also aliased as `nyora`). It drives the same pure-Python engine as the library.
116
+
117
+ > **Running bare `nyora-cli` with no subcommand launches the terminal reader (TUI).** Pass a subcommand to run a one-shot command instead.
118
+
119
+ ```bash
120
+ nyora-cli # no subcommand -> launches the TUI
121
+ nyora-cli sources --search asura # one-shot subcommand
122
+ nyora-cli search -s asura "Solo Leveling"
123
+ ```
124
+
125
+ ### Subcommands
126
+
127
+ | Command | Description |
128
+ |---|---|
129
+ | `sources [--search Q]` | List the source catalogue, or fuzzy-find sources by name |
130
+ | `search -s SRC [-p PAGE] QUERY` | Search a source for a query |
131
+ | `popular -s SRC [-p PAGE]` | Browse a source's popular titles |
132
+ | `latest -s SRC [-p PAGE]` | Browse a source's latest updates |
133
+ | `details -s SRC URL` | Fetch manga details and the full chapter list |
134
+ | `pages -s SRC CHAPTER_URL [--branch B]` | Resolve page image URLs for a chapter |
135
+ | `download -s SRC CHAPTER_URL [-o DIR]` | Download every page image of a chapter to `DIR` |
136
+ | `update [--force]` | Self-update the parser bundle over the air (OTA) |
137
+ | `serve [--host H] [--port P]` | Run the pure-Python REST helper |
138
+ | `version` | Print the package and installed OTA version |
139
+
140
+ `-s/--source` accepts a source **id** or a fuzzy **name** (e.g. `asura`). Add the global `--json` flag to any subcommand to emit raw JSON instead of a pretty table — ideal for piping into `jq` or wiring into scripts:
141
+
142
+ ```bash
143
+ nyora-cli --json popular -s mangadex -p 1
144
+ ```
145
+
146
+ ### Terminal reader (TUI)
147
+
148
+ Run bare `nyora-cli` (or `nyora-tui`) to open the full terminal reader, built on [Textual](https://github.com/Textualize/textual): pick a source, browse popular/latest/search, open a title, and page through a chapter — all without leaving the shell. It is non-TTY safe: in a non-interactive shell it prints a friendly notice and exits cleanly.
149
+
150
+ ```bash
151
+ nyora-cli # launches the TUI
152
+ nyora-tui # also launches the TUI
153
+ ```
154
+
155
+ ### Pure-Python REST helper
156
+
157
+ `nyora-cli serve` starts a small stdlib HTTP server that exposes the engine over the same camelCase REST contract the desktop helper uses, so any other Nyora app (or `NyoraHelper.attach(...)`) can connect:
158
+
159
+ ```bash
160
+ nyora-cli serve --host 127.0.0.1 --port 0
161
+ # -> http://127.0.0.1:54123
162
+ ```
163
+
164
+ It binds the requested host/port (port `0` picks a free port), prints the base URL, and writes a `helper.port` file so other Nyora processes can auto-discover it. Endpoints include `/health`, `/sources`, `/sources/popular`, `/sources/latest`, `/sources/search`, `/manga/details`, and `/manga/pages`.
165
+
166
+ → CLI guide: **[/guide/cli](https://nyora.app/docs/python/guide/cli.html)** · TUI guide: **[/guide/tui](https://nyora.app/docs/python/guide/tui.html)** · Server guide: **[/guide/server](https://nyora.app/docs/python/guide/server.html)**
167
+
168
+ ---
169
+
170
+ ## Installation
171
+
172
+ ### From PyPI (recommended)
173
+
174
+ ```bash
175
+ pip3 install nyora
176
+ ```
177
+
178
+ This installs the `nyora` Python library **and** the `nyora-cli` command (aliased as `nyora`), including the Textual-based terminal reader and the REST helper. It is pure Python with only Python-installed dependencies — no JVM helper, desktop app, Node.js, or Java to install.
179
+
180
+ | Install | Command | Adds |
181
+ |---|---|---|
182
+ | Default | `pip3 install nyora` | Library + `nyora-cli` + TUI + REST helper |
183
+ | Docs tooling | `pip3 install "nyora[docs]"` | Sphinx + Furo to build these docs |
184
+ | Dev tooling | `pip3 install "nyora[dev]"` | Build, test, lint, and publish tooling |
185
+
186
+ ### Requirements
187
+
188
+ - **Python 3.10 or newer** (tested through 3.14).
189
+ - A network connection for source requests and OTA parser-bundle updates.
190
+
191
+ ### Troubleshooting
192
+
193
+ - **`nyora-cli: command not found`** — ensure your Python `Scripts`/`bin` directory is on your `PATH`, or invoke it as `python -m nyora`.
194
+ - **Stale or missing sources** — run `nyora-cli update` (or `--force`), then `nyora-cli version` to confirm the installed OTA version.
195
+ - **Permission errors writing the cache** — the OTA bundle is written into the user cache directory; make sure that location is writable for your user.
196
+
197
+ ---
198
+
199
+ ## What it can and cannot do
200
+
201
+ | Capability | Supported | Notes |
202
+ |---|---|---|
203
+ | List the full source catalogue | Yes | `client.sources.list()` / `nyora-cli sources` |
204
+ | Resolve a source by id or fuzzy name | Yes | `client.sources.find(...)` |
205
+ | Popular / latest / search browsing | Yes | `client.manga.popular` · `.latest` · `.search` |
206
+ | Manga details + full chapter list | Yes | `client.manga.details(...)` |
207
+ | Resolve page image URLs | Yes | `client.manga.pages(...)` |
208
+ | Download a chapter's pages to disk | Yes | `nyora-cli download` |
209
+ | Synchronous **and** async clients | Yes | `Nyora` and `AsyncNyora` |
210
+ | Run as a REST helper / attach to one | Yes | `nyora-cli serve` · `NyoraHelper.attach(...)` |
211
+ | OTA self-update of sources | Yes | sha256-verified, atomic writes |
212
+ | Pure Python — no JVM / Node.js / Java | Yes | Runs the parser bundle in-process |
213
+ | Host the consumer reading UI | No | Use the platform apps for a full reader |
214
+ | Bundled OCR / image translation pipeline | No | Translation lives in the consumer apps; the library gives you the page URLs to build on |
215
+ | Bypass a source's own access controls | No | It parses publicly accessible providers only |
216
+
217
+ ---
218
+
219
+ ## Build from source
220
+
221
+ For local development in this repository, the project is managed with [`uv`](https://github.com/astral-sh/uv).
222
+
223
+ ```bash
224
+ uv sync --extra dev --extra docs
225
+ uv run python -c "from nyora import Nyora, Manga, Source; print(Nyora, Manga, Source)"
226
+ ```
227
+
228
+ `uv sync` resolves and installs all dependencies into a managed virtual environment, and the `uv run` smoke test confirms the core symbols import cleanly. Requires Python 3.10+.
229
+
230
+ Build the documentation locally with:
231
+
232
+ ```bash
233
+ bash scripts/build-docs.sh
234
+ ```
235
+
236
+ ### Packaging
237
+
238
+ ```bash
239
+ uv lock
240
+ uv build
241
+ uv run twine check dist/*
242
+ ```
243
+
244
+ The parser bundle and source catalogue are force-included into the wheel, so a fresh install can run the engine immediately and update over the air from there.
245
+
246
+ ---
247
+
248
+ ## Nyora on every platform
249
+
250
+ The Nyora reader is everywhere your screens are — and your library, history, bookmarks, and progress sync for free across all of them.
251
+
252
+ | Platform | Repo | Get it |
253
+ |---|---|---|
254
+ | Python | [nyora-python](https://github.com/Hasan72341/nyora-python) **(you are here)** | [`pip3 install nyora`](https://pypi.org/project/nyora/) |
255
+ | Android | [nyora-android](https://github.com/Hasan72341/nyora-android) | [APK](https://github.com/Hasan72341/nyora-android/releases/latest) |
256
+ | macOS | [nyora-mac](https://github.com/Hasan72341/nyora-mac) | [.dmg / brew](https://github.com/Hasan72341/nyora-mac/releases/latest) |
257
+ | Windows | [nyora-windows](https://github.com/Hasan72341/nyora-windows) | [.exe (x64/ARM64)](https://github.com/Hasan72341/nyora-windows/releases/latest) |
258
+ | Linux | [nyora-linux](https://github.com/Hasan72341/nyora-linux) | [deb · rpm · curl](https://github.com/Hasan72341/nyora-linux/releases/latest) |
259
+ | iOS / iPadOS | [nyora-ios](https://github.com/Hasan72341/nyora-ios) | [sideload IPA](https://github.com/Hasan72341/nyora-ios/releases/latest) |
260
+ | Web | [nyora-web](https://github.com/Hasan72341/nyora-web) | [nyoraweb.pages.dev](https://nyoraweb.pages.dev) |
261
+
262
+ ---
263
+
264
+ ## Privacy & open source
265
+
266
+ Nyora is 100% free, ad-free, and contains no tracking. `nyora` is fully auditable open-source code: there are no analytics, no telemetry, and no accounts. The only network calls it makes are to the sources you ask for and to fetch the sha256-verified OTA parser bundle. Licensed under **GPL-3.0-only**.
267
+
268
+ ## Acknowledgements
269
+
270
+ Nyora's source and parser engine builds on the work of the open-source manga community. `nyora` is developed and maintained by **Md Hasan Raza** — [GitHub](https://github.com/Hasan72341) · hasanraza96@outlook.com.
271
+
272
+ ## License
273
+
274
+ Licensed under **GPL-3.0-only**. See the project metadata in `pyproject.toml` for details.
275
+
276
+ ---
277
+
278
+ > Nyora is not affiliated with any of the manga sources it can access.