{
  "name": "@tanstack/pacer-devtools",
  "version": "1.3.1",
  "description": "Devtools for Pacer.",
  "author": "Tanner Linsley",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/pacer.git",
    "directory": "packages/pacer-devtools"
  },
  "homepage": "https://tanstack.com/pacer",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/tannerlinsley"
  },
  "keywords": [
    "debounce",
    "throttle",
    "rate-limit",
    "queuer",
    "queue",
    "pacer"
  ],
  "type": "module",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "workerd": {
        "types": "./dist/index.d.ts",
        "import": "./dist/server.js"
      },
      "browser": {
        "types": "./dist/index.d.ts",
        "import": "./dist/index.js"
      },
      "node": {
        "types": "./dist/index.d.ts",
        "import": "./dist/server.js"
      },
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./production": {
      "workerd": {
        "types": "./dist/production/index.d.ts",
        "import": "./dist/production/server.js"
      },
      "browser": {
        "types": "./dist/production/index.d.ts",
        "import": "./dist/production/index.js"
      },
      "node": {
        "types": "./dist/production/index.d.ts",
        "import": "./dist/production/server.js"
      },
      "types": "./dist/production/index.d.ts",
      "import": "./dist/production/index.js"
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist/",
    "src"
  ],
  "peerDependencies": {
    "@tanstack/pacer": ">=0.16.4"
  },
  "dependencies": {
    "@tanstack/devtools-ui": "0.5.2",
    "@tanstack/devtools-utils": "^0.5.0",
    "@tanstack/solid-store": "^0.11.0",
    "clsx": "^2.1.1",
    "csstype": "^3.2.3",
    "dayjs": "^1.11.20",
    "goober": "^2.1.19",
    "solid-js": "^1.9.12"
  },
  "devDependencies": {
    "rolldown-plugin-solid": "^0.2.1",
    "tsdown": "^0.22.0",
    "vite-plugin-solid": "^2.11.12"
  },
  "scripts": {
    "clean": "premove ./build ./dist",
    "lint:fix": "eslint ./src --fix",
    "test:eslint": "eslint ./src",
    "test:lib": "vitest",
    "test:lib:dev": "pnpm test:lib --watch",
    "test:types": "tsc",
    "build": "tsdown"
  }
}