-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "@verida/wallet-utils",
"version": "1.7.4",
"description": "Wallet utilities for managing accounts, keys and signatures across multiple blockchains",
"main": "dist/index.js",
"scripts": {
"test": "mocha -mocha --require ts-node/register --require @babel/polyfill --require @babel/register './test/**/*.js'",
"build": "tsc",
"preinstall": "npm install --ignore-scripts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/verida/wallet-utils.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/verida/wallet-utils/issues"
},
"homepage": "https://github.com/verida/wallet-utils#readme",
"dependencies": {
"algosdk": "^1.12.0",
"bs58": "^4.0.1",
"ethers": "^5.0.5",
"hdkey": "^2.0.1",
"lodash": "^4.17.21",
"near-api-js": "^0.45.1",
"near-seed-phrase": "^0.2.0",
"thor-devkit": "^1.2.5",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"mocha": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}