-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "react-gundb",
"description": "react-gundb is a React library that provides integration with GunDB, offering a seamless way to use the decentralized database in React applications. It simplifies the process of working with GunDB's real-time, distributed nature within the React ecosystem, allowing developers to build scalable and offline-first applications with ease.",
"author": {
"name": "Bruno Camarneiro",
"email": "[email protected]"
},
"private": false,
"version": "1.0.10",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"check": "biome check --write",
"dev": "rslib dev --open",
"format": "biome format --write"
},
"dependencies": {
"react-dom": "^18.3.1"
},
"peerDependencies": {
"gun": "^0.2020.1240",
"react": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@rsbuild/core": "1.0.1-rc.5",
"@rsbuild/plugin-react": "1.0.1-rc.5",
"@rslib/core": "^0.0.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"ignore-loader": "^0.1.2",
"typescript": "^5.5.2"
},
"volta": {
"node": "22.8.0"
}
}