-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "reanimated-drag-resize",
"version": "0.0.4",
"description": "Draggable and Resizable component running at 60FPS using React Native Reanimated v2",
"files": [
"dist"
],
"main": "dist/Drag.js",
"types": "dist/Drag.d.ts",
"scripts": {
"build": "tsc && cp src/resize.png dist/resize.png"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fateh999/reanimated-drag-resize.git"
},
"keywords": [
"react native",
"react",
"drag",
"resize",
"reanimated"
],
"author": "Fateh Farooqui",
"license": "MIT",
"bugs": {
"url": "https://github.com/fateh999/reanimated-drag-resize/issues"
},
"homepage": "https://github.com/fateh999/reanimated-drag-resize#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-native": "*",
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-reanimated": "*",
"typescript": "*"
}
}