-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
108 lines (108 loc) · 2.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-floating-whatsapp",
"version": "5.0.8",
"private": false,
"description": "Simple React Component for adding a floating WhatsApp button to your project.",
"author": {
"name": "awran5",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/awran5/react-floating-whatsapp.git"
},
"bugs": {
"url": "https://github.com/awran5/react-floating-whatsapp/issues"
},
"homepage": "https://react-floating-whatsapp.vercel.app/",
"main": "dist/index.js",
"source": "src/index.tsx",
"engines": {
"node": ">=16"
},
"scripts": {
"clean": "rm -rf dist",
"clean-sb": "rm -rf storybook-static",
"build": "yarn clean && rollup -c --exports auto",
"start": "start-storybook -p 6006",
"log": "auto-changelog -p --template keepachangelog && git add CHANGELOG.md",
"build-sb": "build-storybook && vercel --prod"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-url": "^7.0.0",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"auto-changelog": "^2.4.0",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-scripts": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.8.4"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"whatsapp",
"floating whatsapp button",
"whatsapp button",
"react component",
"react typescript"
],
"tags": [
"react",
"whatsapp",
"floating-whatsapp-button",
"whatsapp-button",
"react-component",
"react-typescript"
],
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {}
}