@esengine/pathfinding
Version:
寻路算法库,支持A*、广度优先等算法,适用于Cocos Creator、Laya等游戏引擎
53 lines (51 loc) • 1.27 kB
JSON
{
"name": "@esengine/pathfinding",
"version": "1.0.1",
"description": "寻路算法库,支持A*、广度优先等算法,适用于Cocos Creator、Laya等游戏引擎",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"keywords": [
"pathfinding",
"astar",
"a-star",
"algorithm",
"game",
"cocos",
"laya",
"typescript",
"navigation",
"grid"
],
"directories": {
"lib": "lib"
},
"scripts": {
"test": "mocha --recursive --reporter tap --growl",
"eslint": "eslint src --ext .ts",
"build": "gulp build",
"dev": "gulp buildJs"
},
"author": "yhh",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"browserify": "^17.0.0",
"del": "^8.0.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-inject-string": "^1.1.2",
"gulp-string-replace": "^1.1.2",
"gulp-terser": "^2.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"tsify": "^5.0.4",
"typedoc": "^0.25.0",
"typescript": "^4.9.5",
"vinyl-source-stream": "^2.0.0",
"watchify": "^4.0.0"
},
"dependencies": {
"@esengine/ecs-framework": "^2.0.5"
}
}