Skip to content

Commit 263279a

Browse files
committed
Fix gh-86: add extension-less imports
1 parent 3bc1866 commit 263279a

File tree

1 file changed

+125
-0
lines changed

1 file changed

+125
-0
lines changed

Diff for: package.json

+125
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,131 @@
3636
"import": "./esm/index.js",
3737
"default": "./index.js"
3838
},
39+
"./aes": {
40+
"types": "./aes.d.ts",
41+
"import": "./esm/aes.js",
42+
"default": "./aes.js"
43+
},
44+
"./bip39": {
45+
"types": "./bip39.d.ts",
46+
"import": "./esm/bip39.js",
47+
"default": "./bip39.js"
48+
},
49+
"./blake2b": {
50+
"types": "./blake2b.d.ts",
51+
"import": "./esm/blake2b.js",
52+
"default": "./blake2b.js"
53+
},
54+
"./hdkey": {
55+
"types": "./hdkey.d.ts",
56+
"import": "./esm/hdkey.js",
57+
"default": "./hdkey.js"
58+
},
59+
"./index": {
60+
"types": "./index.d.ts",
61+
"import": "./esm/index.js",
62+
"default": "./index.js"
63+
},
64+
"./keccak": {
65+
"types": "./keccak.d.ts",
66+
"import": "./esm/keccak.js",
67+
"default": "./keccak.js"
68+
},
69+
"./pbkdf2": {
70+
"types": "./pbkdf2.d.ts",
71+
"import": "./esm/pbkdf2.js",
72+
"default": "./pbkdf2.js"
73+
},
74+
"./random": {
75+
"types": "./random.d.ts",
76+
"import": "./esm/random.js",
77+
"default": "./random.js"
78+
},
79+
"./ripemd160": {
80+
"types": "./ripemd160.d.ts",
81+
"import": "./esm/ripemd160.js",
82+
"default": "./ripemd160.js"
83+
},
84+
"./scrypt": {
85+
"types": "./scrypt.d.ts",
86+
"import": "./esm/scrypt.js",
87+
"default": "./scrypt.js"
88+
},
89+
"./secp256k1-compat": {
90+
"types": "./secp256k1-compat.d.ts",
91+
"import": "./esm/secp256k1-compat.js",
92+
"default": "./secp256k1-compat.js"
93+
},
94+
"./secp256k1": {
95+
"types": "./secp256k1.d.ts",
96+
"import": "./esm/secp256k1.js",
97+
"default": "./secp256k1.js"
98+
},
99+
"./sha256": {
100+
"types": "./sha256.d.ts",
101+
"import": "./esm/sha256.js",
102+
"default": "./sha256.js"
103+
},
104+
"./sha512": {
105+
"types": "./sha512.d.ts",
106+
"import": "./esm/sha512.js",
107+
"default": "./sha512.js"
108+
},
109+
"./utils": {
110+
"types": "./utils.d.ts",
111+
"import": "./esm/utils.js",
112+
"default": "./utils.js"
113+
},
114+
"./bip39/index": {
115+
"types": "./bip39/index.d.ts",
116+
"import": "./esm/bip39/index.js",
117+
"default": "./bip39/index.js"
118+
},
119+
"./bip39/wordlists/czech": {
120+
"types": "./bip39/wordlists/czech.d.ts",
121+
"import": "./esm/bip39/wordlists/czech.js",
122+
"default": "./bip39/wordlists/czech.js"
123+
},
124+
"./bip39/wordlists/english": {
125+
"types": "./bip39/wordlists/english.d.ts",
126+
"import": "./esm/bip39/wordlists/english.js",
127+
"default": "./bip39/wordlists/english.js"
128+
},
129+
"./bip39/wordlists/french": {
130+
"types": "./bip39/wordlists/french.d.ts",
131+
"import": "./esm/bip39/wordlists/french.js",
132+
"default": "./bip39/wordlists/french.js"
133+
},
134+
"./bip39/wordlists/italian": {
135+
"types": "./bip39/wordlists/italian.d.ts",
136+
"import": "./esm/bip39/wordlists/italian.js",
137+
"default": "./bip39/wordlists/italian.js"
138+
},
139+
"./bip39/wordlists/japanese": {
140+
"types": "./bip39/wordlists/japanese.d.ts",
141+
"import": "./esm/bip39/wordlists/japanese.js",
142+
"default": "./bip39/wordlists/japanese.js"
143+
},
144+
"./bip39/wordlists/korean": {
145+
"types": "./bip39/wordlists/korean.d.ts",
146+
"import": "./esm/bip39/wordlists/korean.js",
147+
"default": "./bip39/wordlists/korean.js"
148+
},
149+
"./bip39/wordlists/simplified-chinese": {
150+
"types": "./bip39/wordlists/simplified-chinese.d.ts",
151+
"import": "./esm/bip39/wordlists/simplified-chinese.js",
152+
"default": "./bip39/wordlists/simplified-chinese.js"
153+
},
154+
"./bip39/wordlists/spanish": {
155+
"types": "./bip39/wordlists/spanish.d.ts",
156+
"import": "./esm/bip39/wordlists/spanish.js",
157+
"default": "./bip39/wordlists/spanish.js"
158+
},
159+
"./bip39/wordlists/traditional-chinese": {
160+
"types": "./bip39/wordlists/traditional-chinese.d.ts",
161+
"import": "./esm/bip39/wordlists/traditional-chinese.js",
162+
"default": "./bip39/wordlists/traditional-chinese.js"
163+
},
39164
"./aes.js": {
40165
"types": "./aes.d.ts",
41166
"import": "./esm/aes.js",

0 commit comments

Comments
 (0)