-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 865 Bytes
/
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
{
"name": "solana-wallet-generator",
"version": "1.0.0",
"description": "Generate solana wallets and extract pregenerated wallet data",
"keywords": ["solana", "wallet", "generator", "web3"],
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "node bootstrap.js ./src/index.ts",
"dev": "node bootstrap.js ./src/dev.ts",
"postinstall": "node bootstrap.js ./src/other/postinstall.ts"
},
"author": "fraggdiller",
"license": "MIT",
"dependencies": {
"@solana/web3.js": "^1.91.7",
"@scure/bip39": "^1.3.0",
"bs58": "^5.0.0",
"tweetnacl": "^1.0.3",
"exceljs": "^4.4.0"
},
"devDependencies": {
"typescript": "^5.4.5",
"ts-node": "^10.9.2",
"eslint": "^8.57.0",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0"
}
}