Files
taskpile/frontend/node_modules/bezier-js/package.json
Alvis f1d51b8cc8 Add side panels, task selection, graph animation, and project docs
- 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>
2026-04-08 11:23:06 +00:00

49 lines
1.4 KiB
JSON

{
"name": "bezier-js",
"version": "6.1.4",
"author": "Pomax",
"description": "A javascript library for working with Bezier curves",
"type": "module",
"exports": {
"import": "./src/bezier.js",
"require": "./dist/bezier.cjs"
},
"main": "./dist/bezier.cjs",
"browser": "./src/bezier.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pomax/bezierjs/issues"
},
"homepage": "https://github.com/Pomax/bezierjs",
"repository": {
"type": "git",
"url": "https://github.com/Pomax/bezierjs"
},
"funding": {
"type": "individual",
"url": "https://github.com/Pomax/bezierjs/blob/master/FUNDING.md"
},
"keywords": [
"bezier",
"curves"
],
"scripts": {
"test": "npm run prettier jest",
"start": "run-s test build",
"build": "run-s build:*",
"build:browser": "esbuild ./src/bezier.js --bundle --minify --outfile=dist/bezier.js",
"build:node": "esbuild ./src/bezier.js --bundle --platform=node --target=node16 --outfile=dist/bezier.cjs",
"prettier": "run-s prettier:*",
"prettier:src": "prettier ./src/**/*.js --write",
"prettier:text": "prettier ./test/**/*.js --write",
"jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest ./test/"
},
"devDependencies": {
"cross-env": "^7.0.3",
"esbuild": "^0.14.10",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5"
}
}