-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 840 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 840 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
41
42
{
"name": "ripplex",
"version": "1.0.8",
"description": "A lightweight, reactive state management library for React.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@preact/signals": "^2.2.0",
"@types/react": "^19.1.8",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tsup": "^8.5.0"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup"
},
"keywords": [
"signals",
"state",
"event-driven",
"reactive"
],
"author": "Rishik Chowdary",
"license": "MIT",
"dependencies": {
"immer": "^10.1.1"
}
}