-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
122 lines (122 loc) · 3.92 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
{
"name": "react-medium-image-zoom",
"version": "5.2.13",
"license": "BSD-3-Clause",
"description": "Accessible medium.com-style image zoom for React",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./dist/styles.css": "./dist/styles.css"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rpearce/react-medium-image-zoom.git"
},
"homepage": "https://github.com/rpearce/react-medium-image-zoom",
"bugs": "https://github.com/rpearce/react-medium-image-zoom/issues",
"author": "Robert Pearce <[email protected]> (https://robertwpearce.com)",
"contributors": [
"Robert Pearce <[email protected]> (https://robertwpearce.com)",
"Cameron Bothner (https://github.com/cbothner)",
"ismay <[email protected]> (https://www.ismaywolff.nl)",
"Jeremy Bini <[email protected]> (https://jbini.com)",
"Josh Sloat (http://www.joshsloat.com)",
"Kaycee Ingram <[email protected]> (https://github.com/HippoDippo)",
"Ludwig Frank (https://github.com/ludwigfrank)",
"Rahul Gaba <[email protected]> (http://rahulgaba.com)",
"Spencer Davis (https://github.com/spencerfdavis)",
"dnlnvl (https://github.com/dnlnvl)",
"Douglas Galdino <[email protected]> (https://dougg0k.js.org)",
"Sun Knudsen (https://sunknudsen.com)",
"Youngrok Kim <[email protected]> (https://rokoroku.github.io)",
"Josh-Cena <[email protected]> (https://joshcena.com)",
"Yida Zhang <[email protected]>",
"eych",
"tshmieldev",
"David Edler (https://github.com/edlerd)"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/rpearce"
}
],
"keywords": [
"react",
"medium",
"image",
"zoom",
"image-zoom",
"modal",
"react-component"
],
"tags": [
"react",
"medium",
"image",
"zoom",
"image-zoom",
"modal",
"react-component"
],
"sideEffects": [
"**/*.css"
],
"files": [
"LICENSE",
"dist/"
],
"scripts": {
"build": "rm -rf ./dist && rollup -c rollup.config.js && cp ./source/styles.css ./dist/styles.css",
"build:docs": "rm -rf ./docs && mkdir ./docs && storybook build --quiet -o docs",
"changeset": "changeset",
"ci": "concurrently npm:lint npm:build npm:build:docs",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"lint": "eslint .",
"prepack": "concurrently npm:lint npm:build",
"release": "changeset publish",
"start": "NODE_OPTIONS=--openssl-legacy-provider storybook dev -p 6006",
"storybook": "storybook dev -p 6006"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@rollup/plugin-typescript": "^12.1.2",
"@storybook/addon-a11y": "^8.5.0",
"@storybook/addon-docs": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-viewport": "^8.5.0",
"@storybook/addon-webpack5-compiler-swc": "^2.0.0",
"@storybook/react": "^8.5.0",
"@storybook/react-webpack5": "^8.5.0",
"@storybook/test": "^8.2.1",
"@storybook/test-runner": "^0.21.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"all-contributors-cli": "^6.26.1",
"concurrently": "^9.1.2",
"eslint": "^9.18.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "^29.7.0",
"neostandard": "^0.12.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.30.1",
"rollup-plugin-dts": "^6.1.1",
"storybook": "^8.5.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}