`ui/src` now builds two ways from one tree: the static app `codegraph ui` serves, and — via `svelte-package` — a Svelte library the Pro app imports. A forked component would be a second answer to the same question about the same graph, so there is no fork. Everything a screen knows arrives through a `GraphAdapter`: eleven methods answering the wire shapes verbatim, with `createHttpAdapter()` (the loopback JSON API) as the default and a host's in-process engine reads as the point. `lib/api.ts` became a one-line-per-call facade over it, which is why no call site in the views changed. The payload types moved to `lib/wire.ts` — no imports, no runtime — so a host can depend on the vocabulary alone. Two more seams and one guard: - `lib/navigation.ts` holds the href builders behind a `NavigationDriver`, so a host addresses its own URL space. The app's half — the hash parser and the live route, which attach window listeners at module scope — stays in `router.svelte.ts` and is pruned out of the package: rendering a Symbol view must not install a hash router in somebody else's application. - `lib/theme.css` carries the design tokens and maps Svelte Flow's `--xy-*` variables onto them, so a host never sees library defaults. Dark now also answers to a bare `[data-theme]`, which is how `<CodegraphUi theme>` themes a container rather than the document. - `scripts/check-ui-package.mjs` prunes the app's shell, resolves the extensionless specifiers svelte-package leaves behind, and asserts that nothing but `lib/adapter.js` reaches the network. The search box, its keyboard and its panel are one component now (`SearchPalette`), because splitting them is what breaks a palette. `__tests__/ui-package.test.ts` mounts the three screens from the package entry against a mock adapter in jsdom; it runs as a second vitest project so the `browser` resolve condition it needs cannot reach the engine's suites. Versioned with the engine. Prepared, not published: `private: true` is the guard and `pack-npm.sh` only packs a tarball under CODEGRAPH_PACK_UI=1.
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "@colbymchenry/codegraph-ui",
|
|
"private": true,
|
|
"version": "1.6.0",
|
|
"type": "module",
|
|
"description": "The CodeGraph reader as Svelte components: Symbol view, Flow strip and architecture Map behind one data adapter.",
|
|
"keywords": [
|
|
"codegraph",
|
|
"svelte",
|
|
"code-intelligence",
|
|
"knowledge-graph"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/colbymchenry/codegraph.git",
|
|
"directory": "ui"
|
|
},
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"svelte": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"sideEffects": [
|
|
"**/*.css"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"svelte": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./theme.css": "./dist/lib/theme.css",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"build:lib": "node ../scripts/sync-ui-version.mjs && svelte-package -i src -o dist && node ../scripts/check-ui-package.mjs",
|
|
"dev": "vite",
|
|
"preview": "vite preview",
|
|
"check": "svelte-check --tsconfig ./tsconfig.json"
|
|
},
|
|
"peerDependencies": {
|
|
"svelte": "^5.25.0"
|
|
},
|
|
"dependencies": {
|
|
"@xyflow/svelte": "^1.6.5"
|
|
},
|
|
"devDependencies": {
|
|
"@fontsource-variable/archivo": "^5.3.0",
|
|
"@fontsource/ibm-plex-mono": "^5.3.0",
|
|
"@sveltejs/package": "^2.5.8",
|
|
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
"svelte": "^5.56.10",
|
|
"svelte-check": "^4.7.6",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^7.3.6"
|
|
}
|
|
}
|