@library-pals/isbn 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,8 +1,13 @@
1
1
  {
2
2
  "name": "@library-pals/isbn",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Find books by ISBN",
5
- "exports": "./src/index.js",
5
+ "exports": {
6
+ ".": {
7
+ "types": "./types/index.d.ts",
8
+ "default": "./src/index.js"
9
+ }
10
+ },
6
11
  "types": "./types/index.d.ts",
7
12
  "type": "module",
8
13
  "main": "src/index.js",
@@ -143,11 +143,11 @@ export async function getVolume(id) {
143
143
  function getLargestThumbnail(imageLinks) {
144
144
  const sizes = [
145
145
  "extraLarge",
146
+ "smallThumbnail",
146
147
  "large",
147
148
  "medium",
148
149
  "small",
149
150
  "thumbnail",
150
- "smallThumbnail",
151
151
  ];
152
152
 
153
153
  if (!imageLinks) return;