@keymora/core
v0.1.0-alpha.0
Published
Core framework-agnostic input engine for Keymora.
Maintainers
Readme
@keymora/core
Core framework-agnostic TypeScript input engine for Keymora.
This package owns text state, cursor state, selection state, annotations, composition state, subscriptions, and composer integration points. It does not import DOM or React.
import { createKeymora } from "@keymora/core";
const input = createKeymora({ initialText: "hello" });
input.insertText("!");
console.log(input.getState());See the root README for the current MVP status and package overview.
