-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.02 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
{
"name": "@elham-en/drag-n-drop-engine",
"version": "1.0.4",
"description": "React Native drag-and-drop engine for reordering and moving items across lists. Built on Reanimated 4, Gesture Handler, and react-native-worklets.",
"main": "./lib/commonjs/index.js",
"module": "./lib/module/index.js",
"types": "./lib/typescript/commonjs/src/index.d.ts",
"react-native": "./src/index.ts",
"exports": {
".": {
"source": "./src/index.ts",
"import": {
"types": "./lib/typescript/module/src/index.d.ts",
"default": "./lib/module/index.js"
},
"require": {
"types": "./lib/typescript/commonjs/src/index.d.ts",
"default": "./lib/commonjs/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"build": "bob build",
"prepare": "bob build",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"react-native",
"drag-and-drop",
"reanimated",
"gesture-handler",
"reorder",
"new-architecture"
],
"license": "MIT",
"author": "Elham Najeebullah",
"repository": {
"type": "git",
"url": "git+https://github.com/Elham-EN/new-RN-dragNdrop-engine.git"
},
"peerDependencies": {
"expo-haptics": ">=15.0.0",
"react": ">=19.0.0",
"react-native": ">=0.76.0",
"react-native-gesture-handler": ">=2.20.0",
"react-native-reanimated": ">=4.0.0",
"react-native-worklets": ">=0.4.0"
},
"devDependencies": {
"@types/react": "~19.1.0",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-builder-bob": "^0.40.0",
"typescript": "~5.9.2"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
["commonjs", { "esm": true }],
["module", { "esm": true }],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}