@datastructures/graph
Version:
A minimal functional typed implementation of Graph 📈📉
32 lines • 727 B
JSON
{
"name": "@datastructures/graph",
"version": "0.0.1",
"description": "A minimal functional typed implementation of Graph 📈📉",
"main": "dist/index.js",
"unpkg": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:yowainwright/datastructures.git"
},
"keywords": [
"graph data structure",
"graph-data-structure",
"graph"
],
"author": "Jeff Wainwright <yowainwright@gmail.com> (https://jeffry.in)",
"license": "MIT",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"tsc": "tsc --noEmit"
}
}