{
  "name": "@makeswift/controls",
  "version": "0.1.21",
  "license": "MIT",
  "repository": {
    "url": "makeswift/makeswift",
    "directory": "packages/controls"
  },
  "files": [
    "dist"
  ],
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "dependencies": {
    "color": "^3.1.3",
    "css-box-model": "^1.2.1",
    "csstype": "^2.6.5",
    "slate": "0.91.4",
    "ts-pattern": "^5.0.8",
    "uuid": "^9.0.0",
    "zod": "^3.21.4"
  },
  "devDependencies": {
    "@ianvs/prettier-plugin-sort-imports": "^4.3.1",
    "@swc/jest": "^0.2.36",
    "@types/color": "^3.0.2",
    "@types/jest": "^29.5.12",
    "@types/uuid": "^9.0.1",
    "concurrently": "^8.2.2",
    "expect-type": "^0.19.0",
    "jest": "^29.7.0",
    "tsup": "^8.0.2",
    "typescript": "^5.1.6",
    "eslint-config": "0.0.0"
  },
  "scripts": {
    "dev": "concurrently -k 'tsc --watch --preserveWatchOutput' 'tsup --watch'",
    "clean": "rm -rf dist",
    "build": "tsc && tsup",
    "format": "prettier --write .",
    "checkEmptyFiles": "EMPTY=$(find dist -type f -empty); if [ -n \"$EMPTY\" ]; then echo \"Error: Empty files found in dist:\"; echo \"$EMPTY\"; exit 1; else echo \"No empty files in dist\"; fi",
    "test": "jest",
    "test:updateSnapshot": "jest --updateSnapshot",
    "lint": "eslint ."
  }
}