├── .gitignore ├── README.md ├── index.html ├── jsconfig.json ├── package.json ├── src ├── App.svelte ├── app.css ├── components │ └── Example.svelte ├── data │ └── data.js └── main.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/index.html -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/package.json -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/src/app.css -------------------------------------------------------------------------------- /src/components/Example.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/src/components/Example.svelte -------------------------------------------------------------------------------- /src/data/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/src/data/data.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/src/main.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connorrothschild/svelte-visualization-template/HEAD/vite.config.js --------------------------------------------------------------------------------