-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "store2state",
"version": "0.1.0",
"description": "This library provides a robust and flexible state management solution for JavaScript and TypeScript applications, with a focus on React integration. It includes a powerful Store class, custom hooks for React, and an AsyncAction utility for handling asynchronous operations.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Spyder01/store2state"
},
"keywords": [
"state-management",
"state",
"store",
"javascript",
"typescript",
"react"
],
"author": "Suhan",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"esbuild": "^0.23.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"arachnea": "^0.0.9",
"react": "^18.3.1"
}
}