{
  "name": "react-dnd",
  "version": "15.1.1",
  "description": "Drag and Drop for React",
  "main": "dist/cjs/index.js",
  "types": "dist/types/index.d.ts",
  "exports": {
    "import": "./dist/esm/index.mjs",
    "require": "./dist/cjs/index.js",
    "types": "./dist/types/index.d.ts"
  },
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/react-dnd/react-dnd.git"
  },
  "license": "MIT",
  "scripts": {
    "clean": "shx rm -rf dist/",
    "build_types": "tsc -b .",
    "build_esm": "swc -C module.type=es6 -d dist/esm src/",
    "build_cjs": "swc -C module.type=commonjs -d dist/cjs src/",
    "esm_hack": "node ../../scripts/esmify.mjs",
    "build": "run-s build_types build_esm build_cjs esm_hack"
  },
  "dependencies": {
    "@react-dnd/invariant": "3.0.0",
    "@react-dnd/shallowequal": "3.0.0",
    "dnd-core": "15.1.1",
    "fast-deep-equal": "^3.1.3",
    "hoist-non-react-statics": "^3.3.2"
  },
  "devDependencies": {
    "@swc/cli": "^0.1.55",
    "@swc/core": "^1.2.136",
    "@testing-library/react": "^12.1.2",
    "@types/hoist-non-react-statics": "^3.3.1",
    "@types/jest": "^27.4.0",
    "@types/node": "^14.17.19",
    "@types/react": "^17.0.38",
    "@types/react-dom": "^17.0.11",
    "npm-run-all": "^4.1.5",
    "react": "^17.0.2",
    "react-dnd-test-backend": "portal:../backend-test",
    "react-dnd-test-utils": "portal:../test-utils",
    "react-dom": "^17.0.2",
    "shx": "^0.3.4",
    "typescript": "^4.5.5"
  },
  "peerDependencies": {
    "@types/hoist-non-react-statics": ">= 3.3.1",
    "@types/node": ">= 12",
    "@types/react": ">= 16",
    "react": ">= 16.14"
  },
  "peerDependenciesMeta": {
    "@types/hoist-non-react-statics": {
      "optional": true
    },
    "@types/node": {
      "optional": true
    },
    "@types/react": {
      "optional": true
    }
  }
}