-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.24 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
{
"name": "mantra-vanity-generator",
"version": "1.0.0",
"description": "A modern, high-performance vanity address generator for the MANTRA blockchain. This application combines a Rust/WebAssembly backend for cryptographic operations with a clean, responsive frontend for an optimal user experience.",
"main": "index.html",
"scripts": {
"dev": "python3 -m http.server 8000",
"build": "./build.sh",
"clean": "rm -f vanity_wasm* && rm -rf _site",
"deploy": "npm run build && mkdir -p _site && cp index.html main.js vanity_wasm* _site/",
"deploy:preview": "npm run deploy && cd _site && python3 -m http.server 8080",
"verify": "./verify-deployment.sh"
},
"keywords": [
"blockchain",
"vanity-address",
"mantra",
"cosmos",
"webassembly",
"rust",
"cryptography",
"bip32",
"bip39",
"cryptocurrency",
"address-generation",
"github-pages"
],
"author": "MANTRA Vanity Generator Team",
"license": "MIT",
"homepage": "https://github.com/mantramatt/vanity-mantra",
"repository": {
"type": "git",
"url": "https://github.com/mantramatt/vanity-mantra.git"
},
"bugs": {
"url": "https://github.com/mantramatt/vanity-mantra/issues"
},
"engines": {
"node": ">=14.0.0"
}
}