Splits history-ui out of asch/fix-everything into its own branch off main. Includes the Svelte workspace, the three dedicated server endpoints (list_vaults, fetch_vault_history, fetch_document_versions), SPA asset embedding via rust-embed, and the matching TS mirror types in sync-client. Note: this branch will not compile against main on its own — the new endpoints depend on database/error/config additions that live on asch/fix-everything. Intended to be merged once asch/fix-everything lands. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
34 lines
1 KiB
JSON
34 lines
1 KiB
JSON
{
|
|
"name": "my-workspace",
|
|
"private": true,
|
|
"workspaces": [
|
|
"sync-client",
|
|
"obsidian-plugin",
|
|
"test-client",
|
|
"deterministic-tests",
|
|
"local-client-cli",
|
|
"history-ui"
|
|
],
|
|
"prettier": {
|
|
"trailingComma": "none",
|
|
"tabWidth": 4,
|
|
"useTabs": false,
|
|
"endOfLine": "lf"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build --workspaces",
|
|
"dev": "concurrently --kill-others \"npm run dev -w sync-client\" \"npm run dev -w obsidian-plugin\"",
|
|
"test": "npm run test --workspaces",
|
|
"lint": "eslint --fix sync-client obsidian-plugin test-client deterministic-tests local-client-cli && prettier --write \"**/*.ts\"",
|
|
"update": "ncu -u -ws"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.2.1",
|
|
"eclint": "^2.8.1",
|
|
"eslint": "9.38.0",
|
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
"npm-check-updates": "^19.1.1",
|
|
"prettier": "^3.6.2",
|
|
"typescript-eslint": "8.41.0"
|
|
}
|
|
}
|