-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 814 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 814 Bytes
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
{
"name": "web3-wallets",
"version": "3.0.0",
"description": "Javascript SDK for Web3 wallets",
"main": "lib/index.js",
"type": "lib/index.d.ts",
"author": "Element Project Developers",
"scripts": {
"release": "tsc && npm publish && git tag $npm_package_version && git push --tag",
"dev:tsc": "tsc -w -p tsconfig.json",
"eslint": "eslint --fix src --ext .ts --max-warnings=0",
"start": "tsc --watch",
"link": "sudo npm link web3-wallets"
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.7.2",
"bignumber.js": "^9.1.2",
"ethers": "^6.8.1",
"web3-assert": "1.0.5",
"web3-signer-provider": "2.0.0"
},
"devDependencies": {
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"publishConfig": {
"access": "public"
},
"watch": "tsc --watch"
}