-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.16 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
{
"name": "react-native-reanimated-dnd",
"version": "2.0.0",
"description": "A powerful drag-and-drop library for React Native using Reanimated 4 and Worklets",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"workspaces": [
"example-app"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"default": "./lib/index.js"
}
},
"sideEffects": false,
"scripts": {
"build": "tsc && npm run minify",
"build:safe": "tsc",
"build:watch": "tsc --watch",
"build:clean": "rm -rf lib && npm run build",
"build:clean:safe": "rm -rf lib && npm run build:safe",
"minify": "node scripts/build.js",
"prepublishOnly": "npm run build:clean",
"type-check": "tsc --noEmit",
"type-check:example": "npm run type-check --workspace example-app",
"doctor:example": "npm run doctor --workspace example-app",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\" --ignore-path .prettierignore"
},
"keywords": [
"react-native",
"drag-and-drop",
"reanimated",
"sortable",
"dnd",
"gesture-handler"
],
"author": "Vishesh Raheja <github.com/entropyconquers>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/entropyconquers/react-native-reanimated-dnd.git"
},
"homepage": "https://reanimated-dnd-docs.vercel.app/",
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.80.0",
"react-native-gesture-handler": ">=2.28.0",
"react-native-reanimated": ">=4.2.0",
"react-native-worklets": ">=0.7.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "~19.2.10",
"prettier": "^3.5.3",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-gesture-handler": "~2.30.0",
"react-native-reanimated": "4.2.1",
"react-native-worklets": "0.7.2",
"terser": "^5.36.0",
"typescript": "~5.9.2"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"README.md",
"LICENSE"
]
}