graph-by-ivan-tulaev
Version:
Graph library for traversing and processing any directional graphs.
49 lines (48 loc) • 1.06 kB
JSON
{
"name": "graph-by-ivan-tulaev",
"version": "1.0.0-alpha.2",
"description": "Graph library for traversing and processing any directional graphs.",
"private": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IvanTulaev/graph.git"
},
"keywords": [
"graph",
"dfs",
"bfs",
"traversing"
],
"author": {
"name": "Ivan Tulaev",
"url": "https://boosty.to/tulaev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/IvanTulaev/graph/issues"
},
"homepage": "https://github.com/IvanTulaev/graph#readme",
"devDependencies": {
"@types/node": "^22.13.9",
"rollup-plugin-license": "^3.6.0",
"typescript": "~5.7.2",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3"
}
}