forked from here-wallet/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.66 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
68
69
{
"name": "@here-wallet/core",
"version": "3.4.0",
"description": "HereWallet lib for near-selector",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "commonjs",
"exports": {
".": "./build/index.js",
"./qrcode-strategy": "./build/qrcode-strategy/index.js",
"./telegramEthereumProvider": "./build/telegramEthereumProvider.js"
},
"typesVersions": {
"*": {
"telegramEthereumProvider": [
"build/telegramEthereumProvider.d.ts"
],
"qrcode-strategy": [
"build/qrcode-strategy/index.d.ts"
]
}
},
"homepage": "https://github.com/here-wallet/near-selector",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/here-wallet/near-selector.git"
},
"scripts": {
"example": "parcel example/index.html --open --port 3000",
"build:example": "parcel build example/index.html --port 3000",
"build": "tsc"
},
"dependencies": {
"@near-js/accounts": "^1.2.1",
"@near-js/crypto": "^1.2.4",
"@near-js/types": "^0.2.1",
"@near-js/utils": "^0.2.2",
"js-sha256": "^0.11.0",
"sha1": "^1.1.1",
"uuid4": "2.0.3"
},
"peerDependencies": {
"bn.js": "5.2.1",
"borsh": "0.7.0"
},
"devDependencies": {
"@babel/core": "7.2.0",
"@types/bn.js": "5.1.1",
"@types/sha1": "^1.1.3",
"@types/uuid4": "^2.0.0",
"parcel-bundler": "^1.6.1",
"typescript": "4.4.4"
},
"keywords": [
"near",
"hot-coin",
"ethereum",
"herewallet",
"web3"
],
"bugs": {
"url": "https://github.com/here-wallet/near-selector/issues"
},
"author": "here-wallet",
"license": "ISC",
"directories": {
"example": "example"
}
}