{
  "name": "@haragei/dag",
  "version": "1.1.0",
  "author": "Aleksandar Ružičić",
  "license": "MIT",
  "description": "A Directed Acyclic Graph (DAG) library with online cycle detection and topological ordering.",
  "keywords": [
    "dag",
    "graph",
    "cycle detection",
    "topological ordering",
    "toposort",
    "task scheduling"
  ],
  "homepage": "https://github.com/haragei-dev/dag",
  "repository": "github:haragei-dev/dag",
  "bugs": {
    "url": "https://github.com/haragei-dev/dag/issues"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    "require": {
      "types": "./dist/index.d.cts",
      "default": "./dist/index.cjs"
    },
    "import": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "files": [
    "dist"
  ]
}