diff --git a/.changeset/world-streaming-refactor.md b/.changeset/world-streaming-refactor.md deleted file mode 100644 index bf534f66..00000000 --- a/.changeset/world-streaming-refactor.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@esengine/world-streaming": minor ---- - -refactor: move to framework folder and remove engine-core dependency - -- Move from packages/streaming to packages/framework -- Replace TransformComponent with IPositionable interface from @esengine/spatial -- StreamingAnchorComponent now implements IPositionable with x/y properties -- Remove IRuntimeModule dependency, use standalone helper class -- Add IWorldStreamingSetupOptions for configuration diff --git a/packages/framework/pathfinding/package.json b/packages/framework/pathfinding/package.json index c33c36c4..41a68410 100644 --- a/packages/framework/pathfinding/package.json +++ b/packages/framework/pathfinding/package.json @@ -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", diff --git a/packages/framework/world-streaming/package.json b/packages/framework/world-streaming/package.json index 856489de..99928e5d 100644 --- a/packages/framework/world-streaming/package.json +++ b/packages/framework/world-streaming/package.json @@ -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" + } }