{
  "name": "@react-state-map/core",
  "version": "0.2.0",
  "description": "Static analysis engine for React state flow visualization — parses components, detects prop drilling, context boundaries, and state patterns (useState, Redux, Zustand)",
  "license": "MIT",
  "author": "Olaf Glad",
  "repository": {
    "type": "git",
    "url": "https://github.com/olafglad/react-state-map",
    "directory": "packages/core"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist",
    "test": "node --test --experimental-strip-types src/**/*.test.ts"
  },
  "dependencies": {
    "ts-morph": "^24.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "typescript": "^5.3.0"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md"
  ],
  "keywords": [
    "react",
    "state",
    "static-analysis",
    "typescript",
    "ast",
    "graph",
    "prop-drilling",
    "context",
    "state-management",
    "redux",
    "zustand",
    "component-analysis"
  ]
}
