-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.82 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
68
69
70
{
"name": "zenui-image-react",
"version": "1.0.0",
"description": "Render responsive images with lazy loading and optimized performance using customizable placeholders and skeletons.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react",
"lazy-load",
"image",
"lazy-loading",
"lazy-image-react",
"placeholder",
"skeleton"
],
"author": "Asfak Ahmed",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Asfak00/zenui-image-react.git"
},
"bugs": {
"url": "https://github.com/Asfak00/zenui-image-react/issues"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"prepare": "husky install",
"clean": "rimraf dist"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@babel/runtime": "^7.22.0",
"@rollup/plugin-json": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.0",
"@babel/plugin-transform-runtime": "^7.22.0",
"@babel/preset-env": "^7.22.0",
"@babel/preset-react": "^7.22.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.0",
"prop-types": "^15.8.1",
"rimraf": "^5.0.0",
"rollup": "^3.25.0",
"typescript": "^5.1.0"
}
}