-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "react-native-drag-n-drop-everywhere",
"version": "1.4.8",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"modern": "dist/index.modern.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"tsconfig.json"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "gerwld",
"license": "MIT",
"description": "Scrollable React Native Draglist library that doesn't use Flatlist, which sometimes may cause re-render issues. Designed to work on Web, iOS & Android.",
"keywords": [
"react",
"native",
"drag-n-drop",
"react-native",
"drag",
"dragging"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gerwld/react-native-drag-n-drop-everywhere.git"
},
"devDependencies": {
"@babel/plugin-transform-flow-strip-types": "^7.25.7",
"@babel/preset-flow": "^7.25.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"rollup": "^4.24.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.71.0",
"react-native-gesture-handler": ">=2.20.0",
"react-native-reanimated": ">=3.16.0"
},
"dependencies": {
"tslib": "^2.8.0"
}
}