-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "react-rock",
"version": "3.2.8",
"author": "Naxrul Ahmed",
"description": "React-Rock is a modern, lightweight state management library designed to simplify handling global state in React applications. With a minimal API and powerful features like freezing data updates for optimized re-renders, React-Rock allows you to manage state more efficiently while ensuring your app remains fast and responsive.",
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"type": "module",
"scripts": {
"start": "makepack start",
"build": "makepack build",
"release": "makepack release"
},
"keywords": [
"react",
"state management",
"react state",
"react hooks",
"state library"
],
"bugs": {
"url": "https://github.com/devnax/react-rock/issues"
},
"homepage": "https://github.com/devnax/react-rock#readme",
"devDependencies": {
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"makepack": "^1.7.30",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^4.4.2"
},
"dependencies": {
"xanv": "^1.1.11"
}
}