-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.47 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
56
{
"name": "advanced-wallet-checker",
"version": "1.0.0",
"description": "Advanced cryptocurrency wallet checker with high-entropy key discovery",
"main": "optimized_checker.js",
"scripts": {
"start": "node optimized_checker.js high_entropy_keys.txt",
"status": "node progress_monitor.js",
"dashboard": "node dashboard.js",
"key-finder": "node key_finder.js",
"reorder": "node reorder_keys.js",
"test": "node -c optimized_checker.js && node -c key_finder.js",
"setup": "copy .env.example .env && echo Setup complete! Please edit .env with your API keys."
},
"keywords": [
"cryptocurrency",
"bitcoin",
"ethereum",
"wallet",
"private-key",
"mnemonic",
"blockchain",
"entropy",
"recovery"
],
"author": "Wallet Checker Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/advanced-wallet-checker.git"
},
"bugs": {
"url": "https://github.com/yourusername/advanced-wallet-checker/issues"
},
"homepage": "https://github.com/yourusername/advanced-wallet-checker#readme",
"dependencies": {
"@scure/bip32": "^2.0.0",
"axios": "^1.12.2",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.7",
"dotenv": "^16.3.1",
"ethers": "^6.15.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"os": [
"win32"
],
"devDependencies": {},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/yourusername"
}
}