trusty-memory 0.1.60

MCP server (stdio + HTTP/SSE) for trusty-memory
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
import { mount } from 'svelte';
import App from './App.svelte';
import './lib/styles/tokens.css';
import './lib/styles/global.css';

// Why: Svelte 5 uses the `mount` API rather than `new App({ target })`.
// What: Boot the root component into #app after loading the shared design
// tokens + global resets/utility classes.
// Test: `pnpm build && pnpm preview` renders the dashboard with the dark
// sidebar and light content pane.
const app = mount(App, { target: document.getElementById('app') });

export default app;