-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.67 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "zustand-ards",
"version": "0.2.0",
"description": "",
"author": "Ivo Ilic",
"license": "MIT",
"keywords": [
"zustand",
"pmndrs",
"react",
"state",
"manager",
"management",
"redux",
"store"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ivoilic/zustand-ards.git"
},
"files": [
"./package.json",
"LICENSE",
"README.md",
"./index.*",
"./array-selector.*",
"./default-shallow.*",
"./types.*"
],
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./array-selector": {
"types": "./array-selector.d.ts",
"import": "./array-selector.mjs",
"require": "./array-selector.js"
},
"./default-shallow": {
"types": "./default-shallow.d.ts",
"import": "./default-shallow.mjs",
"require": "./default-shallow.js"
},
"./types": {
"types": "./types.d.ts",
"import": "./types.mjs",
"require": "./types.js"
}
},
"scripts": {
"prepare": "husky install",
"build": "tsup",
"copy": "cp -r ./dist/* ./",
"release": "pnpm run build && pnpm run copy && changeset publish",
"lint": "tsc"
},
"peerDependencies": {
"zustand": "^4.3.8"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"husky": "^8.0.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react": ">=16.8.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"zustand": "^4.3.8"
},
"engines": {
"node": ">=12.7.0"
}
}