├── .eslintignore ├── .eslintrc.cjs ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ └── issue-template.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── quality-gate.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── cypress.config.ts ├── cypress ├── e2e │ ├── basic_spec.js │ ├── mouse_spec.js │ └── touch_spec.js ├── support │ ├── commands.js │ └── e2e.js └── tsconfig.json ├── package.json ├── src ├── app.d.ts ├── app.html ├── lib │ ├── Cropper.svelte │ ├── helpers.test.ts │ ├── helpers.ts │ ├── index.ts │ └── types.ts └── routes │ └── +page.svelte ├── static ├── favicon.png └── images │ ├── cat.jpeg │ └── dog.jpeg ├── svelte.config.js ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [ValentinH] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.github/ISSUE_TEMPLATE/issue-template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/quality-gate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.github/workflows/quality-gate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/basic_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/cypress/e2e/basic_spec.js -------------------------------------------------------------------------------- /cypress/e2e/mouse_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/cypress/e2e/mouse_spec.js -------------------------------------------------------------------------------- /cypress/e2e/touch_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/cypress/e2e/touch_spec.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/package.json -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/Cropper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/src/lib/Cropper.svelte -------------------------------------------------------------------------------- /src/lib/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/src/lib/helpers.test.ts -------------------------------------------------------------------------------- /src/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/src/lib/helpers.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/images/cat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/static/images/cat.jpeg -------------------------------------------------------------------------------- /static/images/dog.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/static/images/dog.jpeg -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValentinH/svelte-easy-crop/HEAD/yarn.lock --------------------------------------------------------------------------------