├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── examples ├── react │ ├── App.tsx │ ├── index.html │ ├── src │ │ └── main.tsx │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── vue │ ├── index.html │ ├── package.json │ ├── src │ ├── App.vue │ └── main.ts │ └── vite.config.ts ├── index.ts ├── package.json ├── src └── core │ └── Eraser.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /examples/react/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/react/App.tsx -------------------------------------------------------------------------------- /examples/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/react/index.html -------------------------------------------------------------------------------- /examples/react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/react/src/main.tsx -------------------------------------------------------------------------------- /examples/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/react/tsconfig.json -------------------------------------------------------------------------------- /examples/react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/react/tsconfig.node.json -------------------------------------------------------------------------------- /examples/react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/react/vite.config.ts -------------------------------------------------------------------------------- /examples/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/vue/index.html -------------------------------------------------------------------------------- /examples/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/vue/package.json -------------------------------------------------------------------------------- /examples/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/vue/src/App.vue -------------------------------------------------------------------------------- /examples/vue/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/vue/src/main.ts -------------------------------------------------------------------------------- /examples/vue/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/examples/vue/vite.config.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /src/core/Eraser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/src/core/Eraser.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelve-web/picture-toolkit/HEAD/yarn.lock --------------------------------------------------------------------------------