-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.22 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "micro-key-producer",
"version": "0.9.0",
"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.9.0"
},
"devDependencies": {
"@paulmillr/jsbt": "0.6.0",
"@types/node": "25.3.0",
"prettier": "3.6.2",
"typescript": "6.0.2"
},
"scripts": {
"build": "tsc",
"bundle": "npx --no @paulmillr/jsbt bundle",
"check": "npx --no @paulmillr/jsbt check",
"format": "prettier --write bin 'src/**/*.{js,ts}' 'test/*.ts'",
"test": "node --experimental-strip-types --no-warnings test/index.ts",
"test:bun": "bun test/index.ts",
"test:deno": "deno --allow-env --allow-read test/index.ts",
"test:gpg": "node --experimental-strip-types --no-warnings test/pgp-gpg.test.ts",
"test:openssl": "node --experimental-strip-types --no-warnings test/x509-openssl.test.ts",
"test:ssh": "node --experimental-strip-types --no-warnings test/ssh-openssh.test.ts",
"test:gpgkp": "node test/pgp-cli.test.ts",
"test:gpgkp2": "node test/pgp-keygen.test.ts"
},
"exports": {
".": "./index.js",
"./asn1.js": "./asn1.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"
}