-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
91 lines (91 loc) · 2.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
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
{
"name": "react-pull-to-refresh",
"type": "module",
"version": "2.0.1",
"description": "A React component for pull to refresh on the web.",
"authors": [
"Bryan Eaton"
],
"scripts": {
"play": "cd playground && vite",
"dev": "npm run build --watch",
"build": "tsup src/index.ts --format esm,cjs --dts --external react",
"lint": "eslint src/**/*.ts* --fix --ignore-path .gitignore",
"lint:ts": "tsc --noEmit",
"format": "prettier src/**/*.ts* --write --ignore-path .gitignore",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/bryaneaton13/react-pull-to-refresh.git"
},
"homepage": "https://github.com/bryaneaton13/react-pull-to-refresh",
"bugs": "https://github.com/bryaneaton13/react-pull-to-refresh/issues",
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"tags": [
"react",
"pull-to-refresh",
"refresh",
"web-pull-to-refresh"
],
"keywords": [
"react",
"react-component",
"pull-to-refresh",
"refresh",
"web-pull-to-refresh"
],
"devDependencies": {
"@types/hammerjs": "^2.0.41",
"@types/node": "^18.15.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"bumpp": "^9.0.0",
"eslint": "^8.36.0",
"eslint-config-kentcdodds": "^20.5.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"vite": "^4.2.1"
},
"dependencies": {
"hammerjs": "^2.0.8"
}
}