-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.22 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@acoboyz/react-zstate",
"version": "0.3.1",
"description": "StateHook for managing, caching and syncing asynchronous and remote data in React powered by zustand",
"author": "acoBOYZ",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/acoBOYZ/react-zstate.git"
},
"homepage": "https://github.com/acoBOYZ",
"funding": {
"type": "github",
"url": "https://github.com/acoBOYZ"
},
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build && publint --strict",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release": "tanstack-config publish"
},
"keywords": [
"react",
"zustand",
"state management",
"hooks"
],
"dependencies": {
"lru-cache": "^11.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@tanstack/config": "^0.14.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"ajv": "^8.17.1",
"eslint": "^8.57.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.15",
"glob": "^11.0.0",
"publint": "^0.2.12",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"vite": "^6.0.2",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
}
}