├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── license ├── package.json ├── readme.md ├── screenshot.png ├── source ├── cfonts.d.ts └── index.tsx ├── test ├── snapshots │ ├── test.tsx.md │ └── test.tsx.snap └── test.tsx └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | dist 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/screenshot.png -------------------------------------------------------------------------------- /source/cfonts.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'cfonts'; 2 | -------------------------------------------------------------------------------- /source/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/source/index.tsx -------------------------------------------------------------------------------- /test/snapshots/test.tsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/test/snapshots/test.tsx.md -------------------------------------------------------------------------------- /test/snapshots/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/test/snapshots/test.tsx.snap -------------------------------------------------------------------------------- /test/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/test/test.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/ink-big-text/HEAD/tsconfig.json --------------------------------------------------------------------------------