- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
107 lines
2.2 KiB
JSON
107 lines
2.2 KiB
JSON
{
|
|
"name": "ed25519-keygen",
|
|
"version": "0.4.11",
|
|
"description": "Generate ed25519 keys for SSH, PGP (GPG), TOR, IPNS and SLIP-0010 hdkey",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"index.d.ts.map",
|
|
"ipns.js",
|
|
"ipns.d.ts",
|
|
"ipns.d.ts.map",
|
|
"hdkey.js",
|
|
"hdkey.d.ts",
|
|
"hdkey.d.ts.map",
|
|
"pgp.js",
|
|
"pgp.d.ts",
|
|
"pgp.d.ts.map",
|
|
"ssh.js",
|
|
"ssh.d.ts",
|
|
"ssh.d.ts.map",
|
|
"tor.js",
|
|
"tor.d.ts",
|
|
"tor.d.ts.map",
|
|
"utils.js",
|
|
"utils.d.ts",
|
|
"utils.d.ts.map",
|
|
"src/index.ts",
|
|
"src/ipns.ts",
|
|
"src/hdkey.ts",
|
|
"src/pgp.ts",
|
|
"src/ssh.ts",
|
|
"src/tor.ts",
|
|
"src/utils.ts"
|
|
],
|
|
"dependencies": {
|
|
"@noble/curves": "~1.3.0",
|
|
"@noble/hashes": "~1.3.3",
|
|
"@scure/base": "~1.1.5",
|
|
"micro-packed": "~0.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"micro-should": "0.4.0",
|
|
"prettier": "3.1.1",
|
|
"typescript": "5.3.2"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
},
|
|
"./ipns": {
|
|
"types": "./ipns.d.ts",
|
|
"default": "./ipns.js"
|
|
},
|
|
"./hdkey": {
|
|
"types": "./hdkey.d.ts",
|
|
"default": "./hdkey.js"
|
|
},
|
|
"./ssh": {
|
|
"types": "./ssh.d.ts",
|
|
"default": "./ssh.js"
|
|
},
|
|
"./pgp": {
|
|
"types": "./pgp.d.ts",
|
|
"default": "./pgp.js"
|
|
},
|
|
"./tor": {
|
|
"types": "./tor.d.ts",
|
|
"default": "./tor.js"
|
|
},
|
|
"./utils": {
|
|
"types": "./utils.d.ts",
|
|
"default": "./utils.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "prettier --check src",
|
|
"format": "prettier --write 'src/**/*.{js,ts}' 'test/*.js'",
|
|
"test": "node test/index.js"
|
|
},
|
|
"author": "Paul Miller (https://paulmillr.com)",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/paulmillr/ed25519-keygen",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/paulmillr/ed25519-keygen.git"
|
|
},
|
|
"keywords": [
|
|
"ed25519",
|
|
"PGP",
|
|
"GPG",
|
|
"RFC 4880",
|
|
"RFC 6637",
|
|
"SSH",
|
|
"TOR",
|
|
"onion",
|
|
"key generation",
|
|
"ec",
|
|
"elliptic"
|
|
],
|
|
"funding": "https://paulmillr.com/funding/"
|
|
}
|