-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 KB
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
{
"name": "@tonsprotocol/hdwallet",
"version": "0.0.1",
"description": "HD multistand wallet",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"author": "tonsprotocol",
"license": "LicenseRef-LICENSE",
"dependencies": {
"@solana/web3.js": "^1.95.1",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^15.1.0",
"bip32": "^4.0.0",
"bs58": "^6.0.0",
"crypto-js": "^4.1.1",
"ethereumjs-wallet": "^1.0.2",
"libsodium": "^0.7.11",
"libsodium-wrappers-sumo": "^0.7.11",
"tweetnacl": "^1.0.3",
"web3": "^4.11.0"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^28.1.8",
"@types/libsodium-wrappers-sumo": "^0.7.5",
"@types/sodium-native": "^2.3.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.9.3"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Tonspay/Tonspack-HD-generator"
},
"keywords": [
"crypto",
"solana",
"tonspack",
"wallet"
],
"homepage": "https://github.com/Tonspay"
}