forked from charkour/zundo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.45 KB
/
package.json
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
61
62
63
64
65
66
67
68
{
"name": "zundo",
"version": "2.3.0",
"private": false,
"description": "🍜 undo/redo middleware for zustand",
"keywords": [
"undo",
"redo",
"history",
"middleware",
"zustand",
"react"
],
"homepage": "https://github.com/charkour/zundo",
"bugs": {
"url": "https://github.com/charkour/zundo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charkour/zundo.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/charkour"
},
"license": "MIT",
"author": "Charles Kornoelje",
"type": "module",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"size": "pnpm --filter size size",
"test": "pnpm --filter tests test",
"test:ci": "pnpm --filter tests test:ci"
},
"devDependencies": {
"prettier": "3.3.3",
"tsup": "8.3.5",
"typescript": "5.6.3",
"zustand": "5.0.1"
},
"peerDependencies": {
"zustand": "^4.3.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"zustand": {
"optional": false
}
}
}