forked from azuqua/react-dnd-scrollzone
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.84 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
{
"name": "react-dnd-scrolling",
"version": "1.3.10",
"description": "A cross browser solution to scrolling during drag and drop.",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup && cp types/* dist",
"lint": "eslint src",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepare": "in-publish && npm run test && npm run build || not-in-publish"
},
"repository": {
"type": "git",
"url": "https://github.com/TechStark/react-dnd-scrolling"
},
"bugs": {
"url": "http://github.com/TechStark/react-dnd-scrolling/issues"
},
"keywords": [
"react",
"drag",
"drop",
"scroll",
"dnd",
"drag and drop"
],
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "3.x",
"lodash.throttle": "^4.1.1",
"prop-types": "15.x",
"raf": "^3.4.1"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"in-publish": "^2.0.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dom": "^18.2.0",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"react": "16.x || 17.x || 18.x",
"react-dnd": "10.x || 11.x || 14.x || 15.x || 16.x",
"react-dom": "16.x || 17.x || 18.x"
}
}