-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 3.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@buidlerlabs/hashgraph-react-wallets",
"version": "2.4.2",
"description": "A lightweight library that aims to provide an easier way to interact with the hedera network from a UI perspective",
"keywords": [
"react",
"hedera",
"hedera-wallets"
],
"module": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"/lib"
],
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./connectors": {
"types": "./lib/types/hWBridge/connectors/index.d.ts",
"default": "./lib/hWBridge/connectors/index.js"
},
"./actions": {
"types": "./lib/types/actions/index.d.ts",
"default": "./lib/actions/index.js"
},
"./chains": {
"types": "./lib/types/hWBridge/chains/index.d.ts",
"default": "./lib/hWBridge/chains/index.js"
},
"./hns-resolvers": {
"types": "./lib/types/hWBridge/hnsResolvers/index.d.ts",
"default": "./lib/hWBridge/hnsResolvers/index.js"
}
},
"scripts": {
"build": "run-s clean build:esm build:declarations copy-assets",
"build:declarations": "tsc",
"build:esm": "babel src --extensions .ts,.tsx --out-dir lib --source-maps",
"copy-assets": "copyfiles -f src/assets/* lib/assets",
"clean": "rimraf lib",
"demo": "cd demo && npm run dev",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --config jestconfig.json",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "Buidler Labs",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"babel-plugin-add-import-extension": "^1.6.0",
"copyfiles": "^2.4.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vitepress": "^1.3.4"
},
"peerDependencies": {
"@hashgraph/sdk": "^2.47.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@hashgraph/hedera-wallet-connect": "^1.4.1",
"@magic-ext/hedera": "^1.0.2",
"@magic-ext/oauth": "^15.2.0",
"@tanstack/react-query": "^5.18.1",
"magic-sdk": "^21.2.0",
"short-uuid": "^4.2.2",
"viem": "^2.17.4",
"wagmi": "^2.11.1"
}
}