├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── ci-cd.yml ├── .gitignore ├── .husky ├── .gitattributes └── commit-msg ├── .nvmrc ├── CHANGELOG.md ├── LICENSE.txt ├── OFL.txt ├── README.md ├── commitlint.config.js ├── package.json ├── release.config.js ├── renovate.json5 ├── src ├── .eslintrc.js ├── Grand9K-Pixel.ttf ├── Griffy-Regular.ttf ├── Knewave.ttf ├── NotoSans-Medium.ttf ├── Scratch.ttf ├── SourceSerifPro-Regular.otf ├── handlee-regular.ttf └── index.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/package.json -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/release.config.js -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/renovate.json5 -------------------------------------------------------------------------------- /src/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/src/.eslintrc.js -------------------------------------------------------------------------------- /src/Grand9K-Pixel.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/src/Grand9K-Pixel.ttf -------------------------------------------------------------------------------- /src/Griffy-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/src/Griffy-Regular.ttf -------------------------------------------------------------------------------- /src/Knewave.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/src/Knewave.ttf -------------------------------------------------------------------------------- /src/NotoSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/src/NotoSans-Medium.ttf -------------------------------------------------------------------------------- /src/Scratch.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/src/Scratch.ttf -------------------------------------------------------------------------------- /src/SourceSerifPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/src/SourceSerifPro-Regular.otf -------------------------------------------------------------------------------- /src/handlee-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/src/handlee-regular.ttf -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scratchfoundation/scratch-render-fonts/HEAD/webpack.config.js --------------------------------------------------------------------------------