- 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>
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"name": "d3-force-3d",
|
|
"version": "3.0.6",
|
|
"description": "Force-directed graph layout in 1D, 2D or 3D using velocity Verlet integration.",
|
|
"homepage": "https://github.com/vasturiano/d3-force-3d",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vasturiano/d3-force-3d.git"
|
|
},
|
|
"keywords": [
|
|
"d3",
|
|
"d3-module",
|
|
"layout",
|
|
"network",
|
|
"graph",
|
|
"force",
|
|
"verlet",
|
|
"infovis",
|
|
"3d"
|
|
],
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Vasco Asturiano",
|
|
"url": "https://github.com/vasturiano"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"src/**/*.js",
|
|
"dist/**/*.js"
|
|
],
|
|
"module": "src/index.js",
|
|
"main": "src/index.js",
|
|
"jsdelivr": "dist/d3-force-3d.min.js",
|
|
"unpkg": "dist/d3-force-3d.min.js",
|
|
"exports": {
|
|
"umd": "./dist/d3-force-3d.min.js",
|
|
"default": "./src/index.js"
|
|
},
|
|
"sideEffects": false,
|
|
"dependencies": {
|
|
"d3-binarytree": "1",
|
|
"d3-dispatch": "1 - 3",
|
|
"d3-octree": "1",
|
|
"d3-quadtree": "1 - 3",
|
|
"d3-timer": "1 - 3"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-terser": "^0.4.0",
|
|
"eslint": "^8.33.0",
|
|
"mocha": "^10.2.0",
|
|
"rollup": "^3.14.0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha 'test/**/*-test.js' && eslint src test",
|
|
"prepare": "rm -rf dist && yarn test && rollup -c"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
}
|
|
}
|