{
  "name": "@dnd-kit-vue/utilities",
  "version": "0.1.2",
  "description": "Internal utilities to bee shared between `@dnd-kit` packages",
  "author": "Claudéric Demers",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rashagu/dnd-kit-vue.git",
    "directory": "packages/utilities"
  },
  "main": "dist/index.mjs",
  "module": "dist/index.mjs",
  "types": "dist/types/index.d.ts",
  "files": [
    "README.md",
    "CHANGELOG.md",
    "LICENSE",
    "dist"
  ],
  "peerDependencies": {
    "vue": "^3.4.27",
    "lodash": "^4.17.21"
  },
  "devDependencies": {
    "@types/lodash": "^4.17.1",
    "@types/node": "^20.12.11",
    "@vitejs/plugin-vue": "^5.0.5",
    "@vitejs/plugin-vue-jsx": "^4.0.0",
    "rimraf": "^3.0.2",
    "typescript": "^5.5.1-rc",
    "vite": "^5.2.13",
    "vue-tsc": "^2.0.21"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "vite",
    "rm:dist": "rimraf dist",
    "tsc": "tsc -b --force",
    "build": "pnpm rm:dist && vite build && tsc -b --force",
    "preview": "vite preview"
  }
}