{
  "name": "@chamaeleon/core",
  "description": "Core Chamaeleon page builder framework",
  "private": false,
  "version": "0.16.0",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "chameleon",
    "chamaeleon",
    "page builder",
    "editor"
  ],
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "module": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "peerDependencies": {
    "react": "^18.2.0",
    "react-dom": "^18.2.0"
  },
  "dependencies": {
    "@dnd-kit/core": "6.0.8",
    "@dnd-kit/sortable": "7.0.2",
    "@dnd-kit/utilities": "3.2.1",
    "@floating-ui/dom": "^1.5.3",
    "immer": "^10.0.2",
    "nanoid": "4.0.2",
    "@chamaeleon/hooks": "^0.0.4",
    "@chamaeleon/uikit": "^0.3.0"
  },
  "devDependencies": {
    "@types/react": "^18.2.21",
    "@types/react-dom": "^18.2.7",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "tsup": "^7.2.0",
    "tailwind-config": "0.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lFandoriNl/chamaeleon",
    "directory": "packages/core"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
    "check-types": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -r dist && rm -r .turbo"
  }
}