navmesh
Version:
A library for fast pathfinding using navigation meshes in JS
57 lines (56 loc) • 1.43 kB
JSON
{
"name": "navmesh",
"version": "2.3.1",
"description": "A library for fast pathfinding using navigation meshes in JS",
"main": "dist/navmesh.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"test": "jest",
"tsc": "tsc",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"core-js": "3",
"javascript-astar": "github:mikewesthad/javascript-astar"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@types/jest": "^26.0.23",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.29.0",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikewesthad/phaser-navmesh-plugin.git"
},
"keywords": [
"path finding",
"navigation mesh",
"a*"
],
"author": "Michael Hadley",
"contributors": [
"Rex Twedt"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mikewesthad/phaser-navmesh-plugin/issues"
},
"homepage": "https://github.com/mikewesthad/phaser-navmesh-plugin#readme",
"gitHead": "03190dcb4352d0d39c7e72f5d1af4b10dfb4f705"
}