diff --git a/README.md b/README.md index 9b0629d..adc0035 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,11 @@ -# @b2m9/reversible +# reversible -Headless, framework-agnostic undo/redo for any state. You give it reversible -operations; it gives you `undo`/`redo`/`jump` traversal, grouped transactions, -checkpoints, and timeline scrubbing. It does **not** own your state, but composes -with whatever store you already have. +Headless, framework-agnostic undo/redo that stores inverse operations, not +snapshots. + +You give it reversible operations; it gives you `undo`/`redo`/`jump` traversal, +grouped transactions, checkpoints, and timeline scrubbing. It does **not** own +your state, but composes with whatever store you already have. ```bash npm install @b2m9/reversible diff --git a/package.json b/package.json index 96fee38..05275cd 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,20 @@ { "name": "@b2m9/reversible", - "version": "0.1.0", - "description": "Headless, framework-agnostic undo/redo for any state — a small command stack of reversible operations with grouped transactions, checkpoints, and timeline scrubbing.", + "version": "0.1.1", + "description": "Headless, framework-agnostic undo/redo that stores inverse operations, not snapshots — with grouped transactions and checkpoints.", "keywords": [ "checkpoint", "command-pattern", + "framework-agnostic", "headless", "history", "redo", "state", "time-travel", "transaction", - "undo" + "typescript", + "undo", + "undo-redo" ], "homepage": "https://github.com/b2m9/reversible#readme", "bugs": {