gitextract_m3gxcfyc/ ├── .devcontainer/ │ ├── Dockerfile │ └── devcontainer.json ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .prettierrc ├── .vimrc ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── examples/ │ ├── face-api/ │ │ ├── tiny_face_detector_model-shard1 │ │ └── tiny_face_detector_model-weights_manifest.json │ ├── images/ │ │ └── images.json │ ├── jquery.js │ ├── minimal.html │ ├── q.js │ ├── slideshow.html │ ├── slideshow.js │ ├── smartcrop-debug.js │ ├── style.css │ ├── testbed.html │ ├── testbed.js │ ├── testsuite.html │ ├── testsuite.js │ ├── tracking-face-min.js │ ├── tracking-min.js │ └── underscore.js ├── index.d.ts ├── karma.conf.js ├── package.json ├── scripts/ │ ├── release.sh │ └── sync-web.sh ├── smartcrop.js └── test/ ├── benchmark-node.js ├── benchmark.html ├── benchmark.js ├── index.html ├── smartcrop.js └── types.ts