chore: update pathfinding, add rpc/world-streaming docs, refactor world-streaming location (#376)

This commit is contained in:
YHH
2025-12-28 19:18:28 +08:00
committed by GitHub
parent 838cda91aa
commit 0662b07445
44 changed files with 3850 additions and 165 deletions

View File

@@ -0,0 +1,42 @@
{
"name": "@esengine/world-streaming",
"version": "1.0.0",
"description": "World streaming and chunk management system for open world games",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"dependencies": {
"@esengine/ecs-framework": "workspace:*",
"@esengine/ecs-framework-math": "workspace:*",
"@esengine/spatial": "workspace:*"
},
"devDependencies": {
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@esengine/ecs-framework": "workspace:*",
"@esengine/ecs-framework-math": "workspace:*",
"@esengine/spatial": "workspace:*"
},
"keywords": [
"ecs",
"streaming",
"chunk",
"open-world"
],
"author": "ESEngine",
"license": "MIT",
"private": true
}