-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 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
{
"name": "Solvanity",
"version": "1.6.1",
"description": "A high-performance Solana vanity address generator CLI built with Bun",
"main": "solvanity.js",
"type": "module",
"scripts": {
"start": "bun solvanity.js --help",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"solana",
"blockchain",
"cryptocurrency",
"vanity",
"address",
"generator",
"bun",
"cli"
],
"author": "Define Systems",
"license": "MIT",
"dependencies": {
"@solana/kit": "^5.0.0",
"bip39-light": "^1.0.7",
"bs58": "^6.0.0",
"chalk": "^5.6.0",
"commander": "^14.0.0",
"ed25519-hd-key": "^1.3.0",
"ora": "^8.2.0",
"qrcode-terminal": "^0.12.0"
},
"engines": {
"bun": "=1.2.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/definesystems/solvanity.git"
},
"bugs": {
"url": "https://github.com/definesystems/solvanity/issues"
},
"homepage": "https://github.com/definesystems/solvanity#readme",
"bin": {
"solvanity": "./solvanity.js"
},
"devDependencies": {
"vitest": "4.0.12"
}
}