-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1018 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1018 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
{
"name": "use-undoable",
"version": "5.0.0",
"description": "React hook for undo/redo functionality without the hassle.",
"private": false,
"author": "Tristan Brewster <tristan@infi.im>",
"license": "MIT",
"repository": "https://github.com/xplato/useUndoable",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build"
},
"peerDependencies": {
"react": "17 || 18"
},
"devDependencies": {
"@types/node": "^12.12.38",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.7",
"cross-env": "^7.0.2",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"react": "^18",
"react-dom": "^18",
"react-scripts": "^3.4.1",
"typescript": "^3.7.5"
},
"files": [
"dist"
],
"dependencies": {}
}