├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── assets.ts ├── esbuild.config.mjs ├── main.ts ├── manifest.json ├── meta ├── demo.svg ├── logo.svg └── tuto-styling.svg ├── package.json ├── style.css ├── tsconfig.json └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/README.md -------------------------------------------------------------------------------- /assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/assets.ts -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/manifest.json -------------------------------------------------------------------------------- /meta/demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/meta/demo.svg -------------------------------------------------------------------------------- /meta/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/meta/logo.svg -------------------------------------------------------------------------------- /meta/tuto-styling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/meta/tuto-styling.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Supercip971/obsidian-typing-speed/HEAD/versions.json --------------------------------------------------------------------------------