-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 944 Bytes
/
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
{
"name": "react-animated-heart",
"version": "0.0.8",
"description": "Simple Twitter-like animated heart",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"private": false,
"repository": "[email protected]:ShaunLWM/react-animated-heart.git",
"author": "ShaunLWM",
"license": "MIT",
"keywords": [
"twitter-heart",
"twitter-animated-heart",
"like button",
"heart button",
"heart",
"exploding button"
],
"dependencies": {
"goober": "^2.1.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.7.4"
},
"scripts": {
"rollup": "rollup -c",
"prepublishOnly": "npm run rollup"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/react": "^18.0.38",
"rollup": "^2.60.0",
"rollup-plugin-dts": "^4.0.1",
"tslib": "^2.5.0"
}
}