-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
{
"name": "tezos-wallet",
"version": "2.0.0",
"description": "Tezos wallet simplifies communication with Tezos nodes and significantly reduces burden of working with Tezos network.",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"dev": "tsc -p tsconfig.dev.json",
"docs": "typedoc --out ./docs/ ./src/index.ts --mode file --theme markdown --name tezos-wallet",
"watch": "tsc -w",
"v": "tsc -w",
"watch:dev": "tsc -w -p tsconfig.dev.json",
"test": "node_modules/.bin/mocha -w"
},
"files": [
"docs/**/*",
"examples/**/*",
"lib/**/*"
],
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.27.1",
"@ledgerhq/hw-transport-webhid": "^6.27.1",
"@obsidiansystems/hw-app-xtz": "^4.72.3",
"@taquito/local-forging": "^12.1.1",
"@taquito/rpc": "^12.1.1",
"babel-polyfill": "^6.26.0",
"bip39": "2.5.0",
"blakejs": "^1.1.0",
"bs58check": "2.1.1",
"buffer": "~5.2.1",
"libsodium": "0.7.3",
"libsodium-wrappers": "0.7.3",
"trezor-connect": "8.1.2",
"ws": "^8.7.0"
},
"peerDependencies": {
"rxjs": "~6.3.2"
},
"devDependencies": {
"@types/bip39": "^2.4.0",
"@types/libsodium-wrappers": "^0.7.0",
"@types/node": "^10.12.11",
"@types/w3c-web-hid": "^1.0.3",
"mocha": "^10.0.0",
"rxjs": "6.3.2",
"ts-node": "^7.0.1",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "~1.1.19",
"typescript": "3.9.4",
"xmlhttprequest-ssl": "1.5.5"
},
"author": "Juraj Selep <jurajselep@gmail.com>",
"license": "ISC",
"homepage": "https://simplestaking.com",
"repository": {
"type": "git",
"url": "https://github.com/simplestaking/tezos-wallet.git"
},
"bugs": {
"url": "https://github.com/simplestaking/tezos-wallet/issues"
},
"keywords": [
"tezos",
"tezos wallet"
]
}