-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 923 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 923 Bytes
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
{
"name": "@ledgex/react",
"version": "0.5.3",
"description": "Key-value state management with efficient undo/redo for React",
"main": "dist/index.js",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"No tests specified\" && exit 0",
"prepublishOnly": "npm run build && npm test",
"release": "np --no-tests"
},
"dependencies": {
"@ledgex/core": "^0.5.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"np": "^7.0.0",
"rollup": "^3.29.5"
},
"keywords": [
"react",
"state",
"undo",
"redo",
"time-travel"
],
"license": "MIT"
}