-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (35 loc) · 722 Bytes
/
package.json
File metadata and controls
36 lines (35 loc) · 722 Bytes
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
{
"name": "Encryption-tools",
"version": "1.0.0",
"description": "Cryptocurrency private key encryption and decryption tool supporting ETH and SOL",
"type": "module",
"main": "index.js",
"scripts": {
"encrypt": "node JM.js",
"decrypt": "node PJ.js",
"start": "node JM.js"
},
"keywords": [
"cryptocurrency",
"ethereum",
"solana",
"encryption",
"private-key",
"crypto"
],
"author": "@7KRIS5",
"license": "MIT",
"dependencies": {
"@solana/web3.js": "^1.87.6",
"bs58": "^5.0.0",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"ethers": "^6.8.1"
},
"devDependencies": {
"@types/node": "^20.8.0"
},
"engines": {
"node": ">=16.0.0"
},
}