-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.85 KB
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
{
"name": "react-animate-z",
"version": "3.0.1",
"description": "Lightweight React animation library with Animate and AnimateTyping components, built using styled-components.",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"sideEffects": false,
"scripts": {
"clean": "rimraf ./build",
"build": "rollup -c",
"cb": "npm run clean && npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .eslintignore",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/delpikye-v/react-animate.git"
},
"homepage": "https://github.com/delpikye-v/react-animate#readme",
"bugs": {
"url": "https://github.com/delpikye-v/react-animate/issues"
},
"keywords": [
"react",
"animation",
"animate",
"react-animation",
"styled-components",
"motion",
"ui-animation",
"css-animation",
"typing-effect",
"micro-interactions",
"react-animate-z"
],
"author": "Delpi.Kye",
"license": "MIT",
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"styled-components": ">=5.3 || >=6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/react": "^17 || ^18",
"@types/react-dom": "^17 || ^18",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^5.6.2"
}
}