- 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>
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "decimal.js",
|
|
"description": "An arbitrary-precision Decimal type for JavaScript.",
|
|
"version": "10.6.0",
|
|
"keywords": [
|
|
"arbitrary",
|
|
"precision",
|
|
"arithmetic",
|
|
"big",
|
|
"number",
|
|
"decimal",
|
|
"float",
|
|
"biginteger",
|
|
"bigdecimal",
|
|
"bignumber",
|
|
"bigint",
|
|
"bignum"
|
|
],
|
|
"repository" : {
|
|
"type": "git",
|
|
"url": "https://github.com/MikeMcl/decimal.js.git"
|
|
},
|
|
"main": "decimal",
|
|
"module": "decimal.mjs",
|
|
"browser": "decimal.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./decimal.d.ts",
|
|
"import": "./decimal.mjs",
|
|
"require": "./decimal.js"
|
|
},
|
|
"./decimal.mjs": "./decimal.mjs",
|
|
"./decimal.js": "./decimal.js",
|
|
"./package.json": "./package.json",
|
|
"./decimal": {
|
|
"types": "./decimal.d.ts",
|
|
"import": "./decimal.mjs",
|
|
"require": "./decimal.js"
|
|
}
|
|
},
|
|
"author": {
|
|
"name": "Michael Mclaughlin",
|
|
"email": "M8ch88l@gmail.com"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "node ./test/test.js"
|
|
},
|
|
"types": "decimal.d.ts",
|
|
"files": [
|
|
"decimal.js",
|
|
"decimal.mjs",
|
|
"decimal.d.ts"
|
|
]
|
|
}
|