-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "loadable-image",
"version": "3.2.6",
"repository": {
"type": "git",
"url": "git+https://github.com/denchiklut/loadable-image.git"
},
"homepage": "https://denchiklut.github.io/loadable-image",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"module.esnext": "dist/esnext.esm.js",
"types": "dist/@types/index.d.ts",
"files": [
"dist"
],
"description": "React Component to lazy load images",
"author": "Karl: ollylut@gmail.com",
"scripts": {
"build": "rm -rf dist && NODE_ENV=production && rollup -c --bundleConfigAsCjs",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint --fix --quiet ./"
},
"dependencies": {
"react-intersection-observer": "^9.13.0",
"transitions-kit": "^1.2.4"
},
"peerDependencies": {
"react": ">=16.6.0",
"react-dom": ">=16.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "^18.3.3",
"@types/react-transition-group": "^4.4.10",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^9.8.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.8.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"rollup": "^4.19.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.5.4"
},
"keywords": [
"react-intersection-observer",
"intersection",
"lazy",
"lazy-image",
"image",
"loading",
"loadable-image",
"async-image",
"uikit"
]
}