├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .npmignore ├── .vimrc ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── package.json └── test ├── flower.jpg ├── test.js └── type-test.ts /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .500px-consumer-key 3 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | .github 4 | .* -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/.vimrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/package.json -------------------------------------------------------------------------------- /test/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/test/flower.jpg -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/test/test.js -------------------------------------------------------------------------------- /test/type-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-sharp/HEAD/test/type-test.ts --------------------------------------------------------------------------------