forked from paulmillr/scure-bip39
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.96 KB
/
package.json
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
{
"name": "@zoltu/bip39",
"version": "0.0.0",
"description": "Secure, audited & minimal implementation of BIP39 mnemonic phrases",
"type": "module",
"main": "output/index.js",
"exports": {
".": "./output/index.js",
"./wordlists/czech.js": "./output/wordlists/czech.js",
"./wordlists/english.js": "./output/wordlists/english.js",
"./wordlists/french.js": "./output/wordlists/french.js",
"./wordlists/italian.js": "./output/wordlists/italian.js",
"./wordlists/japanese.js": "./output/wordlists/japanese.js",
"./wordlists/korean.js": "./output/wordlists/korean.js",
"./wordlists/simplified-chinese.js": "./output/wordlists/simplified-chinese.js",
"./wordlists/spanish.js": "./output/wordlists/spanish.js",
"./wordlists/traditional-chinese.js": "./output/wordlists/traditional-chinese.js"
},
"files": [
"output/*",
"src/*"
],
"dependencies": {
"@noble/hashes": "~1.3.0",
"@scure/base": "~1.1.0"
},
"devDependencies": {
"micro-should": "0.4.0",
"prettier": "2.8.4",
"typescript": "5.0.2"
},
"author": "Paul Miller (https://paulmillr.com)",
"homepage": "https://paulmillr.com/",
"repository": {
"type": "git",
"url": "https://github.com/paulmillr/scure-bip39.git"
},
"contributors": [
{
"name": "Patricio Palladino",
"email": "[email protected]"
},
{
"name": "Paul Miller",
"url": "https://paulmillr.com"
}
],
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "prettier --check 'src/**/*.ts' 'test/*.test.ts'",
"format": "prettier --write 'src/**/*.ts' 'test/*.test.ts'",
"test": "tsc --project test/tsconfig.json && node ./output-test/test/bip39.test.js"
},
"keywords": [
"bip39",
"mnemonic",
"phrase",
"code",
"bip0039",
"bip-39",
"micro",
"scure",
"wordlist",
"noble"
],
"funding": [
{
"type": "individual",
"url": "https://paulmillr.com/funding/"
}
]
}