-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.07 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
{
"name": "zustand-context",
"version": "1.0.0",
"description": "Create react contexts with zustand",
"scripts": {
"build": "tsup --dts --dts-resolve",
"test": "bun test src",
"check": "bunx @biomejs/biome check --apply ./src",
"release": "changeset publish"
},
"keywords": [
"react",
"reactjs",
"zustand",
"context",
"hooks"
],
"author": "fredericoo",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"/dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@changesets/cli": "^2.27.1",
"@happy-dom/global-registrator": "^14.10.1",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/bun": "^1.1.0",
"@types/lodash": "^4.17.0",
"@types/react": "^18.2.20",
"react": "^18.2.0",
"tsup": "^8.0.2",
"type-testing": "^0.2.0",
"typescript": "^5.4.5",
"zustand": "^4.5.2"
},
"peerDependencies": {
"zustand": ">= 4",
"react": ">= 18"
}
}