-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.99 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
{
"name": "@mohalla-tech/react-swipeable-wrapper",
"version": "1.1.4",
"description": "Swipeable views wrapper",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ShareChat/react-swipeable-wrapper"
},
"author": "Ashutosh Tanwar <ashutoshtanwar@sharechat.co>",
"bugs": {
"url": "https://github.com/ShareChat/react-swipeable-wrapper/issues"
},
"homepage": "https://github.com/ShareChat/react-swipeable-wrapper#readme",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"scripts": {
"dev:example": "cd example && yarn && yarn dev",
"build": "vite build",
"build:example": "cd example && yarn && yarn upgrade react-swipeable-wrapper && yarn build",
"prepare": "yarn build && yarn build:example",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\"",
"lint": "eslint ./** -c .eslintrc.json --fix --ext js,jsx --cache --quiet --no-error-on-unmatched-pattern",
"size": "size-limit",
"deploy:example": "yarn build:example && gh-pages -d example/dist",
"pretest": "yarn run prettier && yarn run lint && yarn run build"
},
"keywords": [
"react swipe",
"swipe",
"swipeable",
"react"
],
"peerDependencies": {
"react": "^16.0.0 || ^17"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@use-gesture/react": "^10.2.6",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.4.0",
"gh-pages": "^3.2.3",
"prettier": "^2.6.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"size-limit": "^7.0.8",
"vite": "^2.9.0"
},
"dependencies": {},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
}
}