- 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
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "@noble/ed25519",
|
|
"version": "2.0.0",
|
|
"description": "Fastest 4KB JS implementation of ed25519 elliptic curve. Auditable, high-security, 0-dependency EDDSA signatures compliant with RFC8032 & ZIP215",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"index.ts"
|
|
],
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build:release": "rollup -c rollup.config.js",
|
|
"test": "node test/ed25519.test.mjs",
|
|
"bench": "node test/benchmark/benchmark.js",
|
|
"min": "cd test/build; npm install; npm run terser",
|
|
"loc": "echo \"`npm run --silent min | wc -c` symbols `wc -l < index.ts` LOC, `npm run --silent min | gzip -c8 | wc -c`B gzipped\""
|
|
},
|
|
"author": "Paul Miller (https://paulmillr.com)",
|
|
"homepage": "https://paulmillr.com/noble/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/paulmillr/noble-ed25519.git"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@noble/hashes": "1.3.0",
|
|
"fast-check": "3.0.0",
|
|
"micro-bmark": "0.3.0",
|
|
"micro-should": "0.4.0",
|
|
"typescript": "5.0.2"
|
|
},
|
|
"keywords": [
|
|
"ed25519",
|
|
"rfc8032",
|
|
"signature",
|
|
"eddsa",
|
|
"noble",
|
|
"cryptography",
|
|
"elliptic curve",
|
|
"ecc",
|
|
"curve",
|
|
"rfc7748",
|
|
"zip215",
|
|
"ristretto255",
|
|
"x25519",
|
|
"curve25519"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
}
|
|
},
|
|
"funding": [
|
|
{
|
|
"type": "individual",
|
|
"url": "https://paulmillr.com/funding/"
|
|
}
|
|
]
|
|
}
|