├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── Inspector.svelte ├── index.js └── logo.png └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanhauhau/vite-plugin-svelte-inspector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanhauhau/vite-plugin-svelte-inspector/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanhauhau/vite-plugin-svelte-inspector/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanhauhau/vite-plugin-svelte-inspector/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/Inspector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanhauhau/vite-plugin-svelte-inspector/HEAD/src/Inspector.svelte -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanhauhau/vite-plugin-svelte-inspector/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanhauhau/vite-plugin-svelte-inspector/HEAD/src/logo.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanhauhau/vite-plugin-svelte-inspector/HEAD/yarn.lock --------------------------------------------------------------------------------