-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 KB
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
{
"name": "react-lazy-elements",
"version": "0.0.51",
"description": "Lazy elements for react",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all clean build:js",
"build:js": "rollup -c",
"clean": "rimraf dist",
"format": "prettier --write 'src/**/*' 'demo/src/**/*'",
"prepare": "npm-run-all clean build",
"start": "npm-run-all --parallel start:js",
"start:js": "rollup -c -w",
"test": "jest --config jest.config.json --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CambrianTech/react-lazy-elements.git"
},
"keywords": [
"Lazy Image",
"Lazy Div"
],
"author": "Cambrian",
"license": "MIT",
"bugs": {
"url": "https://github.com/CambrianTech/react-lazy-elements/issues"
},
"homepage": "https://github.com/CambrianTech/react-lazy-elements#readme",
"dependencies": {
"@researchgate/react-intersection-observer": "^1.3.5",
"@types/node": "^17.0.44"
},
"devDependencies": {
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.75.6",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.7.3"
},
"peerDependencies": {
"@types/react": ">=18.0.12",
"@types/react-dom": ">=18.0.5",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
}