-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 2.14 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"version": "4.0.0",
"description": "A React toolkit for making collaborative, decentralised, offline-first tools you can truly call your own.",
"repository": {
"type": "git",
"url": "https://github.com/earthstar-project/react-earthstar"
},
"keywords": [
"react",
"decentralized",
"p2p",
"distributed",
"private",
"earthstar"
],
"license": "AGPL-3.0",
"main": "./dist/react-earthstar.cjs",
"module": "./dist/react-earthstar.js",
"types": "./dist/react-earthstar.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/react-earthstar.d.ts",
"node": {
"require": "./dist/react-earthstar.cjs",
"import": "./dist/react-earthstar.mjs"
},
"default": "./dist/react-earthstar.js"
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"test": "jest",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"prepare": "yarn build",
"example": "parcel examples/index.html"
},
"peerDependencies": {
"earthstar": "^10.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"name": "react-earthstar",
"author": "Sam Gwilym",
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-typescript": "^8.3.1",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^26.0.14",
"@types/jsdom": "^16.2.14",
"@types/react": "^17.0.39",
"@types/use-sync-external-store": "^0.0.3",
"earthstar": "^10.0.0",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.3.1",
"jest-localstorage-mock": "^2.4.6",
"parcel": "^2.3.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "^17.0.2",
"rollup": "^2.68.0",
"rollup-plugin-ts": "^2.0.5",
"typescript": "^4.5.5"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
},
"dependencies": {
"minidenticons": "^1.0.3",
"use-sync-external-store": "^1.2.0"
}
}