├── .gitignore ├── LICENSE ├── README.md ├── __init__.py └── js └── photopea-editor.js /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolzilj/ComfyUI-Photopea/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolzilj/ComfyUI-Photopea/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolzilj/ComfyUI-Photopea/HEAD/__init__.py -------------------------------------------------------------------------------- /js/photopea-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolzilj/ComfyUI-Photopea/HEAD/js/photopea-editor.js --------------------------------------------------------------------------------