-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2 KB
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
{
"name": "@fabric/react",
"version": "0.1.0",
"description": "Fabric integration for React",
"main": "./index.js",
"type": "module",
"exports": {
".": "./index.js",
"./Bridge": "./components/Bridge.js",
"./components/Bridge": "./components/Bridge.js",
"./functions/*": "./functions/*",
"./constants/*": "./constants/*"
},
"scripts": {
"build": "node scripts/build.js",
"build:coverage": "npm run coverage && c8 report --reporter=html",
"coverage": "c8 npm test",
"report:coverage": "npm run build:coverage && c8 report --reporter=text-lcov > reports/coverage.lcov",
"report:install": "rm -rf node_modules && echo \"\n\" > package-lock.json && echo \"$ npm i\" > reports/install.log && npm i >> reports/install.log",
"start": "npm run build && node scripts/dev.js",
"test": "mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FabricLabs/fabric-react.git"
},
"keywords": [
"fabric",
"react",
"bitcoin",
"maki",
"web",
"framework",
"p2p",
"websockets",
"webrtc",
"peer",
"peers",
"peering",
"transport",
"network",
"http",
"html"
],
"author": "Fabric Labs",
"license": "MIT",
"engines": {
"node": "24.x"
},
"bugs": {
"url": "https://github.com/FabricLabs/fabric-react/issues"
},
"homepage": "https://github.com/FabricLabs/fabric-react#readme",
"dependencies": {
"elliptic": "6.5.4",
"fast-json-patch": "^3.1.1",
"lodash.merge": "^4.6.2",
"rollup": "2.72.1"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/plugin-syntax-jsx": "7.21.4",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"c8": "7.13.0",
"mocha": "10.2.0"
},
"peerDependencies": {
"@fabric/core": "FabricLabs/fabric#feature/v0.1.0-RC1",
"@fabric/http": "FabricLabs/fabric-http#feature/v0.1.0-RC1",
"react": "^17.0.1 || ^18.2.0",
"react-dom": "^17.0.1 || ^18.2.0",
"semantic-ui-react": "^2.1.0"
}
}