Initial release: dreamknob library + showcase

React + TypeScript knob/fader library with a headless interaction core
(rotary, relative-drag and track modes, wheel, keyboard, a11y), SVG
primitives, nine prebuilt skins, seven-segment display engine, and a
Vite showcase with gallery, live playground and API docs.
This commit is contained in:
Dreamodus 2026-07-12 14:26:52 -07:00
commit 60a02cb1db
46 changed files with 6186 additions and 0 deletions

12
package.json Normal file
View file

@ -0,0 +1,12 @@
{
"name": "dreamknob-monorepo",
"private": true,
"version": "0.1.0",
"scripts": {
"build": "pnpm --filter dreamknob build && pnpm --filter docs build",
"dev": "pnpm --filter docs dev",
"test": "pnpm --filter dreamknob test",
"typecheck": "pnpm -r typecheck"
},
"packageManager": "pnpm@9.11.0"
}