|
21 | 21 | "@codemirror/lang-python": "^6.1.6", |
22 | 22 | "@codemirror/theme-one-dark": "^6.1.2", |
23 | 23 | "@eslint/js": "^9.12.0", |
| 24 | + "@panzoom/panzoom": "^4.5.1", |
24 | 25 | "@rollup/plugin-wasm": "^6.2.2", |
25 | 26 | "@sveltejs/vite-plugin-svelte": "^3.1.2", |
26 | 27 | "@types/bun": "latest", |
|
57 | 58 | "publish": "bun run package && bun run vsce-publish", |
58 | 59 | "clean": "rm -r ./dist", |
59 | 60 | "web": "bun run --cwd ./src/frontend/ vite", |
| 61 | + "render": "bun run --cwd src/render/ vite", |
60 | 62 | "web-tests": "bun run ./scripts/collect-comment-tests.ts", |
61 | 63 | "demo": "bun run --cwd ./src/demo/ vite", |
62 | | - "build-demo": "bun run --cwd ./src/demo/ vite build --outDir ../../dist/demo --base '/function-graph-overview/'", |
| 64 | + "build-demo": "bun run --cwd ./src/demo/ vite build", |
| 65 | + "build-render": "bun run --cwd ./src/render/ vite build", |
63 | 66 | "build-jetbrains": "bun run --cwd ./src/jetbrains/ vite build", |
64 | 67 | "oxlint-fix": "bunx oxlint --ignore-path=oxlint-ignore.txt --fix -D correctness -D perf -D suspicious -A no-await-in-loop", |
65 | 68 | "oxlint-ci": "bunx oxlint --ignore-path=oxlint-ignore.txt -D correctness -D perf -D suspicious -A no-await-in-loop", |
66 | | - "lint": "bunx biome check --fix && bun oxlint-fix && bunx eslint --fix && bunx tsc --noEmit", |
67 | | - "ci": "bunx biome ci && bun oxlint-ci && bunx eslint && bunx tsc --noEmit", |
| 69 | + "prettier-format": "bunx prettier **/*.svelte --write", |
| 70 | + "prettier-check": "bunx prettier **/*.svelte --check", |
| 71 | + "lint": "bunx biome check --fix && bun oxlint-fix && bun prettier-format && bunx eslint --fix && bunx tsc --noEmit", |
| 72 | + "ci": "bunx biome ci && bun oxlint-ci && bun prettier-check && bunx eslint && bunx tsc --noEmit", |
68 | 73 | "generate-parsers": "bun run ./scripts/generate-parsers.ts", |
69 | 74 | "typedoc": "bunx typedoc --treatWarningsAsErrors" |
70 | 75 | }, |
|
0 commit comments