├── .editorconfig ├── .gitattributes ├── .gitignore ├── FocusEngine.coffee ├── LICENSE ├── README.md ├── example.coffee ├── example.framer ├── app.coffee └── modules │ └── FocusEngine.coffee ├── module.json ├── package.json └── thumb.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /FocusEngine.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/FocusEngine.coffee -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/README.md -------------------------------------------------------------------------------- /example.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/example.coffee -------------------------------------------------------------------------------- /example.framer/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/example.framer/app.coffee -------------------------------------------------------------------------------- /example.framer/modules/FocusEngine.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/example.framer/modules/FocusEngine.coffee -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/package.json -------------------------------------------------------------------------------- /thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/FocusEngine/HEAD/thumb.png --------------------------------------------------------------------------------