-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.48 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
{
"name": "@hashgraphonline/hashinal-wc",
"version": "1.0.96",
"description": "The official Hashinal Wallet Connect SDK. A set of easy-to-use functions to interact with Hedera through Wallet Connect.",
"type": "module",
"files": [
"dist"
],
"main": "./dist/umd/hashinal-wc.umd.js",
"module": "./dist/es/hashinal-wc.es.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/es/hashinal-wc.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/umd/hashinal-wc.umd.js"
}
}
},
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build:es": "BUILD_FORMAT=es vite build",
"build:umd": "BUILD_FORMAT=umd vite build",
"build": "npm run clean && npm run build:umd && npm run build:es && npm run build:ts",
"build:ts": "tsc --emitDeclarationOnly --project tsconfig.json",
"prepublish": "npm run build",
"publish": "npm publish --access public",
"publish:canary": "npm publish --access public --tag canary"
},
"dependencies": {
"@hashgraph/proto": "^2.15.0",
"@hashgraph/sdk": "^2.55.1",
"@hashgraph/hedera-wallet-connect": "1.4.2",
"@walletconnect/core": "^2.17.3",
"@walletconnect/modal": "^2.7.0",
"@walletconnect/modal-core": "^2.7.0",
"@walletconnect/qrcode-modal": "^1.8.0",
"@walletconnect/utils": "^2.17.3",
"fetch-retry": "^6.0.0",
"long": "^5.2.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@types/isomorphic-fetch": "^0.0.39",
"@types/long": "^5.0.0",
"@types/node": "^22.2.0",
"@vitejs/plugin-react": "^4.3.1",
"@walletconnect/types": "^2.17.1",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"node-stdlib-browser": "^1.2.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"rimraf": "^5.0.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"url": "^0.11.4",
"util": "^0.12.5",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.2.2",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-string-replace": "^1.1.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"packageManager": "[email protected]+sha512.de524adec81a6c3d7a26d936d439d2832e351cdfc5728f9d91f3fc85dd20b04391c038e9b4ecab11cae2b0dd9f0d55fd355af766bc5c1a7f8d25d96bb2a0b2ca"
}