-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "leo-query",
"version": "0.2.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": ">=16.8",
"immer": ">=9.0.6",
"react": ">=16.8",
"zustand": ">=4.5"
},
"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": "^18.0.12",
"@types/react-dom": "^18.0.5",
"jest": "^28.1.2",
"react": "^18.1.0",
"react-dom": "^18.1.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"
]
}