{
  "name": "js-network-stats",
  "version": "2.0.0",
  "description": "Lightweight, serverless-friendly network graph statistics calculator with TypeScript support",
  "type": "module",
  "main": "./src/index.js",
  "types": "./types/index.d.ts",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "import": "./src/index.js"
    },
    "./async": {
      "types": "./types/async.d.ts",
      "import": "./src/async.js"
    }
  },
  "files": [
    "src",
    "types",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "test": "vitest run --coverage",
    "test:watch": "vitest",
    "runner": "node ./src/index.runner.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/guinetik/js-network-stats.git"
  },
  "keywords": [
    "graph",
    "network",
    "statistics",
    "centrality",
    "eigenvector",
    "betweenness",
    "clustering",
    "modularity",
    "community-detection",
    "louvain",
    "serverless",
    "lambda",
    "networkx",
    "graph-theory",
    "network-analysis"
  ],
  "author": "guinetik",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/guinetik/js-network-stats/issues"
  },
  "homepage": "https://github.com/guinetik/js-network-stats#readme",
  "dependencies": {
    "jsnetworkx": "^0.3.4"
  },
  "devDependencies": {
    "vitest": "^0.34.6",
    "@vitest/coverage-v8": "^0.34.6"
  }
}
