-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.55 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
{
"name": "zustand-di",
"version": "0.0.16",
"private": false,
"description": "dependency injection for zustand with react context",
"keywords": [
"zustand",
"react",
"context",
"dependency-injection"
],
"homepage": "https://github.com/charkour/zustand-di",
"bugs": {
"url": "https://github.com/charkour/zustand-di/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charkour/zustand-di.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": "pnpm --filter tests dev",
"size": "pnpm --filter size size",
"test": "pnpm --filter tests test",
"test:ci": "pnpm --filter tests test:ci"
},
"devDependencies": {
"@types/react": "18.3.3",
"react": "18.3.1",
"tsup": "8.0.2",
"typescript": "5.4.5",
"zustand": "4.5.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"zustand": "^4.4.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"zustand": {
"optional": false
}
}
}