62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "@esengine/pathfinding",
|
|
"version": "12.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"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"build:watch": "tsup --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"clean": "rimraf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@esengine/ecs-framework": "workspace:*",
|
|
"@esengine/ecs-framework-math": "workspace:*",
|
|
"@esengine/blueprint": "workspace:*",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.8.0",
|
|
"vitest": "^2.1.9"
|
|
},
|
|
"peerDependencies": {
|
|
"@esengine/ecs-framework": "workspace:*",
|
|
"@esengine/ecs-framework-math": "workspace:*",
|
|
"@esengine/blueprint": "workspace:*"
|
|
},
|
|
"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"
|
|
]
|
|
}
|