-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@b2m9/reversible",
"version": "0.1.2",
"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",
"typescript",
"undo",
"undo-redo"
],
"homepage": "https://github.com/b2m9/reversible#readme",
"bugs": {
"url": "https://github.com/b2m9/reversible/issues"
},
"license": "MIT",
"author": "Bob Massarczyk <bob@b2m9.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/b2m9/reversible.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test run",
"check": "vp check",
"check:exports": "vp pack && vp dlx publint && vp dlx @arethetypeswrong/cli --pack --profile esm-only",
"prepublishOnly": "vp run build"
},
"devDependencies": {
"@types/node": "25.6.2",
"@typescript/native-preview": "7.0.0-dev.20260509.2",
"bumpp": "11.1.0",
"typescript": "6.0.3",
"vite-plus": "catalog:"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.7.0"
}