-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 887 Bytes
/
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
{
"name": "multichain-wallet-react-native",
"version": "2.0.3",
"description": "A react-native library for generating multichain wallets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"start": "ts-node src/index.ts"
},
"keywords": [],
"author": "Henry Kariuki",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react-native": "*",
"react-native-get-random-values": "*"
},
"dependencies": {
"@ethersproject/shims": "^5.7.0",
"ethers": "^6.11.1"
}
}