{
  "name": "@euriklis/ds-architect",
  "version": "0.3.0",
  "module": "./dist/index.js",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "Types",
    "README.md",
    "LICENSE"
  ],
  "license": "MIT",
  "devDependencies": {
    "@types/bun": "latest"
  },
  "scripts": {
    "build": "rm -rf dist && bun build index.ts --outdir dist --target node --minify",
    "types": "tsc -p tsconfig.build.json && find dist -name '*.back.d.ts' -delete",
    "prepare": "npm run build && npm run types"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/VelislavKarastoychev/euriklis-ds-architect.git"
  },
  "keywords": [
    "data structures",
    "queue",
    "doubly linked list",
    "heap",
    "BST",
    "AVL tree",
    "stack",
    "graph algorithms",
    "network algorithms",
    "typescript",
    "graphs",
    "library"
  ],
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "typescript": "^5.8.2"
  },
  "dependencies": {
    "@euriklis/validator-ts": "^1.0.0",
    "uuid": "^11.1.0"
  }
}
