@crstrskp/graph
Version:
High-performance TypeScript graph algorithms library optimized for trading bots and arbitrage detection
62 lines (61 loc) • 1.42 kB
JSON
{
"name": "@crstrskp/graph",
"author": "Jesper Tjørnelund",
"version": "1.1.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",
"user": "^0.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"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"
}
}