{
  "name": "dnd-core",
  "version": "15.1.1",
  "description": "Drag and drop sans the GUI",
  "license": "MIT",
  "exports": {
    "import": "./dist/esm/index.mjs",
    "require": "./dist/cjs/index.js",
    "types": "./dist/types/index.d.ts"
  },
  "main": "dist/cjs/index.js",
  "types": "dist/types/index.d.ts",
  "sideEffects": false,
  "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"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/react-dnd/react-dnd.git"
  },
  "dependencies": {
    "@react-dnd/asap": "4.0.0",
    "@react-dnd/invariant": "3.0.0",
    "redux": "^4.1.1"
  },
  "devDependencies": {
    "@swc/cli": "^0.1.55",
    "@swc/core": "^1.2.136",
    "@types/jest": "^27.4.0",
    "@types/setimmediate": "^1.0.2",
    "npm-run-all": "^4.1.5",
    "react-dnd-test-backend": "portal:../backend-test",
    "setimmediate": "^1.0.5",
    "shx": "^0.3.4",
    "typescript": "^4.5.5"
  }
}