-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "react-animated-numbers",
"version": "1.0.0",
"description": "Library showing animation of number changes in react.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": "https://github.com/heyman333/react-animated-numbers.git",
"author": "youngsoohan <[email protected]>",
"homepage": "https://optimistic-noyce-cf2473.netlify.app/",
"license": "MIT",
"private": false,
"keywords": [
"react",
"react-native",
"animation",
"animated",
"numbers",
"number",
"spring"
],
"babel": {
"presets": [
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-optional-chaining"
]
},
"scripts": {
"build": "tsc"
},
"bugs": {
"url": "https://github.com/heyman333/react-animated-numbers/issues"
},
"dependencies": {
"motion": "^11.16.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-react": "^7.10.4",
"@types/react": "^19.0.3",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}