Static analysis for SvelteKit projects. One command, one HTML file.
npx deep-sveltekit ./src
Parses the AST, resolves $lib and barrel re-exports, and generates a self-contained interactive report.
Everything in a single HTML file. No runtime dependencies.
npx deep-sveltekit ./src # scan and open
npx deep-sveltekit ./src -o report.html # custom output
npx deep-sveltekit ./src -f json # JSON output
npx deep-sveltekit ./src --no-open # don't open browser
import { analyze } from 'deep-sveltekit';
const report = await analyze('./src');
MIT