├── .github └── FUNDING.yml ├── .gitignore ├── Makefile ├── README.md ├── inkscape-svgo.inx ├── package.json ├── screen1.png ├── screen2.png └── src └── inkscape-svgo.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konsumer/inkscape-svgo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | dist/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konsumer/inkscape-svgo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konsumer/inkscape-svgo/HEAD/README.md -------------------------------------------------------------------------------- /inkscape-svgo.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konsumer/inkscape-svgo/HEAD/inkscape-svgo.inx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konsumer/inkscape-svgo/HEAD/package.json -------------------------------------------------------------------------------- /screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konsumer/inkscape-svgo/HEAD/screen1.png -------------------------------------------------------------------------------- /screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konsumer/inkscape-svgo/HEAD/screen2.png -------------------------------------------------------------------------------- /src/inkscape-svgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/konsumer/inkscape-svgo/HEAD/src/inkscape-svgo.js --------------------------------------------------------------------------------