├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .jsdoc.json ├── .npmignore ├── LICENSE ├── README.md ├── docs ├── API.html ├── fonts │ ├── Montserrat │ │ ├── Montserrat-Bold.eot │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Bold.woff │ │ ├── Montserrat-Bold.woff2 │ │ ├── Montserrat-Regular.eot │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-Regular.woff │ │ └── Montserrat-Regular.woff2 │ └── Source-Sans-Pro │ │ ├── sourcesanspro-light-webfont.eot │ │ ├── sourcesanspro-light-webfont.svg │ │ ├── sourcesanspro-light-webfont.ttf │ │ ├── sourcesanspro-light-webfont.woff │ │ ├── sourcesanspro-light-webfont.woff2 │ │ ├── sourcesanspro-regular-webfont.eot │ │ ├── sourcesanspro-regular-webfont.svg │ │ ├── sourcesanspro-regular-webfont.ttf │ │ ├── sourcesanspro-regular-webfont.woff │ │ └── sourcesanspro-regular-webfont.woff2 ├── global.html ├── index.html ├── index.js.html ├── scripts │ ├── collapse.js │ ├── commonNav.js │ ├── linenumber.js │ ├── nav.js │ ├── polyfill.js │ ├── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js │ └── search.js └── styles │ ├── jsdoc.css │ └── prettify.css ├── index.d.ts ├── index.js ├── logo.png ├── package.json └── test ├── create_test_cases.js ├── example_test_cases ├── 0.json ├── 1.json ├── 2.json ├── 3.json ├── 4.json └── 5.json ├── kanji_test_cases ├── 0.json ├── 1.json ├── 2.json ├── 3.json ├── 4.json ├── 5.json ├── 6.json └── 7.json ├── phrase_scrape_test_cases ├── 0.json ├── 1.json ├── 2.json ├── 3.json └── 4.json └── run_tests.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .vscode 3 | .nyc_output 4 | index.cjs 5 | coverage 6 | -------------------------------------------------------------------------------- /.jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/.jsdoc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/README.md -------------------------------------------------------------------------------- /docs/API.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/API.html -------------------------------------------------------------------------------- /docs/fonts/Montserrat/Montserrat-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Montserrat/Montserrat-Bold.eot -------------------------------------------------------------------------------- /docs/fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /docs/fonts/Montserrat/Montserrat-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Montserrat/Montserrat-Bold.woff -------------------------------------------------------------------------------- /docs/fonts/Montserrat/Montserrat-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Montserrat/Montserrat-Bold.woff2 -------------------------------------------------------------------------------- /docs/fonts/Montserrat/Montserrat-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Montserrat/Montserrat-Regular.eot -------------------------------------------------------------------------------- /docs/fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /docs/fonts/Montserrat/Montserrat-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Montserrat/Montserrat-Regular.woff -------------------------------------------------------------------------------- /docs/fonts/Montserrat/Montserrat-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Montserrat/Montserrat-Regular.woff2 -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff2 -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff2 -------------------------------------------------------------------------------- /docs/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/global.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/index.js.html -------------------------------------------------------------------------------- /docs/scripts/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/scripts/collapse.js -------------------------------------------------------------------------------- /docs/scripts/commonNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/scripts/commonNav.js -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/scripts/nav.js -------------------------------------------------------------------------------- /docs/scripts/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/scripts/polyfill.js -------------------------------------------------------------------------------- /docs/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /docs/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/scripts/search.js -------------------------------------------------------------------------------- /docs/styles/jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/styles/jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/docs/styles/prettify.css -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/index.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/package.json -------------------------------------------------------------------------------- /test/create_test_cases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/create_test_cases.js -------------------------------------------------------------------------------- /test/example_test_cases/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/example_test_cases/0.json -------------------------------------------------------------------------------- /test/example_test_cases/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/example_test_cases/1.json -------------------------------------------------------------------------------- /test/example_test_cases/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/example_test_cases/2.json -------------------------------------------------------------------------------- /test/example_test_cases/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/example_test_cases/3.json -------------------------------------------------------------------------------- /test/example_test_cases/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/example_test_cases/4.json -------------------------------------------------------------------------------- /test/example_test_cases/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/example_test_cases/5.json -------------------------------------------------------------------------------- /test/kanji_test_cases/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/kanji_test_cases/0.json -------------------------------------------------------------------------------- /test/kanji_test_cases/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/kanji_test_cases/1.json -------------------------------------------------------------------------------- /test/kanji_test_cases/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/kanji_test_cases/2.json -------------------------------------------------------------------------------- /test/kanji_test_cases/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/kanji_test_cases/3.json -------------------------------------------------------------------------------- /test/kanji_test_cases/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/kanji_test_cases/4.json -------------------------------------------------------------------------------- /test/kanji_test_cases/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/kanji_test_cases/5.json -------------------------------------------------------------------------------- /test/kanji_test_cases/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/kanji_test_cases/6.json -------------------------------------------------------------------------------- /test/kanji_test_cases/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/kanji_test_cases/7.json -------------------------------------------------------------------------------- /test/phrase_scrape_test_cases/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/phrase_scrape_test_cases/0.json -------------------------------------------------------------------------------- /test/phrase_scrape_test_cases/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/phrase_scrape_test_cases/1.json -------------------------------------------------------------------------------- /test/phrase_scrape_test_cases/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/phrase_scrape_test_cases/2.json -------------------------------------------------------------------------------- /test/phrase_scrape_test_cases/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/phrase_scrape_test_cases/3.json -------------------------------------------------------------------------------- /test/phrase_scrape_test_cases/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/phrase_scrape_test_cases/4.json -------------------------------------------------------------------------------- /test/run_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistval/unofficial-jisho-api/HEAD/test/run_tests.js --------------------------------------------------------------------------------