-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.83 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.83 KB
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
{
"name": "swipe-to-dismiss",
"version": "1.0.0",
"description": "A React Native component that allows dismissing content with swipe or tap gestures, built with gesture-handler and reanimated",
"main": "dist/index.js",
"module": "dist/index.js",
"react-native": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"react-native": "./dist/index.js",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"prepare": "npm run build",
"clean": "rm -rf dist"
},
"keywords": [
"react-native",
"swipe",
"tap",
"dismiss",
"gesture",
"component",
"react-native-gesture-handler",
"react-native-reanimated",
"swipe-to-delete",
"card",
"animation",
"ios",
"android"
],
"author": {
"name": "Bar Shaya",
"url": "https://github.com/barshaya-att"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/att/SwipeToDismiss.git"
},
"bugs": {
"url": "https://github.com/att/SwipeToDismiss/issues"
},
"homepage": "https://github.com/att/SwipeToDismiss#readme",
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0",
"react-native-gesture-handler": ">=2.0.0",
"react-native-reanimated": ">=3.0.0",
"react-native-svg": ">=13.4.0"
},
"peerDependenciesMeta": {
"react-native-svg": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.14",
"@types/react-native": "^0.72.0",
"typescript": "^5.9.2"
},
"publishConfig": {
"access": "public"
},
"private": false
}