├── .editorconfig ├── .gitignore ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts └── types.ts ├── test ├── eyes.png ├── index.test.ts ├── output.png ├── style-classy.png ├── style-dots.png ├── style-rounded.png └── style-square.png └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/test/eyes.png -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/test/output.png -------------------------------------------------------------------------------- /test/style-classy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/test/style-classy.png -------------------------------------------------------------------------------- /test/style-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/test/style-dots.png -------------------------------------------------------------------------------- /test/style-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/test/style-rounded.png -------------------------------------------------------------------------------- /test/style-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/test/style-square.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monodyle/sqrc/HEAD/tsconfig.json --------------------------------------------------------------------------------