├── .gitignore ├── LICENSE ├── README.md ├── dist └── grapesjs-aviary.min.js ├── index.html ├── package.json ├── src └── index.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | private/ 3 | node_modules/ 4 | .eslintrc 5 | *.log 6 | _index.html 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapesJS/aviary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapesJS/aviary/HEAD/README.md -------------------------------------------------------------------------------- /dist/grapesjs-aviary.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapesJS/aviary/HEAD/dist/grapesjs-aviary.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapesJS/aviary/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapesJS/aviary/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapesJS/aviary/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrapesJS/aviary/HEAD/webpack.config.js --------------------------------------------------------------------------------