├── .babelrc ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── dist ├── components │ ├── canvas.d.ts │ └── firefly.d.ts ├── helpers │ ├── cordinatesConversion.d.ts │ ├── random.d.ts │ └── throttle.d.ts ├── index.d.ts ├── index.js ├── interfaces │ └── firefly.d.ts └── package.json ├── package.json ├── rollup.config.js ├── src ├── components │ ├── canvas.tsx │ └── firefly.ts ├── helpers │ ├── cordinatesConversion.ts │ ├── random.ts │ └── throttle.ts ├── index.tsx └── interfaces │ └── firefly.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | assests 3 | .* -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/README.md -------------------------------------------------------------------------------- /dist/components/canvas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/dist/components/canvas.d.ts -------------------------------------------------------------------------------- /dist/components/firefly.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/dist/components/firefly.d.ts -------------------------------------------------------------------------------- /dist/helpers/cordinatesConversion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/dist/helpers/cordinatesConversion.d.ts -------------------------------------------------------------------------------- /dist/helpers/random.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/dist/helpers/random.d.ts -------------------------------------------------------------------------------- /dist/helpers/throttle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/dist/helpers/throttle.d.ts -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/interfaces/firefly.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/dist/interfaces/firefly.d.ts -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/dist/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/components/canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/src/components/canvas.tsx -------------------------------------------------------------------------------- /src/components/firefly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/src/components/firefly.ts -------------------------------------------------------------------------------- /src/helpers/cordinatesConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/src/helpers/cordinatesConversion.ts -------------------------------------------------------------------------------- /src/helpers/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/src/helpers/random.ts -------------------------------------------------------------------------------- /src/helpers/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/src/helpers/throttle.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/interfaces/firefly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/src/interfaces/firefly.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endurance21/firefly-react/HEAD/tsconfig.json --------------------------------------------------------------------------------