-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
124 lines (124 loc) · 3.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "easy-magnify",
"version": "1.1.4",
"description": "Everything you need for magnifying images",
"author": "BatchNepal Consultancy <[email protected]>",
"homepage": "https://easy-magnify.batchnepal.com",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/ChetSocio/easy-magnify.git"
},
"funding": {
"type": "custom",
"url": "https://www.batchnepal.com/donate"
},
"sponsor": {
"url": "https://www.batchnepal.com/donate"
},
"keywords": [
"image-zoom",
"image",
"react",
"photo",
"lens",
"ecommerce",
"magnify",
"magnifier",
"amazon",
"react-image-magnify",
"easy-magnify",
"batchnepal"
],
"scripts": {
"analyze": "npm run stats && webpack-bundle-analyzer stats.json",
"build-umd": "webpack --mode=production",
"build-cjs": "cross-env BABEL_ENV=cjs babel src --out-dir dist",
"build-es": "babel ./src --extensions .ts,.tsx --out-dir dist/es",
"build": "rimraf dist && tsup",
"build-watch": "cross-env BABEL_ENV=cjs babel --watch src --out-dir dist",
"stats": "webpack --profile --json > stats.json",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o docs",
"serve-storybook": "serve storybook-static",
"rollup": "rimraf dist && rollup -c"
},
"dependencies": {
"@types/object-assign": "^4.0.33",
"object-assign": "^4.1.1",
"react-required-if": "^1.0.3"
},
"devDependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-modules-commonjs": "^7.24.6",
"@babel/plugin-transform-react-jsx": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@chromatic-com/storybook": "^1.3.5",
"@storybook/addon-docs": "^8.1.5",
"@storybook/addon-essentials": "^8.0.10",
"@storybook/addon-interactions": "^8.0.10",
"@storybook/addon-links": "^8.0.10",
"@storybook/addon-onboarding": "^8.0.10",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-themes": "^8.1.5",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/blocks": "^8.0.10",
"@storybook/react": "^8.0.10",
"@storybook/react-webpack5": "^8.0.10",
"@storybook/test": "^8.0.10",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/prop-types": "^15.7.12",
"@types/react": "^18.1.0",
"@types/react-dom": "^18.1.0",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"enzyme": "^3.11.0",
"eslint-plugin-chai-friendly": "^0.8.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"storybook": "^8.0.10",
"storybook-dark-mode": "^4.0.1",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}