-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 852 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 852 Bytes
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
{
"name": "getrx",
"version": "1.0.0",
"description": "Sublimely simple state management library for React.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "tsx --test tests/**/*.test.ts"
},
"keywords": [
"react",
"state",
"management",
"state management",
"reactive",
"ui",
"hooks"
],
"author": "Antonio Peña Peña",
"license": "Apache-2.0",
"homepage": "https://github.com/zPy52/getrx",
"devDependencies": {
"@types/node": "^24.0.3",
"@types/react": "^19.1.8",
"react-test-renderer": "^19.1.0",
"tsx": "^4.20.6",
"typescript": "^5.8.3"
},
"dependencies": {
"react": "^19.1.0"
}
}