-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
67 lines (67 loc) · 1.76 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
63
64
65
66
67
{
"name": "react-lazy-load",
"version": "4.0.1",
"description": "Simple lazy loading component built with react",
"type": "module",
"main": "./dist/LazyLoad.umd.cjs",
"module": "./dist/LazyLoad.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/LazyLoad.js",
"require": "./dist/LazyLoad.umd.cjs"
}
},
"scripts": {
"build": "npx vite build",
"clean": "rimraf lib dist",
"lint": "eslint src/LazyLoad.tsx",
"prepublish": "npm run clean && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/loktar00/react-lazy-load.git"
},
"files": [
"dist",
"lib"
],
"keywords": [
"react",
"reactjs",
"react-component",
"load",
"lazy"
],
"author": "Jason Brown <loktar00@gmail.com> (https://twitter.com/loktar00)",
"contributors": [
"Sergey Laptev <iamsergeylaptev@gmail.com> (https://twitter.com/iamsergeylaptev)"
],
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.184",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vite-plugin-dts": "^1.4.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}