react-lazy-img-observer 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/LICENCE.md +16 -16
  2. package/package.json +17 -4
package/LICENCE.md CHANGED
@@ -1,21 +1,21 @@
1
- ISC License (ISC)
1
+ MIT License
2
2
 
3
3
  Copyright (c) 2023 Percy Saul Rondan Chuzon
4
4
 
5
- Se concede permiso, de forma gratuita, a cualquier persona que obtenga una copia
6
- de este software y de los archivos de documentación asociados (el "Software"),
7
- para tratar el Software sin restricción, incluidos, entre otros, los derechos de
8
- uso, copia, modificación, fusión, publicación, distribución, sublicencia y/o
9
- venta de copias del Software y para permitir a las personas a las que se les
10
- proporcione el Software a hacerlo, sujeto a las siguientes condiciones:
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the Software), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
11
 
12
- El aviso de copyright anterior y este aviso de permisos se incluirán en todas
13
- las copias o partes sustanciales del Software.
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
14
 
15
- EL SOFTWARE SE PROPORCIONA "TAL CUAL", SIN GARANTÍA DE NINGÚN TIPO, EXPRESA O
16
- IMPLÍCITA, INCLUYENDO PERO NO LIMITADO A LAS GARANTÍAS DE COMERCIABILIDAD,
17
- IDONEIDAD PARA UN PROPÓSITO PARTICULAR Y NO INFRACCIÓN. EN NINGÚN CASO LOS
18
- AUTORES O TITULARES DE DERECHOS DE AUTOR SERÁN RESPONSABLES DE NINGUNA
19
- RECLAMACIÓN, DAÑO U OTRA RESPONSABILIDAD, YA SEA EN UNA ACCIÓN DE CONTRATO,
20
- AGRAVIO O DE OTRO MODO, DERIVADA DE, FUERA DE O EN CONEXIÓN CON EL SOFTWARE
21
- O EL USO U OTROS TRATOS EN EL SOFTWARE.
15
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-lazy-img-observer",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "A React component for lazy loading images with Intersection Observer",
5
5
  "main": "dist/cjs/ImageLazy.min.js",
6
6
  "module": "dist/esm/ImageLazy.min.js",
@@ -25,11 +25,24 @@
25
25
  "keywords": [
26
26
  "react",
27
27
  "lazy-load",
28
+ "lazyload",
28
29
  "image",
29
- "intersection-observer"
30
+ "lazy-image",
31
+ "intersection-observer",
32
+ "performance",
33
+ "react-component",
34
+ "react-images",
35
+ "react-lazy",
36
+ "load-on-scroll",
37
+ "responsive-images",
38
+ "web-optimization",
39
+ "accessibility",
40
+ "a11y",
41
+ "react-hooks",
42
+ "viewport"
30
43
  ],
31
44
  "author": "Percy Chuzon <contacto@percychuzon.com>",
32
- "license": "ISC",
45
+ "license": "MIT",
33
46
  "homepage": "https://imagelazy.percychuzon.com/",
34
47
  "repository": {
35
48
  "type": "git",
@@ -39,7 +52,7 @@
39
52
  "url": "https://github.com/perch33/react-lazy-img-observer/issues"
40
53
  },
41
54
  "dependencies": {
42
- "terser": "^5.39.0"
55
+ "terser": "^5.39.2"
43
56
  },
44
57
  "peerDependencies": {
45
58
  "react": ">=17.0.0",