- 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
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "eciesjs",
|
|
"description": "Elliptic Curve Integrated Encryption Scheme for secp256k1/curve25519",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Weiliang Li",
|
|
"email": "to.be.impressive@gmail.com",
|
|
"url": "https://github.com/kigawas"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ecies/js.git"
|
|
},
|
|
"version": "0.4.5",
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"keywords": [
|
|
"secp256k1",
|
|
"curve25519",
|
|
"crypto",
|
|
"elliptic curves",
|
|
"ecies",
|
|
"bitcoin",
|
|
"ethereum",
|
|
"cryptocurrency"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "npx tsc",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@noble/ciphers": "^0.3.0",
|
|
"@noble/curves": "^1.2.0",
|
|
"@noble/hashes": "^1.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.5",
|
|
"@types/node": "^20.8.2",
|
|
"@types/node-fetch": "^2.6.6",
|
|
"https-proxy-agent": "^7.0.2",
|
|
"jest": "^29.7.0",
|
|
"node-fetch": "^2.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|