{
  "name": "@patternmode/stacksheet",
  "version": "3.0.3",
  "private": false,
  "description": "Typed, animated sheet stack system. Zustand store + Motion animations with Apple-style depth stacking.",
  "keywords": [
    "animation",
    "drawer",
    "modal",
    "motion",
    "react",
    "sheet",
    "stack",
    "zustand"
  ],
  "homepage": "https://github.com/howells/patternmode/tree/main/packages/stacksheet#readme",
  "bugs": {
    "url": "https://github.com/howells/patternmode/issues"
  },
  "license": "MIT",
  "author": "Daniel Howells",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/howells/patternmode.git",
    "directory": "packages/stacksheet"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "sideEffects": [
    "**/*.css"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.mjs"
    },
    "./styles.css": "./dist/styles.css",
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@base-ui/react": "^1.6.0",
    "focus-trap-react": "^12.0.2",
    "react-remove-scroll": "^2.7.2",
    "zustand": "^5.0.13",
    "@howells/motion": "0.2.0",
    "@patternmode/system": "0.7.1"
  },
  "devDependencies": {
    "@howells/lint": "^0.5.0",
    "@howells/typescript-config": "^0.1.6",
    "@tailwindcss/cli": "^4.3.0",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@testing-library/user-event": "^14.6.1",
    "@types/react": "^19.2.17",
    "@types/react-dom": "^19.2.3",
    "concurrently": "^9.2.1",
    "jsdom": "^29.1.1",
    "motion": "^12.40.0",
    "react": "^19.2.7",
    "react-dom": "^19.2.7",
    "tailwindcss": "^4.3.0",
    "tsdown": "^0.22.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  },
  "peerDependencies": {
    "motion": "^12.40.0",
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsdown && tsc --emitDeclarationOnly --declaration --declarationMap --outDir dist --noEmit false && pnpm build:styles",
    "build:styles": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
    "clean": "rm -rf dist .turbo",
    "dev": "concurrently \"pnpm dev:js\" \"pnpm dev:types\" \"pnpm dev:styles\"",
    "dev:js": "tsdown --watch",
    "dev:styles": "tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch",
    "dev:types": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir dist --noEmit false --watch --preserveWatchOutput",
    "lint": "howells-check .",
    "lint:fix": "howells-fix .",
    "test": "vitest run",
    "typecheck": "tsc --noEmit"
  }
}