Alex Jbanca 7553ae45e0 feat(SIWE): Add siwe support to the webSdk integration
This PR implements the functions needed for siwe in the webSdk integration, updates the WC version and fixes an issue where the webpack does not automatically inject `Buffer` plugin needed by the SIWE impl in WC.
2024-11-20 18:10:29 +02:00

25 lines
674 B
JSON

{
"name": "wallet_connect_integration",
"version": "0.1.0",
"description": "Wallet Connect integration for status-desktop",
"private": true,
"devDependencies": {
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"license": "MPL-2.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"start": "webpack serve --mode development --open"
},
"dependencies": {
"@reown/walletkit": "^1.1.1",
"@walletconnect/core": "^2.17.1",
"@walletconnect/utils": "^2.17.1",
"buffer": "^6.0.3"
}
}