-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "react-animate-onview",
"version": "0.1.2",
"type": "module",
"description": "A lightweight React component for adding smooth, customizable animations to elements as they enter the viewport.",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c rollup.config.mjs",
"test": "jest",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"framer-motion": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.0",
"framer-motion": "^11.0.0",
"jest": "^29.0.0",
"picomatch": "^4.0.2",
"react": "^18.2.0",
"rollup": "^3.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"react",
"animation",
"scroll",
"intersection-observer",
"framer-motion",
"onview",
"reveal",
"fade-in",
"zoom-in",
"rotate-in"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/randilt/react-animate-onview.git"
},
"bugs": {
"url": "https://github.com/randilt/react-animate-onview/issues"
},
"homepage": "https://github.com/randilt/react-animate-onview#readme",
"engines": {
"node": ">=14.0.0"
}
}