chore: bump pathfinding and world-streaming to 1.1.0 (#378)

This commit is contained in:
YHH
2025-12-28 19:36:34 +08:00
committed by GitHub
parent e9ea52d9b3
commit 9f84c2f870
3 changed files with 17 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@esengine/pathfinding",
"version": "1.0.4",
"version": "1.1.0",
"description": "寻路系统 | Pathfinding System - A*, Grid, NavMesh",
"type": "module",
"main": "./dist/index.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@esengine/world-streaming",
"version": "1.0.0",
"version": "1.1.0",
"description": "World streaming and chunk management system for open world games",
"main": "dist/index.js",
"module": "dist/index.js",
@@ -12,6 +12,10 @@
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"module.json"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
@@ -34,9 +38,18 @@
"ecs",
"streaming",
"chunk",
"open-world"
"open-world",
"esengine"
],
"author": "ESEngine",
"license": "MIT",
"private": true
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/esengine/esengine.git",
"directory": "packages/framework/world-streaming"
}
}