-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "@concarne/react-scroll-fade",
"version": "0.0.1",
"description": "React component for scrolling to images with fade in and out",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"rollup": "rm -rf ./dist && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlbaquerizo/react-scroll-fade.git"
},
"keywords": [
"react",
"scroll",
"fade-in",
"image"
],
"author": "Matthew Baquerizo",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlbaquerizo/react-scroll-fade/issues"
},
"homepage": "https://github.com/mlbaquerizo/react-scroll-fade#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/react": "^17.0.48",
"rollup": "^2.78.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"typescript-plugin-css-modules": "^3.4.0"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
}
}