-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "react-swipe-down-refresh",
"keywords": [
"react",
"hooks",
"refresh",
"swipe refresh",
"pull down",
"pull refresh",
"pull-to-refresh"
],
"version": "0.1.1",
"description": "React swipe down to refresh component",
"repository": {
"url": "https://github.com/shettypuneeth/react-swipe-down-refresh",
"type": "git"
},
"author": "Puneeth Shetty (https://puneethshetty.in)",
"license": "MIT",
"scripts": {
"clean": "rm -rf lib",
"bundle": "NODE_ENV=production tsc -p ./tsconfig.json",
"copy-css": "cp src/styles/react-swipe-down-refresh.css lib/",
"build": "yarn clean && yarn bundle && yarn copy-css",
"prepublish": "yarn build"
},
"files": [
"lib/"
],
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@types/node": "^17.0.38",
"@types/react": "^18.0.10",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ts-node": "^10.8.0",
"tslib": "^2.4.0",
"typescript": "^4.7.2"
},
"peerDependencies": {
"react": "^16.8.0"
}
}