{
  "name": "@barefootjs/xyflow",
  "version": "0.37.1",
  "description": "Signal-based xyflow wrapper for BarefootJS",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "unpkg": "./dist/xyflow.browser.min.js",
  "jsdelivr": "./dist/xyflow.browser.min.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "umd": "./dist/xyflow.browser.min.js",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "bun run build:js && bun run build:browser && bun run build:types",
    "build:js": "bun build ./src/index.ts --outdir ./dist --format esm --external '@barefootjs/client' --external '@barefootjs/client/runtime' --external '@barefootjs/client/reactive'",
    "build:browser": "bun build ./src/index.ts --outdir ./dist --entry-naming 'xyflow.browser.min.[ext]' --format esm --minify --external '@barefootjs/client' --external '@barefootjs/client/runtime' --external '@barefootjs/client/reactive'",
    "build:types": "tsgo --emitDeclarationOnly --outDir ./dist",
    "test": "bun test src/ && bun run typecheck:tests",
    "typecheck:tests": "tsgo --noEmit -p src/__tests__/tsconfig.json",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "xyflow",
    "react-flow",
    "graph",
    "node-editor",
    "signals",
    "reactive",
    "barefoot"
  ],
  "author": "kobaken <kentafly88@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/piconic-ai/barefootjs",
    "directory": "packages/xyflow"
  },
  "peerDependencies": {
    "@barefootjs/client": ">=0.2.0",
    "@barefootjs/jsx": ">=0.2.0"
  },
  "dependencies": {
    "@xyflow/system": "^0.0.76"
  },
  "devDependencies": {
    "typescript": "^5.0.0"
  }
}
