-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
60 lines (60 loc) · 1.54 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-text-transition",
"version": "3.1.0",
"description": "A React plugin that animates your text when it changes.",
"typings": "lib/index.d.ts",
"main": "lib/index.js",
"jsnext:main": "lib-esm/index.js",
"module": "lib-esm/index.js",
"scripts": {
"build": "tsc && tsc --outDir lib-esm -m es6",
"dev": "webpack serve --progress --mode development --config demos/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WinterCore/react-text-transition.git"
},
"keywords": [
"react",
"text",
"transition",
"animation",
"motion",
"plugin"
],
"author": "WinterCore <hogobbl@gmail.com> (https://www.wintercore.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/WinterCore/react-text-transition/issues"
},
"homepage": "https://github.com/WinterCore/react-text-transition#readme",
"devDependencies": {
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.13",
"@types/react-dom": "^18.0.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-loader": "^4.13.0",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"dependencies": {
"@react-spring/web": "^9.7.2"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"files": [
"lib",
"lib-esm",
"src",
"README.md"
]
}