UNPKG

@esengine/pathfinding

Version:

寻路系统 | Pathfinding System - A*, Grid, NavMesh

61 lines 1.37 kB
{ "name": "@esengine/pathfinding", "version": "7.0.0", "description": "寻路系统 | Pathfinding System - A*, Grid, NavMesh", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist", "module.json" ], "devDependencies": { "tsup": "^8.0.0", "typescript": "^5.8.0", "vitest": "^2.1.9", "@esengine/ecs-framework": "2.7.1", "@esengine/ecs-framework-math": "1.0.5", "@esengine/blueprint": "4.3.0" }, "peerDependencies": { "@esengine/ecs-framework": "2.7.1", "@esengine/ecs-framework-math": "1.0.5", "@esengine/blueprint": "4.3.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "https://github.com/esengine/esengine.git", "directory": "packages/framework/pathfinding" }, "keywords": [ "ecs", "pathfinding", "astar", "a-star", "navmesh", "navigation", "game-ai", "cocos", "laya", "esengine" ], "scripts": { "build": "tsup", "build:watch": "tsup --watch", "type-check": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "clean": "rimraf dist" } }