-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.43 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "leo-query",
"version": "0.5.0",
"description": "A simple library to connect async queries to Zustand stores.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "npx tsc && vite build",
"test": "jest",
"clean": "shx rm -rf dist",
"prebuild": "npm run clean"
},
"peerDependencies": {
"@types/react": ">=18.0.0",
"immer": ">=9.0.6",
"react": ">=18.0.0",
"zustand": ">=4.5"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"immer": {
"optional": true
},
"react": {
"optional": true
}
},
"dependencies": {
"typescript": "^4.7.3"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^28.1.4",
"@types/node": "^22.9.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"jest": "^28.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^3.28.0",
"shx": "^0.3.4",
"ts-jest": "^28.0.5",
"tslib": "^2.6.1",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0"
},
"author": "Steven Wexler",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
]
}