UNPKG

micro-key-producer

Version:

Produces secure passwords & keys for WebCrypto, SSH, PGP, SLIP10, OTP and many others

82 lines (81 loc) 2.19 kB
{ "name": "micro-key-producer", "version": "0.8.6", "description": "Produces secure passwords & keys for WebCrypto, SSH, PGP, SLIP10, OTP and many others", "files": [ "*.js", "*.d.ts", "*.map", "bin/gpgkp.js", "src" ], "bin": { "gpgkp": "bin/gpgkp.js" }, "dependencies": { "@noble/ciphers": "^2.2.0", "@noble/curves": "^2.2.0", "@noble/hashes": "^2.2.0", "@scure/base": "^2.2.0", "micro-packed": "^0.8.0" }, "devDependencies": { "@paulmillr/jsbt": "0.5.0", "@types/node": "25.3.0", "prettier": "3.6.2", "typescript": "6.0.2" }, "scripts": { "build": "tsc", "build:release": "npx --no @paulmillr/jsbt esbuild test/build", "check": "npm run check:readme && npm run check:treeshake && npm run check:jsdoc", "check:treeshake": "npx --no @paulmillr/jsbt treeshake package.json test/build/out-treeshake", "check:importtime": "npx --no @paulmillr/jsbt importtime package.json", "format": "prettier --write bin 'src/**/*.{js,ts}' 'test/*.ts'", "test": "node test/index.ts", "test:bun": "bun test/index.ts", "test:deno": "deno --allow-env --allow-read test/index.ts", "test:gpgkp": "node test/pgp-cli.test.ts", "test:gpgkp2": "node test/pgp-keygen.test.ts" }, "exports": { ".": "./index.js", "./bls.js": "./bls.js", "./convert.js": "./convert.js", "./ipns.js": "./ipns.js", "./otp.js": "./otp.js", "./password.js": "./password.js", "./pgp.js": "./pgp.js", "./slip10.js": "./slip10.js", "./ssh.js": "./ssh.js", "./tor.js": "./tor.js", "./utils.js": "./utils.js", "./x509.js": "./x509.js" }, "keywords": [ "ed25519", "PGP", "GPG", "RFC 4880", "RFC 6637", "SSH", "TOR", "onion", "key generation", "ec", "elliptic", "x509" ], "funding": "https://paulmillr.com/funding/", "repository": { "type": "git", "url": "git+https://github.com/paulmillr/micro-key-producer.git" }, "type": "module", "main": "index.js", "module": "index.js", "types": "index.d.ts", "sideEffects": false, "author": "Paul Miller (https://paulmillr.com)", "license": "MIT" }