{
  "name": "@graphty/layout",
  "version": "1.6.1",
  "description": "graph layout algorithms based on networkx",
  "author": "Adam Powers <apowers@ato.ms>",
  "main": "dist/layout.js",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/layout.js",
      "types": "./dist/layout.d.ts"
    }
  },
  "types": "dist/layout.d.ts",
  "files": [
    "dist/",
    "src/",
    "README.md",
    "LICENSE"
  ],
  "directories": {
    "example": "examples"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/graphty-org/graphty-monorepo.git",
    "directory": "layout"
  },
  "keywords": [
    "graph",
    "layout",
    "networkx",
    "network"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/graphty-org/graphty-monorepo/issues"
  },
  "homepage": "https://github.com/graphty-org/graphty-monorepo/tree/master/layout#readme",
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "devDependencies": {
    "@chromatic-com/storybook": "^4.0.0",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@storybook/addon-docs": "^9.0.11",
    "@storybook/html-vite": "^9.0.11",
    "@storybook/test": "^8.6.14",
    "@types/three": "^0.182.0",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "chromatic": "^11.0.0",
    "happy-dom": "^18.0.1",
    "semantic-release": "^24.2.7",
    "storybook": "^9.0.11",
    "three": "^0.182.0",
    "typedoc": "^0.28.15",
    "typedoc-plugin-markdown": "^4.9.0",
    "typedoc-vitepress-theme": "^1.1.2",
    "typescript": "^5.3.3",
    "vite": "^7.0.5",
    "vitepress": "^1.6.3",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "test": "vitest",
    "test:ui": "vitest --ui",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "coverage": "vitest run --coverage",
    "coverage:preview": "npx serve coverage -p 9052",
    "lint": "eslint && tsc --noEmit",
    "typecheck": "tsc --noEmit",
    "build": "tsc",
    "build:bundle": "node scripts/build-bundle.js",
    "build:all": "npm run build && npm run build:bundle",
    "build:gh-pages": "npm run build:bundle && node scripts/build-gh-pages.js",
    "watch": "tsc --watch",
    "dev": "tsc --watch",
    "commit": "cz",
    "serve": "npm run build:bundle && vite",
    "examples": "npm run build:bundle && vite",
    "ready:commit": "npm run build && npm run lint && npm run test:run",
    "docs:api": "typedoc && node scripts/sanitize-api-docs.js",
    "docs:api:watch": "typedoc --watch",
    "docs:dev": "vitepress dev docs",
    "docs:watch": "npm run docs:api && (npm run docs:api:watch & npm run docs:dev & wait)",
    "docs:build": "npm run docs:api && vitepress build docs",
    "docs:preview": "vitepress preview docs",
    "storybook": ". ../.env 2>/dev/null; storybook dev -p ${PORT:-6006} --host ${HOST:-localhost} ${HTTPS_CERT_PATH:+--https --ssl-cert $HTTPS_CERT_PATH --ssl-key $HTTPS_KEY_PATH} --no-open",
    "build-storybook": "storybook build"
  }
}