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.
- nyora-0.3.0/.gitignore +9 -0
- nyora-0.3.0/PKG-INFO +329 -0
- nyora-0.3.0/README.md +278 -0
- nyora-0.3.0/bridge.js +157 -0
- nyora-0.3.0/docs/.gitignore +1 -0
- nyora-0.3.0/docs/Makefile +19 -0
- nyora-0.3.0/docs/_static/brand.css +146 -0
- nyora-0.3.0/docs/conf.py +133 -0
- nyora-0.3.0/docs/guide/agents.md +292 -0
- nyora-0.3.0/docs/guide/cli.md +470 -0
- nyora-0.3.0/docs/guide/library.md +456 -0
- nyora-0.3.0/docs/guide/ota.md +158 -0
- nyora-0.3.0/docs/guide/server.md +192 -0
- nyora-0.3.0/docs/guide/tui.md +135 -0
- nyora-0.3.0/docs/index.md +74 -0
- nyora-0.3.0/docs/make.bat +35 -0
- nyora-0.3.0/docs/quickstart.md +170 -0
- nyora-0.3.0/docs/reference/api.md +170 -0
- nyora-0.3.0/node_modules/.package-lock.json +776 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/LICENSE +21 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/README.md +316 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/package.json +81 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/index.ts +27 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/cache.ts +114 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/color.ts +3459 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/common.ts +31 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/constant.ts +66 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/convert.ts +469 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/css-calc.ts +965 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/css-gradient.ts +289 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/css-var.ts +250 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/relative-color.ts +580 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/resolve.ts +379 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/typedef.ts +87 -0
- nyora-0.3.0/node_modules/@asamuzakjp/css-color/src/js/util.ts +336 -0
- nyora-0.3.0/node_modules/@csstools/color-helpers/CHANGELOG.md +10 -0
- nyora-0.3.0/node_modules/@csstools/color-helpers/LICENSE.md +18 -0
- nyora-0.3.0/node_modules/@csstools/color-helpers/README.md +32 -0
- nyora-0.3.0/node_modules/@csstools/color-helpers/package.json +62 -0
- nyora-0.3.0/node_modules/@csstools/css-calc/CHANGELOG.md +10 -0
- nyora-0.3.0/node_modules/@csstools/css-calc/LICENSE.md +20 -0
- nyora-0.3.0/node_modules/@csstools/css-calc/README.md +132 -0
- nyora-0.3.0/node_modules/@csstools/css-calc/package.json +66 -0
- nyora-0.3.0/node_modules/@csstools/css-color-parser/CHANGELOG.md +13 -0
- nyora-0.3.0/node_modules/@csstools/css-color-parser/LICENSE.md +20 -0
- nyora-0.3.0/node_modules/@csstools/css-color-parser/README.md +37 -0
- nyora-0.3.0/node_modules/@csstools/css-color-parser/package.json +71 -0
- nyora-0.3.0/node_modules/@csstools/css-parser-algorithms/CHANGELOG.md +9 -0
- nyora-0.3.0/node_modules/@csstools/css-parser-algorithms/LICENSE.md +20 -0
- nyora-0.3.0/node_modules/@csstools/css-parser-algorithms/README.md +119 -0
- nyora-0.3.0/node_modules/@csstools/css-parser-algorithms/package.json +65 -0
- nyora-0.3.0/node_modules/@csstools/css-tokenizer/CHANGELOG.md +9 -0
- nyora-0.3.0/node_modules/@csstools/css-tokenizer/LICENSE.md +20 -0
- nyora-0.3.0/node_modules/@csstools/css-tokenizer/README.md +111 -0
- nyora-0.3.0/node_modules/@csstools/css-tokenizer/package.json +62 -0
- nyora-0.3.0/node_modules/agent-base/LICENSE +22 -0
- nyora-0.3.0/node_modules/agent-base/README.md +69 -0
- nyora-0.3.0/node_modules/agent-base/package.json +46 -0
- nyora-0.3.0/node_modules/asynckit/LICENSE +21 -0
- nyora-0.3.0/node_modules/asynckit/README.md +233 -0
- nyora-0.3.0/node_modules/asynckit/bench.js +76 -0
- nyora-0.3.0/node_modules/asynckit/index.js +6 -0
- nyora-0.3.0/node_modules/asynckit/lib/abort.js +29 -0
- nyora-0.3.0/node_modules/asynckit/lib/async.js +34 -0
- nyora-0.3.0/node_modules/asynckit/lib/defer.js +26 -0
- nyora-0.3.0/node_modules/asynckit/lib/iterate.js +75 -0
- nyora-0.3.0/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- nyora-0.3.0/node_modules/asynckit/lib/readable_parallel.js +25 -0
- nyora-0.3.0/node_modules/asynckit/lib/readable_serial.js +25 -0
- nyora-0.3.0/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- nyora-0.3.0/node_modules/asynckit/lib/state.js +37 -0
- nyora-0.3.0/node_modules/asynckit/lib/streamify.js +141 -0
- nyora-0.3.0/node_modules/asynckit/lib/terminator.js +29 -0
- nyora-0.3.0/node_modules/asynckit/package.json +63 -0
- nyora-0.3.0/node_modules/asynckit/parallel.js +43 -0
- nyora-0.3.0/node_modules/asynckit/serial.js +17 -0
- nyora-0.3.0/node_modules/asynckit/serialOrdered.js +75 -0
- nyora-0.3.0/node_modules/asynckit/stream.js +21 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/README.md +62 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/index.js +15 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/package.json +85 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- nyora-0.3.0/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- nyora-0.3.0/node_modules/combined-stream/License +19 -0
- nyora-0.3.0/node_modules/combined-stream/Readme.md +138 -0
- nyora-0.3.0/node_modules/combined-stream/lib/combined_stream.js +208 -0
- nyora-0.3.0/node_modules/combined-stream/package.json +25 -0
- nyora-0.3.0/node_modules/combined-stream/yarn.lock +17 -0
- nyora-0.3.0/node_modules/cssstyle/LICENSE +20 -0
- nyora-0.3.0/node_modules/cssstyle/README.md +11 -0
- nyora-0.3.0/node_modules/cssstyle/lib/CSSStyleDeclaration.js +613 -0
- nyora-0.3.0/node_modules/cssstyle/lib/allExtraProperties.js +49 -0
- nyora-0.3.0/node_modules/cssstyle/lib/allWebkitProperties.js +114 -0
- nyora-0.3.0/node_modules/cssstyle/lib/generated/allProperties.js +615 -0
- nyora-0.3.0/node_modules/cssstyle/lib/generated/implementedProperties.js +79 -0
- nyora-0.3.0/node_modules/cssstyle/lib/generated/properties.js +2673 -0
- nyora-0.3.0/node_modules/cssstyle/lib/parsers.js +537 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/background.js +52 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundAttachment.js +32 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundColor.js +35 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundImage.js +31 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundPosition.js +52 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/backgroundRepeat.js +32 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/border.js +42 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderBottom.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderBottomColor.js +35 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderBottomStyle.js +50 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderBottomWidth.js +36 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderCollapse.js +26 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderColor.js +43 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderLeft.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderLeftColor.js +35 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderLeftStyle.js +50 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderLeftWidth.js +36 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderRight.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderRightColor.js +35 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderRightStyle.js +50 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderRightWidth.js +36 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderSpacing.js +45 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderStyle.js +54 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderTop.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderTopColor.js +35 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderTopStyle.js +50 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderTopWidth.js +36 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/borderWidth.js +44 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/bottom.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/clear.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/clip.js +54 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/color.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/flex.js +73 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/flexBasis.js +33 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/flexGrow.js +28 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/flexShrink.js +28 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/float.js +27 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/floodColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/font.js +189 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/fontFamily.js +95 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/fontSize.js +47 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/fontStyle.js +32 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/fontVariant.js +36 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/fontWeight.js +36 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/height.js +31 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/left.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/lightingColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/lineHeight.js +39 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/margin.js +58 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/marginBottom.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/marginLeft.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/marginRight.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/marginTop.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/opacity.js +46 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/outlineColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/padding.js +58 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/paddingBottom.js +42 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/paddingLeft.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/paddingRight.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/paddingTop.js +40 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/right.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/stopColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/top.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitTextFillColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js +30 -0
- nyora-0.3.0/node_modules/cssstyle/lib/properties/width.js +31 -0
- nyora-0.3.0/node_modules/cssstyle/lib/utils/camelize.js +37 -0
- nyora-0.3.0/node_modules/cssstyle/lib/utils/propertyDescriptors.js +16 -0
- nyora-0.3.0/node_modules/cssstyle/lib/utils/strings.js +167 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/LICENSE.txt +20 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/README.mdown +74 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSConditionRule.js +25 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSContainerRule.js +50 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSDocumentRule.js +39 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSFontFaceRule.js +36 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSGroupingRule.js +69 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSHostRule.js +37 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSImportRule.js +132 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSKeyframeRule.js +37 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSKeyframesRule.js +39 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSLayerBlockRule.js +48 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSMediaRule.js +53 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSOM.js +3 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSRule.js +42 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStartingStyleRule.js +37 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStyleDeclaration.js +148 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStyleRule.js +190 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStyleSheet.js +88 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSSupportsRule.js +36 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSValue.js +43 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSValueExpression.js +344 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/MatcherList.js +62 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/MediaList.js +61 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/StyleSheet.js +17 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/clone.js +80 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/index.js +26 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/lib/parse.js +525 -0
- nyora-0.3.0/node_modules/cssstyle/node_modules/rrweb-cssom/package.json +27 -0
- nyora-0.3.0/node_modules/cssstyle/package.json +72 -0
- nyora-0.3.0/node_modules/data-urls/LICENSE.txt +7 -0
- nyora-0.3.0/node_modules/data-urls/README.md +62 -0
- nyora-0.3.0/node_modules/data-urls/lib/parser.js +69 -0
- nyora-0.3.0/node_modules/data-urls/lib/utils.js +20 -0
- nyora-0.3.0/node_modules/data-urls/package.json +48 -0
- nyora-0.3.0/node_modules/debug/LICENSE +20 -0
- nyora-0.3.0/node_modules/debug/README.md +481 -0
- nyora-0.3.0/node_modules/debug/package.json +64 -0
- nyora-0.3.0/node_modules/debug/src/browser.js +272 -0
- nyora-0.3.0/node_modules/debug/src/common.js +292 -0
- nyora-0.3.0/node_modules/debug/src/index.js +10 -0
- nyora-0.3.0/node_modules/debug/src/node.js +263 -0
- nyora-0.3.0/node_modules/decimal.js/LICENCE.md +23 -0
- nyora-0.3.0/node_modules/decimal.js/README.md +246 -0
- nyora-0.3.0/node_modules/decimal.js/decimal.d.ts +301 -0
- nyora-0.3.0/node_modules/decimal.js/decimal.js +4951 -0
- nyora-0.3.0/node_modules/decimal.js/decimal.mjs +4914 -0
- nyora-0.3.0/node_modules/decimal.js/package.json +55 -0
- nyora-0.3.0/node_modules/delayed-stream/.npmignore +1 -0
- nyora-0.3.0/node_modules/delayed-stream/License +19 -0
- nyora-0.3.0/node_modules/delayed-stream/Makefile +7 -0
- nyora-0.3.0/node_modules/delayed-stream/Readme.md +141 -0
- nyora-0.3.0/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- nyora-0.3.0/node_modules/delayed-stream/package.json +27 -0
- nyora-0.3.0/node_modules/dunder-proto/.eslintrc +5 -0
- nyora-0.3.0/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/dunder-proto/.nycrc +13 -0
- nyora-0.3.0/node_modules/dunder-proto/CHANGELOG.md +24 -0
- nyora-0.3.0/node_modules/dunder-proto/LICENSE +21 -0
- nyora-0.3.0/node_modules/dunder-proto/README.md +54 -0
- nyora-0.3.0/node_modules/dunder-proto/get.d.ts +5 -0
- nyora-0.3.0/node_modules/dunder-proto/get.js +30 -0
- nyora-0.3.0/node_modules/dunder-proto/package.json +76 -0
- nyora-0.3.0/node_modules/dunder-proto/set.d.ts +5 -0
- nyora-0.3.0/node_modules/dunder-proto/set.js +35 -0
- nyora-0.3.0/node_modules/dunder-proto/test/get.js +34 -0
- nyora-0.3.0/node_modules/dunder-proto/test/index.js +4 -0
- nyora-0.3.0/node_modules/dunder-proto/test/set.js +50 -0
- nyora-0.3.0/node_modules/dunder-proto/tsconfig.json +9 -0
- nyora-0.3.0/node_modules/entities/LICENSE +11 -0
- nyora-0.3.0/node_modules/entities/decode.d.ts +1 -0
- nyora-0.3.0/node_modules/entities/decode.js +3 -0
- nyora-0.3.0/node_modules/entities/escape.d.ts +1 -0
- nyora-0.3.0/node_modules/entities/escape.js +3 -0
- nyora-0.3.0/node_modules/entities/package.json +118 -0
- nyora-0.3.0/node_modules/entities/readme.md +122 -0
- nyora-0.3.0/node_modules/entities/src/decode-codepoint.ts +81 -0
- nyora-0.3.0/node_modules/entities/src/decode.spec.ts +320 -0
- nyora-0.3.0/node_modules/entities/src/decode.ts +620 -0
- nyora-0.3.0/node_modules/entities/src/encode.spec.ts +78 -0
- nyora-0.3.0/node_modules/entities/src/encode.ts +77 -0
- nyora-0.3.0/node_modules/entities/src/escape.spec.ts +14 -0
- nyora-0.3.0/node_modules/entities/src/escape.ts +148 -0
- nyora-0.3.0/node_modules/entities/src/generated/.eslintrc.json +10 -0
- nyora-0.3.0/node_modules/entities/src/generated/decode-data-html.ts +8 -0
- nyora-0.3.0/node_modules/entities/src/generated/decode-data-xml.ts +8 -0
- nyora-0.3.0/node_modules/entities/src/generated/encode-html.ts +17 -0
- nyora-0.3.0/node_modules/entities/src/index.spec.ts +125 -0
- nyora-0.3.0/node_modules/entities/src/index.ts +188 -0
- nyora-0.3.0/node_modules/es-define-property/.eslintrc +13 -0
- nyora-0.3.0/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/es-define-property/.nycrc +9 -0
- nyora-0.3.0/node_modules/es-define-property/CHANGELOG.md +29 -0
- nyora-0.3.0/node_modules/es-define-property/LICENSE +21 -0
- nyora-0.3.0/node_modules/es-define-property/README.md +49 -0
- nyora-0.3.0/node_modules/es-define-property/index.d.ts +3 -0
- nyora-0.3.0/node_modules/es-define-property/index.js +14 -0
- nyora-0.3.0/node_modules/es-define-property/package.json +81 -0
- nyora-0.3.0/node_modules/es-define-property/test/index.js +56 -0
- nyora-0.3.0/node_modules/es-define-property/tsconfig.json +10 -0
- nyora-0.3.0/node_modules/es-errors/.eslintrc +5 -0
- nyora-0.3.0/node_modules/es-errors/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/es-errors/CHANGELOG.md +40 -0
- nyora-0.3.0/node_modules/es-errors/LICENSE +21 -0
- nyora-0.3.0/node_modules/es-errors/README.md +55 -0
- nyora-0.3.0/node_modules/es-errors/eval.d.ts +3 -0
- nyora-0.3.0/node_modules/es-errors/eval.js +4 -0
- nyora-0.3.0/node_modules/es-errors/index.d.ts +3 -0
- nyora-0.3.0/node_modules/es-errors/index.js +4 -0
- nyora-0.3.0/node_modules/es-errors/package.json +80 -0
- nyora-0.3.0/node_modules/es-errors/range.d.ts +3 -0
- nyora-0.3.0/node_modules/es-errors/range.js +4 -0
- nyora-0.3.0/node_modules/es-errors/ref.d.ts +3 -0
- nyora-0.3.0/node_modules/es-errors/ref.js +4 -0
- nyora-0.3.0/node_modules/es-errors/syntax.d.ts +3 -0
- nyora-0.3.0/node_modules/es-errors/syntax.js +4 -0
- nyora-0.3.0/node_modules/es-errors/test/index.js +19 -0
- nyora-0.3.0/node_modules/es-errors/tsconfig.json +49 -0
- nyora-0.3.0/node_modules/es-errors/type.d.ts +3 -0
- nyora-0.3.0/node_modules/es-errors/type.js +4 -0
- nyora-0.3.0/node_modules/es-errors/uri.d.ts +3 -0
- nyora-0.3.0/node_modules/es-errors/uri.js +4 -0
- nyora-0.3.0/node_modules/es-object-atoms/.eslintrc +16 -0
- nyora-0.3.0/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/es-object-atoms/CHANGELOG.md +44 -0
- nyora-0.3.0/node_modules/es-object-atoms/LICENSE +21 -0
- nyora-0.3.0/node_modules/es-object-atoms/README.md +63 -0
- nyora-0.3.0/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- nyora-0.3.0/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- nyora-0.3.0/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- nyora-0.3.0/node_modules/es-object-atoms/ToObject.js +10 -0
- nyora-0.3.0/node_modules/es-object-atoms/index.d.ts +3 -0
- nyora-0.3.0/node_modules/es-object-atoms/index.js +4 -0
- nyora-0.3.0/node_modules/es-object-atoms/isObject.d.ts +3 -0
- nyora-0.3.0/node_modules/es-object-atoms/isObject.js +6 -0
- nyora-0.3.0/node_modules/es-object-atoms/package.json +79 -0
- nyora-0.3.0/node_modules/es-object-atoms/test/index.js +38 -0
- nyora-0.3.0/node_modules/es-object-atoms/tsconfig.json +7 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/.eslintrc +13 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/.nycrc +9 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/LICENSE +21 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/README.md +53 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/index.d.ts +10 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/index.js +35 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/package.json +78 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/test/index.js +85 -0
- nyora-0.3.0/node_modules/es-set-tostringtag/tsconfig.json +9 -0
- nyora-0.3.0/node_modules/form-data/CHANGELOG.md +686 -0
- nyora-0.3.0/node_modules/form-data/License +19 -0
- nyora-0.3.0/node_modules/form-data/README.md +355 -0
- nyora-0.3.0/node_modules/form-data/index.d.ts +62 -0
- nyora-0.3.0/node_modules/form-data/lib/browser.js +4 -0
- nyora-0.3.0/node_modules/form-data/lib/form_data.js +506 -0
- nyora-0.3.0/node_modules/form-data/lib/populate.js +10 -0
- nyora-0.3.0/node_modules/form-data/package.json +82 -0
- nyora-0.3.0/node_modules/function-bind/.eslintrc +21 -0
- nyora-0.3.0/node_modules/function-bind/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/function-bind/.github/SECURITY.md +3 -0
- nyora-0.3.0/node_modules/function-bind/.nycrc +13 -0
- nyora-0.3.0/node_modules/function-bind/CHANGELOG.md +136 -0
- nyora-0.3.0/node_modules/function-bind/LICENSE +20 -0
- nyora-0.3.0/node_modules/function-bind/README.md +46 -0
- nyora-0.3.0/node_modules/function-bind/implementation.js +84 -0
- nyora-0.3.0/node_modules/function-bind/index.js +5 -0
- nyora-0.3.0/node_modules/function-bind/package.json +87 -0
- nyora-0.3.0/node_modules/function-bind/test/.eslintrc +9 -0
- nyora-0.3.0/node_modules/function-bind/test/index.js +252 -0
- nyora-0.3.0/node_modules/get-intrinsic/.eslintrc +42 -0
- nyora-0.3.0/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/get-intrinsic/.nycrc +9 -0
- nyora-0.3.0/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- nyora-0.3.0/node_modules/get-intrinsic/LICENSE +21 -0
- nyora-0.3.0/node_modules/get-intrinsic/README.md +71 -0
- nyora-0.3.0/node_modules/get-intrinsic/index.js +378 -0
- nyora-0.3.0/node_modules/get-intrinsic/package.json +97 -0
- nyora-0.3.0/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- nyora-0.3.0/node_modules/get-proto/.eslintrc +10 -0
- nyora-0.3.0/node_modules/get-proto/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/get-proto/.nycrc +9 -0
- nyora-0.3.0/node_modules/get-proto/CHANGELOG.md +21 -0
- nyora-0.3.0/node_modules/get-proto/LICENSE +21 -0
- nyora-0.3.0/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- nyora-0.3.0/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- nyora-0.3.0/node_modules/get-proto/README.md +50 -0
- nyora-0.3.0/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- nyora-0.3.0/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- nyora-0.3.0/node_modules/get-proto/index.d.ts +5 -0
- nyora-0.3.0/node_modules/get-proto/index.js +27 -0
- nyora-0.3.0/node_modules/get-proto/package.json +81 -0
- nyora-0.3.0/node_modules/get-proto/test/index.js +68 -0
- nyora-0.3.0/node_modules/get-proto/tsconfig.json +9 -0
- nyora-0.3.0/node_modules/gopd/.eslintrc +16 -0
- nyora-0.3.0/node_modules/gopd/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/gopd/CHANGELOG.md +45 -0
- nyora-0.3.0/node_modules/gopd/LICENSE +21 -0
- nyora-0.3.0/node_modules/gopd/README.md +40 -0
- nyora-0.3.0/node_modules/gopd/gOPD.d.ts +1 -0
- nyora-0.3.0/node_modules/gopd/gOPD.js +4 -0
- nyora-0.3.0/node_modules/gopd/index.d.ts +5 -0
- nyora-0.3.0/node_modules/gopd/index.js +15 -0
- nyora-0.3.0/node_modules/gopd/package.json +77 -0
- nyora-0.3.0/node_modules/gopd/test/index.js +36 -0
- nyora-0.3.0/node_modules/gopd/tsconfig.json +9 -0
- nyora-0.3.0/node_modules/has-symbols/.eslintrc +11 -0
- nyora-0.3.0/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/has-symbols/.nycrc +9 -0
- nyora-0.3.0/node_modules/has-symbols/CHANGELOG.md +91 -0
- nyora-0.3.0/node_modules/has-symbols/LICENSE +21 -0
- nyora-0.3.0/node_modules/has-symbols/README.md +46 -0
- nyora-0.3.0/node_modules/has-symbols/index.d.ts +3 -0
- nyora-0.3.0/node_modules/has-symbols/index.js +14 -0
- nyora-0.3.0/node_modules/has-symbols/package.json +111 -0
- nyora-0.3.0/node_modules/has-symbols/shams.d.ts +3 -0
- nyora-0.3.0/node_modules/has-symbols/shams.js +45 -0
- nyora-0.3.0/node_modules/has-symbols/test/index.js +22 -0
- nyora-0.3.0/node_modules/has-symbols/test/shams/core-js.js +29 -0
- nyora-0.3.0/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- nyora-0.3.0/node_modules/has-symbols/test/tests.js +58 -0
- nyora-0.3.0/node_modules/has-symbols/tsconfig.json +10 -0
- nyora-0.3.0/node_modules/has-tostringtag/.eslintrc +5 -0
- nyora-0.3.0/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/has-tostringtag/.nycrc +13 -0
- nyora-0.3.0/node_modules/has-tostringtag/CHANGELOG.md +42 -0
- nyora-0.3.0/node_modules/has-tostringtag/LICENSE +21 -0
- nyora-0.3.0/node_modules/has-tostringtag/README.md +46 -0
- nyora-0.3.0/node_modules/has-tostringtag/index.d.ts +3 -0
- nyora-0.3.0/node_modules/has-tostringtag/index.js +8 -0
- nyora-0.3.0/node_modules/has-tostringtag/package.json +108 -0
- nyora-0.3.0/node_modules/has-tostringtag/shams.d.ts +3 -0
- nyora-0.3.0/node_modules/has-tostringtag/shams.js +8 -0
- nyora-0.3.0/node_modules/has-tostringtag/test/index.js +21 -0
- nyora-0.3.0/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- nyora-0.3.0/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- nyora-0.3.0/node_modules/has-tostringtag/test/tests.js +15 -0
- nyora-0.3.0/node_modules/has-tostringtag/tsconfig.json +49 -0
- nyora-0.3.0/node_modules/hasown/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/hasown/.nycrc +13 -0
- nyora-0.3.0/node_modules/hasown/CHANGELOG.md +58 -0
- nyora-0.3.0/node_modules/hasown/LICENSE +21 -0
- nyora-0.3.0/node_modules/hasown/README.md +40 -0
- nyora-0.3.0/node_modules/hasown/eslint.config.mjs +6 -0
- nyora-0.3.0/node_modules/hasown/index.d.ts +3 -0
- nyora-0.3.0/node_modules/hasown/index.js +8 -0
- nyora-0.3.0/node_modules/hasown/package.json +91 -0
- nyora-0.3.0/node_modules/hasown/tsconfig.json +6 -0
- nyora-0.3.0/node_modules/html-encoding-sniffer/LICENSE.txt +7 -0
- nyora-0.3.0/node_modules/html-encoding-sniffer/README.md +40 -0
- nyora-0.3.0/node_modules/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
- nyora-0.3.0/node_modules/html-encoding-sniffer/package.json +30 -0
- nyora-0.3.0/node_modules/http-proxy-agent/LICENSE +22 -0
- nyora-0.3.0/node_modules/http-proxy-agent/README.md +44 -0
- nyora-0.3.0/node_modules/http-proxy-agent/package.json +47 -0
- nyora-0.3.0/node_modules/https-proxy-agent/LICENSE +22 -0
- nyora-0.3.0/node_modules/https-proxy-agent/README.md +70 -0
- nyora-0.3.0/node_modules/https-proxy-agent/package.json +50 -0
- nyora-0.3.0/node_modules/iconv-lite/.github/dependabot.yml +11 -0
- nyora-0.3.0/node_modules/iconv-lite/.idea/codeStyles/Project.xml +47 -0
- nyora-0.3.0/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +5 -0
- nyora-0.3.0/node_modules/iconv-lite/.idea/iconv-lite.iml +12 -0
- nyora-0.3.0/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +6 -0
- nyora-0.3.0/node_modules/iconv-lite/.idea/modules.xml +8 -0
- nyora-0.3.0/node_modules/iconv-lite/.idea/vcs.xml +6 -0
- nyora-0.3.0/node_modules/iconv-lite/Changelog.md +212 -0
- nyora-0.3.0/node_modules/iconv-lite/LICENSE +21 -0
- nyora-0.3.0/node_modules/iconv-lite/README.md +130 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/index.js +23 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/internal.js +198 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/utf16.js +197 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/utf32.js +319 -0
- nyora-0.3.0/node_modules/iconv-lite/encodings/utf7.js +290 -0
- nyora-0.3.0/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- nyora-0.3.0/node_modules/iconv-lite/lib/index.d.ts +41 -0
- nyora-0.3.0/node_modules/iconv-lite/lib/index.js +180 -0
- nyora-0.3.0/node_modules/iconv-lite/lib/streams.js +109 -0
- nyora-0.3.0/node_modules/iconv-lite/package.json +44 -0
- nyora-0.3.0/node_modules/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
- nyora-0.3.0/node_modules/is-potential-custom-element-name/README.md +40 -0
- nyora-0.3.0/node_modules/is-potential-custom-element-name/index.js +9 -0
- nyora-0.3.0/node_modules/is-potential-custom-element-name/package.json +35 -0
- nyora-0.3.0/node_modules/jsdom/LICENSE.txt +22 -0
- nyora-0.3.0/node_modules/jsdom/README.md +521 -0
- nyora-0.3.0/node_modules/jsdom/lib/api.js +334 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/Window.js +1014 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/js-globals.json +312 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/parser/html.js +208 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/parser/index.js +37 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +98 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/level2/style.js +57 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/level3/xpath.js +1875 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +84 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/attributes.js +312 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/crypto/Crypto-impl.js +68 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +268 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/custom-elements/ElementInternals-impl.js +38 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/documents.js +15 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +59 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +30 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/domparsing/serialization.js +36 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +24 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js +419 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +72 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/SubmitEvent-impl.js +13 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/fetch/Headers-impl.js +172 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/fetch/header-list.js +65 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AbortController.js +143 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AbortSignal.js +215 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AbstractRange.js +171 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +55 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Attr.js +217 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/BarProp.js +117 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Blob.js +203 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/BlobCallback.js +30 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CDATASection.js +109 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CharacterData.js +453 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CloseEvent.js +168 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CloseEventInit.js +65 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Comment.js +120 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CompositionEvent.js +219 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Crypto.js +144 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +34 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CustomEvent.js +206 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMException.js +222 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMImplementation.js +237 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMRect.js +276 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMRectInit.js +76 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMRectReadOnly.js +285 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMStringMap.js +323 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DOMTokenList.js +563 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Document.js +4157 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DocumentFragment.js +334 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/DocumentType.js +252 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Element.js +3718 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +29 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ElementInternals.js +2137 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ErrorEvent.js +192 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +92 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Event.js +430 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +36 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventInit.js +58 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventModifierInit.js +221 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js +259 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/External.js +130 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/File.js +177 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FileList.js +324 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +33 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FileReader.js +468 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FocusEvent.js +144 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/FormData.js +468 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Function.js +42 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +31 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +1023 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +822 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +110 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +193 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +877 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +522 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +304 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLCollection.js +378 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +125 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLElement.js +3137 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +371 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +329 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +236 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormControlsCollection.js +344 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +501 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +494 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +708 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +320 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +110 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +670 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +877 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1920 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +201 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +179 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +166 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +545 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +168 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +554 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +891 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +276 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +365 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLModElement.js +207 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +281 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +925 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +197 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +376 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +537 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +392 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +276 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +110 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +160 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +228 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +462 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +1015 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +192 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +330 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +110 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +207 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +729 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +372 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +799 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +414 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +346 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +123 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1206 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +356 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +197 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +109 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +333 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +157 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +50 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Headers.js +418 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/History.js +266 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/InputEvent.js +168 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/InputEventInit.js +68 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +445 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +116 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Location.js +404 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MessageEvent.js +317 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MessageEventInit.js +100 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MimeType.js +156 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +352 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MouseEvent.js +569 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MouseEventInit.js +159 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MutationCallback.js +34 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MutationObserver.js +178 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +121 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/MutationRecord.js +229 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +553 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Navigator.js +326 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Node.js +763 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/NodeFilter.js +75 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/NodeIterator.js +207 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/NodeList.js +328 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +42 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +56 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +144 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +35 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Performance.js +142 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Plugin.js +385 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PluginArray.js +362 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PopStateEvent.js +144 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +122 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ProgressEvent.js +170 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +65 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/RadioNodeList.js +322 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Range.js +641 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +149 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGElement.js +2799 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +139 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGNumber.js +132 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +737 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGStringList.js +537 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +109 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Screen.js +180 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +14 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Selection.js +569 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ShadowRoot.js +187 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StaticRange.js +123 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +72 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Storage.js +423 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StorageEvent.js +318 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StorageEventInit.js +99 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/StyleSheetList.js +326 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SubmitEvent.js +144 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SubmitEventInit.js +36 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/Text.js +170 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/TouchEvent.js +222 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/TreeWalker.js +255 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/UIEventInit.js +62 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/ValidityState.js +249 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/VoidFunction.js +26 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/WebSocket.js +476 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/WheelEvent.js +191 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/WheelEventInit.js +71 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLDocument.js +109 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +655 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +334 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +14 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +109 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/XMLSerializer.js +132 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/generated/utils.js +190 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js +39 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/geometry/DOMRectReadOnly-impl.js +72 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/agent-factory.js +13 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/colors.js +245 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/create-element.js +323 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/custom-elements.js +272 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/details.js +15 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/events.js +24 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/http-request.js +261 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/json.js +12 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/node.js +68 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/page-transition-event.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/style-rules.js +243 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/stylesheets.js +123 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/text.js +19 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/helpers/validate-names.js +65 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +22 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/interfaces.js +228 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/node-document-position.js +10 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/node-type.js +16 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/node.js +331 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Document-impl.js +935 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Element-impl.js +599 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +22 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +145 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +210 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormControlsCollection-impl.js +33 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +240 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +367 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1097 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +108 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +72 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +262 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +244 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Node-impl.js +1161 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/RadioNodeList-impl.js +49 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +41 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/range/Range-impl.js +897 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/selection/Selection-impl.js +358 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +107 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/webidl/DOMException-impl.js +46 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/History-impl.js +148 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/Location-impl.js +228 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/window/navigation.js +85 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/FormData-impl.js +191 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +59 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/living/xhr/xhr-utils.js +441 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/utils.js +105 -0
- nyora-0.3.0/node_modules/jsdom/lib/jsdom/virtual-console.js +34 -0
- nyora-0.3.0/node_modules/jsdom/package.json +92 -0
- nyora-0.3.0/node_modules/lru-cache/LICENSE +15 -0
- nyora-0.3.0/node_modules/lru-cache/README.md +331 -0
- nyora-0.3.0/node_modules/lru-cache/package.json +116 -0
- nyora-0.3.0/node_modules/math-intrinsics/.eslintrc +16 -0
- nyora-0.3.0/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- nyora-0.3.0/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- nyora-0.3.0/node_modules/math-intrinsics/LICENSE +21 -0
- nyora-0.3.0/node_modules/math-intrinsics/README.md +50 -0
- nyora-0.3.0/node_modules/math-intrinsics/abs.d.ts +1 -0
- nyora-0.3.0/node_modules/math-intrinsics/abs.js +4 -0
- nyora-0.3.0/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- nyora-0.3.0/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- nyora-0.3.0/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- nyora-0.3.0/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- nyora-0.3.0/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- nyora-0.3.0/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- nyora-0.3.0/node_modules/math-intrinsics/floor.d.ts +1 -0
- nyora-0.3.0/node_modules/math-intrinsics/floor.js +4 -0
- nyora-0.3.0/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- nyora-0.3.0/node_modules/math-intrinsics/isFinite.js +12 -0
- nyora-0.3.0/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- nyora-0.3.0/node_modules/math-intrinsics/isInteger.js +16 -0
- nyora-0.3.0/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- nyora-0.3.0/node_modules/math-intrinsics/isNaN.js +6 -0
- nyora-0.3.0/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- nyora-0.3.0/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- nyora-0.3.0/node_modules/math-intrinsics/max.d.ts +1 -0
- nyora-0.3.0/node_modules/math-intrinsics/max.js +4 -0
- nyora-0.3.0/node_modules/math-intrinsics/min.d.ts +1 -0
- nyora-0.3.0/node_modules/math-intrinsics/min.js +4 -0
- nyora-0.3.0/node_modules/math-intrinsics/mod.d.ts +3 -0
- nyora-0.3.0/node_modules/math-intrinsics/mod.js +9 -0
- nyora-0.3.0/node_modules/math-intrinsics/package.json +86 -0
- nyora-0.3.0/node_modules/math-intrinsics/pow.d.ts +1 -0
- nyora-0.3.0/node_modules/math-intrinsics/pow.js +4 -0
- nyora-0.3.0/node_modules/math-intrinsics/round.d.ts +1 -0
- nyora-0.3.0/node_modules/math-intrinsics/round.js +4 -0
- nyora-0.3.0/node_modules/math-intrinsics/sign.d.ts +3 -0
- nyora-0.3.0/node_modules/math-intrinsics/sign.js +11 -0
- nyora-0.3.0/node_modules/math-intrinsics/test/index.js +192 -0
- nyora-0.3.0/node_modules/math-intrinsics/tsconfig.json +3 -0
- nyora-0.3.0/node_modules/mime-db/HISTORY.md +507 -0
- nyora-0.3.0/node_modules/mime-db/LICENSE +23 -0
- nyora-0.3.0/node_modules/mime-db/README.md +100 -0
- nyora-0.3.0/node_modules/mime-db/db.json +8519 -0
- nyora-0.3.0/node_modules/mime-db/index.js +12 -0
- nyora-0.3.0/node_modules/mime-db/package.json +60 -0
- nyora-0.3.0/node_modules/mime-types/HISTORY.md +397 -0
- nyora-0.3.0/node_modules/mime-types/LICENSE +23 -0
- nyora-0.3.0/node_modules/mime-types/README.md +113 -0
- nyora-0.3.0/node_modules/mime-types/index.js +188 -0
- nyora-0.3.0/node_modules/mime-types/package.json +44 -0
- nyora-0.3.0/node_modules/ms/index.js +162 -0
- nyora-0.3.0/node_modules/ms/license.md +21 -0
- nyora-0.3.0/node_modules/ms/package.json +38 -0
- nyora-0.3.0/node_modules/ms/readme.md +59 -0
- nyora-0.3.0/node_modules/nwsapi/LICENSE +22 -0
- nyora-0.3.0/node_modules/nwsapi/README.md +132 -0
- nyora-0.3.0/node_modules/nwsapi/package.json +43 -0
- nyora-0.3.0/node_modules/nwsapi/src/modules/nwsapi-jquery.js +135 -0
- nyora-0.3.0/node_modules/nwsapi/src/modules/nwsapi-traversal.js +90 -0
- nyora-0.3.0/node_modules/nwsapi/src/nwsapi.js +2018 -0
- nyora-0.3.0/node_modules/parse5/LICENSE +19 -0
- nyora-0.3.0/node_modules/parse5/README.md +38 -0
- nyora-0.3.0/node_modules/parse5/package.json +50 -0
- nyora-0.3.0/node_modules/psl/LICENSE +9 -0
- nyora-0.3.0/node_modules/psl/README.md +260 -0
- nyora-0.3.0/node_modules/psl/SECURITY.md +13 -0
- nyora-0.3.0/node_modules/psl/browserstack-logo.svg +90 -0
- nyora-0.3.0/node_modules/psl/data/rules.js +9778 -0
- nyora-0.3.0/node_modules/psl/index.js +247 -0
- nyora-0.3.0/node_modules/psl/package.json +51 -0
- nyora-0.3.0/node_modules/psl/types/index.d.ts +52 -0
- nyora-0.3.0/node_modules/psl/types/test.ts +14 -0
- nyora-0.3.0/node_modules/psl/types/tsconfig.json +22 -0
- nyora-0.3.0/node_modules/psl/vite.config.js +20 -0
- nyora-0.3.0/node_modules/punycode/LICENSE-MIT.txt +20 -0
- nyora-0.3.0/node_modules/punycode/README.md +148 -0
- nyora-0.3.0/node_modules/punycode/package.json +58 -0
- nyora-0.3.0/node_modules/punycode/punycode.es6.js +444 -0
- nyora-0.3.0/node_modules/punycode/punycode.js +443 -0
- nyora-0.3.0/node_modules/querystringify/LICENSE +22 -0
- nyora-0.3.0/node_modules/querystringify/README.md +61 -0
- nyora-0.3.0/node_modules/querystringify/index.js +118 -0
- nyora-0.3.0/node_modules/querystringify/package.json +38 -0
- nyora-0.3.0/node_modules/requires-port/.npmignore +2 -0
- nyora-0.3.0/node_modules/requires-port/.travis.yml +19 -0
- nyora-0.3.0/node_modules/requires-port/LICENSE +22 -0
- nyora-0.3.0/node_modules/requires-port/README.md +47 -0
- nyora-0.3.0/node_modules/requires-port/index.js +38 -0
- nyora-0.3.0/node_modules/requires-port/package.json +47 -0
- nyora-0.3.0/node_modules/requires-port/test.js +98 -0
- nyora-0.3.0/node_modules/rrweb-cssom/LICENSE.txt +20 -0
- nyora-0.3.0/node_modules/rrweb-cssom/README.mdown +74 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSConditionRule.js +25 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSContainerRule.js +50 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSDocumentRule.js +39 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSFontFaceRule.js +36 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSGroupingRule.js +69 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSHostRule.js +37 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSImportRule.js +132 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSKeyframeRule.js +37 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSKeyframesRule.js +39 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSMediaRule.js +53 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSOM.js +3 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSRule.js +45 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSStartingStyleRule.js +37 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSStyleDeclaration.js +148 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSStyleRule.js +190 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSStyleSheet.js +88 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSSupportsRule.js +36 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSValue.js +43 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/CSSValueExpression.js +344 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/MatcherList.js +62 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/MediaList.js +61 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/StyleSheet.js +17 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/clone.js +75 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/index.js +25 -0
- nyora-0.3.0/node_modules/rrweb-cssom/lib/parse.js +504 -0
- nyora-0.3.0/node_modules/rrweb-cssom/package.json +27 -0
- nyora-0.3.0/node_modules/safer-buffer/LICENSE +21 -0
- nyora-0.3.0/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- nyora-0.3.0/node_modules/safer-buffer/Readme.md +156 -0
- nyora-0.3.0/node_modules/safer-buffer/dangerous.js +58 -0
- nyora-0.3.0/node_modules/safer-buffer/package.json +34 -0
- nyora-0.3.0/node_modules/safer-buffer/safer.js +77 -0
- nyora-0.3.0/node_modules/safer-buffer/tests.js +406 -0
- nyora-0.3.0/node_modules/saxes/README.md +323 -0
- nyora-0.3.0/node_modules/saxes/package.json +71 -0
- nyora-0.3.0/node_modules/saxes/saxes.d.ts +635 -0
- nyora-0.3.0/node_modules/saxes/saxes.js +2053 -0
- nyora-0.3.0/node_modules/saxes/saxes.js.map +1 -0
- nyora-0.3.0/node_modules/symbol-tree/LICENSE +21 -0
- nyora-0.3.0/node_modules/symbol-tree/README.md +545 -0
- nyora-0.3.0/node_modules/symbol-tree/lib/SymbolTree.js +838 -0
- nyora-0.3.0/node_modules/symbol-tree/lib/SymbolTreeNode.js +54 -0
- nyora-0.3.0/node_modules/symbol-tree/lib/TreeIterator.js +69 -0
- nyora-0.3.0/node_modules/symbol-tree/lib/TreePosition.js +11 -0
- nyora-0.3.0/node_modules/symbol-tree/package.json +47 -0
- nyora-0.3.0/node_modules/tough-cookie/LICENSE +12 -0
- nyora-0.3.0/node_modules/tough-cookie/README.md +596 -0
- nyora-0.3.0/node_modules/tough-cookie/lib/cookie.js +1758 -0
- nyora-0.3.0/node_modules/tough-cookie/lib/memstore.js +242 -0
- nyora-0.3.0/node_modules/tough-cookie/lib/pathMatch.js +61 -0
- nyora-0.3.0/node_modules/tough-cookie/lib/permuteDomain.js +65 -0
- nyora-0.3.0/node_modules/tough-cookie/lib/pubsuffix-psl.js +73 -0
- nyora-0.3.0/node_modules/tough-cookie/lib/store.js +76 -0
- nyora-0.3.0/node_modules/tough-cookie/lib/utilHelper.js +39 -0
- nyora-0.3.0/node_modules/tough-cookie/lib/validators.js +110 -0
- nyora-0.3.0/node_modules/tough-cookie/lib/version.js +2 -0
- nyora-0.3.0/node_modules/tough-cookie/package.json +110 -0
- nyora-0.3.0/node_modules/tr46/LICENSE.md +21 -0
- nyora-0.3.0/node_modules/tr46/README.md +76 -0
- nyora-0.3.0/node_modules/tr46/index.js +344 -0
- nyora-0.3.0/node_modules/tr46/lib/mappingTable.json +1 -0
- nyora-0.3.0/node_modules/tr46/lib/regexes.js +29 -0
- nyora-0.3.0/node_modules/tr46/lib/statusMapping.js +9 -0
- nyora-0.3.0/node_modules/tr46/package.json +44 -0
- nyora-0.3.0/node_modules/universalify/LICENSE +20 -0
- nyora-0.3.0/node_modules/universalify/README.md +76 -0
- nyora-0.3.0/node_modules/universalify/index.js +29 -0
- nyora-0.3.0/node_modules/universalify/package.json +34 -0
- nyora-0.3.0/node_modules/url-parse/LICENSE +22 -0
- nyora-0.3.0/node_modules/url-parse/README.md +153 -0
- nyora-0.3.0/node_modules/url-parse/index.js +589 -0
- nyora-0.3.0/node_modules/url-parse/package.json +49 -0
- nyora-0.3.0/node_modules/w3c-xmlserializer/LICENSE.md +25 -0
- nyora-0.3.0/node_modules/w3c-xmlserializer/README.md +41 -0
- nyora-0.3.0/node_modules/w3c-xmlserializer/lib/attributes.js +125 -0
- nyora-0.3.0/node_modules/w3c-xmlserializer/lib/constants.js +44 -0
- nyora-0.3.0/node_modules/w3c-xmlserializer/lib/serialize.js +365 -0
- nyora-0.3.0/node_modules/w3c-xmlserializer/package.json +32 -0
- nyora-0.3.0/node_modules/webidl-conversions/LICENSE.md +12 -0
- nyora-0.3.0/node_modules/webidl-conversions/README.md +99 -0
- nyora-0.3.0/node_modules/webidl-conversions/lib/index.js +450 -0
- nyora-0.3.0/node_modules/webidl-conversions/package.json +35 -0
- nyora-0.3.0/node_modules/whatwg-encoding/LICENSE.txt +7 -0
- nyora-0.3.0/node_modules/whatwg-encoding/README.md +50 -0
- nyora-0.3.0/node_modules/whatwg-encoding/lib/labels-to-names.json +217 -0
- nyora-0.3.0/node_modules/whatwg-encoding/lib/supported-names.json +38 -0
- nyora-0.3.0/node_modules/whatwg-encoding/lib/whatwg-encoding.js +60 -0
- nyora-0.3.0/node_modules/whatwg-encoding/package.json +32 -0
- nyora-0.3.0/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
- nyora-0.3.0/node_modules/whatwg-mimetype/README.md +101 -0
- nyora-0.3.0/node_modules/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
- nyora-0.3.0/node_modules/whatwg-mimetype/lib/mime-type.js +127 -0
- nyora-0.3.0/node_modules/whatwg-mimetype/lib/parser.js +105 -0
- nyora-0.3.0/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
- nyora-0.3.0/node_modules/whatwg-mimetype/lib/utils.js +60 -0
- nyora-0.3.0/node_modules/whatwg-mimetype/package.json +45 -0
- nyora-0.3.0/node_modules/whatwg-url/LICENSE.txt +21 -0
- nyora-0.3.0/node_modules/whatwg-url/README.md +106 -0
- nyora-0.3.0/node_modules/whatwg-url/index.js +27 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/Function.js +42 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/URL-impl.js +233 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/URL.js +499 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/URLSearchParams-impl.js +135 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/URLSearchParams.js +505 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/encoding.js +16 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/infra.js +26 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/url-state-machine.js +1274 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/urlencoded.js +89 -0
- nyora-0.3.0/node_modules/whatwg-url/lib/utils.js +190 -0
- nyora-0.3.0/node_modules/whatwg-url/package.json +53 -0
- nyora-0.3.0/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
- nyora-0.3.0/node_modules/ws/LICENSE +20 -0
- nyora-0.3.0/node_modules/ws/README.md +548 -0
- nyora-0.3.0/node_modules/ws/browser.js +8 -0
- nyora-0.3.0/node_modules/ws/index.js +22 -0
- nyora-0.3.0/node_modules/ws/lib/buffer-util.js +131 -0
- nyora-0.3.0/node_modules/ws/lib/constants.js +19 -0
- nyora-0.3.0/node_modules/ws/lib/event-target.js +292 -0
- nyora-0.3.0/node_modules/ws/lib/extension.js +203 -0
- nyora-0.3.0/node_modules/ws/lib/limiter.js +55 -0
- nyora-0.3.0/node_modules/ws/lib/permessage-deflate.js +528 -0
- nyora-0.3.0/node_modules/ws/lib/receiver.js +760 -0
- nyora-0.3.0/node_modules/ws/lib/sender.js +607 -0
- nyora-0.3.0/node_modules/ws/lib/stream.js +161 -0
- nyora-0.3.0/node_modules/ws/lib/subprotocol.js +62 -0
- nyora-0.3.0/node_modules/ws/lib/validation.js +152 -0
- nyora-0.3.0/node_modules/ws/lib/websocket-server.js +562 -0
- nyora-0.3.0/node_modules/ws/lib/websocket.js +1407 -0
- nyora-0.3.0/node_modules/ws/package.json +70 -0
- nyora-0.3.0/node_modules/ws/wrapper.mjs +21 -0
- nyora-0.3.0/node_modules/xml-name-validator/LICENSE.txt +176 -0
- nyora-0.3.0/node_modules/xml-name-validator/README.md +35 -0
- nyora-0.3.0/node_modules/xml-name-validator/lib/xml-name-validator.js +9 -0
- nyora-0.3.0/node_modules/xml-name-validator/package.json +30 -0
- nyora-0.3.0/node_modules/xmlchars/LICENSE +18 -0
- nyora-0.3.0/node_modules/xmlchars/README.md +33 -0
- nyora-0.3.0/node_modules/xmlchars/package.json +51 -0
- nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed4.d.ts +31 -0
- nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed4.js +44 -0
- nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed4.js.map +1 -0
- nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed5.d.ts +51 -0
- nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed5.js +105 -0
- nyora-0.3.0/node_modules/xmlchars/xml/1.0/ed5.js.map +1 -0
- nyora-0.3.0/node_modules/xmlchars/xml/1.1/ed2.d.ts +73 -0
- nyora-0.3.0/node_modules/xmlchars/xml/1.1/ed2.js +145 -0
- nyora-0.3.0/node_modules/xmlchars/xml/1.1/ed2.js.map +1 -0
- nyora-0.3.0/node_modules/xmlchars/xmlchars.d.ts +170 -0
- nyora-0.3.0/node_modules/xmlchars/xmlchars.js +191 -0
- nyora-0.3.0/node_modules/xmlchars/xmlchars.js.map +1 -0
- nyora-0.3.0/node_modules/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- nyora-0.3.0/node_modules/xmlchars/xmlns/1.0/ed3.js +65 -0
- nyora-0.3.0/node_modules/xmlchars/xmlns/1.0/ed3.js.map +1 -0
- nyora-0.3.0/package-lock.json +783 -0
- nyora-0.3.0/package.json +10 -0
- nyora-0.3.0/parsers.bundle.js +13078 -0
- nyora-0.3.0/pyproject.toml +103 -0
- nyora-0.3.0/scripts/build-docs.sh +18 -0
- nyora-0.3.0/sources.json +2778 -0
- nyora-0.3.0/src/nyora/__init__.py +79 -0
- nyora-0.3.0/src/nyora/assets/__init__.py +1 -0
- nyora-0.3.0/src/nyora/cli.py +475 -0
- nyora-0.3.0/src/nyora/client.py +380 -0
- nyora-0.3.0/src/nyora/config.py +66 -0
- nyora-0.3.0/src/nyora/direct.py +296 -0
- nyora-0.3.0/src/nyora/errors.py +39 -0
- nyora-0.3.0/src/nyora/helper.py +144 -0
- nyora-0.3.0/src/nyora/models.py +674 -0
- nyora-0.3.0/src/nyora/ota.py +311 -0
- nyora-0.3.0/src/nyora/parser_bridge.py +144 -0
- nyora-0.3.0/src/nyora/py.typed +0 -0
- nyora-0.3.0/src/nyora/runtime.py +955 -0
- nyora-0.3.0/src/nyora/server.py +342 -0
- nyora-0.3.0/src/nyora/services/__init__.py +9 -0
- nyora-0.3.0/src/nyora/services/backup.py +266 -0
- nyora-0.3.0/src/nyora/services/downloads.py +138 -0
- nyora-0.3.0/src/nyora/services/library.py +288 -0
- nyora-0.3.0/src/nyora/services/manga.py +242 -0
- nyora-0.3.0/src/nyora/services/sources.py +124 -0
- nyora-0.3.0/src/nyora/services/system.py +5 -0
- nyora-0.3.0/src/nyora_tui/__init__.py +1 -0
- nyora-0.3.0/src/nyora_tui/app.py +745 -0
- nyora-0.3.0/src/nyora_tui/py.typed +0 -0
- nyora-0.3.0/test_pipeline.py +81 -0
- nyora-0.3.0/tests/__init__.py +1 -0
- nyora-0.3.0/tests/conftest.py +131 -0
- nyora-0.3.0/tests/test_cli.py +181 -0
- nyora-0.3.0/tests/test_direct.py +101 -0
- nyora-0.3.0/tests/test_models.py +166 -0
- nyora-0.3.0/tests/test_ota.py +177 -0
- nyora-0.3.0/tests/test_runtime_polyfills.py +123 -0
- nyora-0.3.0/tests/test_server.py +127 -0
- nyora-0.3.0/tests/test_tui.py +80 -0
- nyora-0.3.0/uv.lock +1738 -0
nyora-0.3.0/.gitignore
ADDED
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.
|