├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .pre-commit-config.yaml ├── .prettierignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── DESIGN_NOTES.md ├── LICENSE ├── README.md ├── esbuild.js ├── eslint.config.mjs ├── images ├── japanese-word-handler-vanilla.gif └── japanese-word-handler.gif ├── package.json ├── pnpm-lock.yaml ├── src └── web │ ├── extension.ts │ └── test │ └── suite │ ├── extension.test.ts │ └── mochaTestRunner.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | enable-pre-post-scripts = true 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DESIGN_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/DESIGN_NOTES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/esbuild.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /images/japanese-word-handler-vanilla.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/images/japanese-word-handler-vanilla.gif -------------------------------------------------------------------------------- /images/japanese-word-handler.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/images/japanese-word-handler.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/web/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/src/web/extension.ts -------------------------------------------------------------------------------- /src/web/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/src/web/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/web/test/suite/mochaTestRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/src/web/test/suite/mochaTestRunner.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgryjp/japanese-word-handler/HEAD/tsconfig.json --------------------------------------------------------------------------------