{
  "name": "react-dnd-html5-backend",
  "version": "15.1.2",
  "description": "HTML5 backend for React DnD",
  "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,
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/react-dnd/react-dnd.git"
  },
  "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": {
    "dnd-core": "15.1.1"
  },
  "devDependencies": {
    "@swc/cli": "^0.1.55",
    "@swc/core": "^1.2.136",
    "@types/jest": "^27.4.0",
    "npm-run-all": "^4.1.5",
    "shx": "^0.3.4",
    "typescript": "^4.5.5"
  }
}