{
  "name": "@tanstack/devtools-bundler-core",
  "version": "0.1.3",
  "description": "Framework-agnostic core shared by TanStack devtools bundler plugins",
  "author": "Tanner Linsley",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/devtools.git",
    "directory": "packages/devtools-bundler-core"
  },
  "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"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist/",
    "src"
  ],
  "dependencies": {
    "chalk": "^5.6.2",
    "launch-editor": "^2.14.1",
    "magic-string": "^0.30.0",
    "oxc-parser": "^0.120.0",
    "picomatch": "^4.0.5",
    "@tanstack/devtools-client": "0.0.8",
    "@tanstack/devtools-event-bus": "0.4.3"
  },
  "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"
  }
}