- Foldable left panel (user profile) and right panel (task details) - Clicking a task in the list or graph node selects it and shows details - Both views (task list + graph) always mounted via absolute inset-0 for correct canvas dimensions; tabs toggle visibility with opacity - Graph node selection animation: other nodes repel outward (charge -600), then selected node smoothly slides to center (500ms cubic ease-out), then charge restores to -120 and graph stabilizes - Graph re-fits on tab switch and panel resize via ResizeObserver - Fix UUID string IDs throughout (backend returns UUIDs, not integers) - Add TaskDetailPanel, UserPanel components - Add CLAUDE.md project documentation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
842 B
JSON
35 lines
842 B
JSON
{
|
|
"name": "streamsearch",
|
|
"version": "1.1.0",
|
|
"author": "Brian White <mscdex@mscdex.net>",
|
|
"description": "Streaming Boyer-Moore-Horspool searching for node.js",
|
|
"main": "./lib/sbmh.js",
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@mscdex/eslint-config": "^1.1.0",
|
|
"eslint": "^7.32.0"
|
|
},
|
|
"scripts": {
|
|
"test": "node test/test.js",
|
|
"lint": "eslint --cache --report-unused-disable-directives --ext=.js .eslintrc.js lib test",
|
|
"lint:fix": "npm run lint -- --fix"
|
|
},
|
|
"keywords": [
|
|
"stream",
|
|
"horspool",
|
|
"boyer-moore-horspool",
|
|
"boyer-moore",
|
|
"search"
|
|
],
|
|
"licenses": [{
|
|
"type": "MIT",
|
|
"url": "http://github.com/mscdex/streamsearch/raw/master/LICENSE"
|
|
}],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/mscdex/streamsearch.git"
|
|
}
|
|
}
|