-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "@wcdw3/lazy-render",
"version": "1.0.4",
"description": "uses react-intersection-observer to render components when they appear on the screen.",
"scripts": {
"clean": "rm -rf ./dist",
"build": "rollup -c",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wcdw3/LazyRender.git"
},
"keywords": [
"react",
"intersection-observer",
"lazy-render",
"lazy",
"render"
],
"author": "wes5510 <wes5510@icloud.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wcdw3/LazyRender/issues"
},
"homepage": "https://github.com/wcdw3/LazyRender#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^18.0.28",
"react": "^18.2.0",
"react-intersection-observer": "^9.4.3",
"rollup": "^3.17.3",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^18.0.28",
"react-intersection-observer": "^9.4.2"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}