{
  "name": "@tanstack/devtools-vite",
  "version": "0.8.1",
  "description": "TanStack Vite plugin used to enhance the core devtools with additional functionalities",
  "author": "Tanner Linsley",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/devtools.git",
    "directory": "packages/devtools-vite"
  },
  "homepage": "https://tanstack.com/devtools",
  "bugs": {
    "url": "https://github.com/TanStack/devtools/issues"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/tannerlinsley"
  },
  "keywords": [
    "devtools"
  ],
  "type": "module",
  "types": "dist/esm//index.d.ts",
  "module": "dist/esm/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "intent": "./bin/intent.js"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist/",
    "src",
    "skills",
    "bin"
  ],
  "peerDependencies": {
    "vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "launch-editor": "^2.11.1",
    "magic-string": "^0.30.0",
    "oxc-parser": "^0.120.0",
    "picomatch": "^4.0.3",
    "@tanstack/devtools-client": "0.0.8",
    "@tanstack/devtools-event-bus": "0.4.2"
  },
  "devDependencies": {
    "@types/picomatch": "^4.0.2",
    "happy-dom": "^20.0.0"
  },
  "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",
    "test:build": "publint --strict",
    "build": "vite build"
  }
}