-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 839 Bytes
/
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
{
"name": "z-fetch",
"version": "0.1.0",
"description": "Lightweight async state management for Zustand stores",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "vitest",
"lint": "eslint src",
"format": "prettier --write src",
"prepublishOnly": "npm run build"
},
"keywords": [
"zustand",
"react",
"state-management",
"async",
"fetch"
],
"author": "Your Name",
"license": "MIT",
"peerDependencies": {
"zustand": "^4.0.0"
},
"devDependencies": {
"zustand": "^4.5.4",
"typescript": "^5.0.0",
"tsup": "^8.0.0",
"vitest": "^1.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"@types/node": "^20.0.0"
}
}