{
  "name": "@crstrskp/graph",
  "author": "Jesper Tjørnelund",
  "version": "1.0.0",
  "description": "High-performance TypeScript graph algorithms library optimized for trading bots and arbitrage detection",
  "main": "./dist/Graph.js",
  "types": "./dist/Graph.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "clean": "rm -rf dist"
  },
  "devDependencies": {
    "@babel/preset-env": "^7.18.9",
    "@babel/preset-typescript": "^7.18.6",
    "@types/jest": "^29.5.3",
    "babel-jest": "^29.6.2",
    "jest": "^29.6.2",
    "ts-jest": "^29.1.1",
    "typescript": "^5.0.4"
  },
  "directories": {
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/crstrskp/graphDemo.git"
  },
  "keywords": [
    "graph",
    "algorithms", 
    "typescript",
    "trading",
    "arbitrage",
    "dijkstra",
    "bellman-ford",
    "financial",
    "real-time",
    "performance"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/crstrskp/graphDemo/issues"
  },
  "homepage": "https://github.com/crstrskp/graphDemo#readme",
  "engines": {
    "node": ">=14.0.0"
  }
}
