├── .appcast.xml ├── .gitignore ├── LICENSE ├── README.md ├── assets └── icon.png ├── package.json └── src ├── manifest.json └── my-command.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/install-library-bundle/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/install-library-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/install-library-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/install-library-bundle/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/install-library-bundle/HEAD/assets/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/install-library-bundle/HEAD/package.json -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/install-library-bundle/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/my-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/install-library-bundle/HEAD/src/my-command.js --------------------------------------------------------------------------------