├── .gitignore ├── README.md ├── package.json ├── rollup.config.js └── src ├── Component.svelte └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linkcube/svelte-audio-controls/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linkcube/svelte-audio-controls/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linkcube/svelte-audio-controls/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/Component.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linkcube/svelte-audio-controls/HEAD/src/Component.svelte -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Linkcube/svelte-audio-controls/HEAD/src/index.js --------------------------------------------------------------------------------