├── .babelrc ├── .gitignore ├── .npmignore ├── .prettierrc ├── README.md ├── assets ├── favicon.ico ├── logo.png └── red_walking_down_1-sheet.png ├── docs ├── getting-started.md └── introduction.md ├── jest.config.js ├── jest.setup.js ├── package.json ├── src ├── components │ ├── Stage.js │ ├── Stage.md │ ├── animation.js │ ├── animation.md │ ├── buffer.js │ ├── buffer.md │ ├── circle.js │ ├── circle.md │ ├── pixel.js │ ├── pixel.md │ ├── rectangle.js │ ├── rectangle.md │ ├── sprite.js │ ├── sprite.md │ ├── text.js │ ├── text.md │ ├── transition.js │ └── transition.md ├── createElement.js ├── easing.js ├── elements │ ├── Animation.js │ ├── Circle.js │ ├── Pixel8Element.js │ ├── PixelBuffer.js │ ├── Rectangle.js │ ├── Sprite.js │ ├── Text.js │ ├── Transition.js │ ├── __snapshots__ │ │ └── index.test.js.snap │ └── index.test.js ├── fonts.js ├── index.js ├── renderer.js ├── transforms.js ├── utils.js └── utils.test.js ├── styleguide.config.js ├── styleguide.setup.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-app"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | lib 4 | main 5 | styleguide 6 | npm-debug.log 7 | yarn-debug.log 8 | yarn-error.log 9 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | styleguide 4 | npm-debug.log 5 | yarn-debug.log 6 | yarn-error.log 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false, 3 | "singleQuote": true, 4 | "trailingComma": "all" 5 | } 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |