mirror of
https://github.com/anvaka/ngraph.path.git
synced 2025-12-08 19:55:59 +00:00
48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"name": "ngraph.path",
|
|
"version": "1.6.1",
|
|
"description": "Path finding in a graph",
|
|
"type": "module",
|
|
"main": "dist/ngraph.path.cjs",
|
|
"module": "dist/ngraph.path.es.js",
|
|
"types": "index.d.ts",
|
|
"jsdelivr": "dist/ngraph.path.umd.js",
|
|
"unpkg": "dist/ngraph.path.umd.js",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"coverage": "vitest run --coverage"
|
|
},
|
|
"keywords": [
|
|
"ngraph",
|
|
"path",
|
|
"find",
|
|
"astar",
|
|
"a-star",
|
|
"pathfinding"
|
|
],
|
|
"author": "Andrei Kashcha",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/anvaka/ngraph.path"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"ngraph.graph": "^20.0.0",
|
|
"vite": "^7.1.4",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"import": "./dist/ngraph.path.es.js",
|
|
"require": "./dist/ngraph.path.cjs",
|
|
"default": "./dist/ngraph.path.es.js"
|
|
},
|
|
"./dist/*": "./dist/*"
|
|
},
|
|
"sideEffects": false
|
|
}
|