feat(editor): 添加 ECS UI 系统和编辑器更新优化 (#238)
This commit is contained in:
49
packages/ui-editor/package.json
Normal file
49
packages/ui-editor/package.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"name": "@esengine/ui-editor",
|
||||
"version": "1.0.0",
|
||||
"description": "UI editor plugin for ECS Framework Editor",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
"module": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./src/index.ts",
|
||||
"import": "./src/index.ts",
|
||||
"default": "./src/index.ts"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"bin"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"build:watch": "tsc --watch",
|
||||
"clean": "rimraf bin"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/esengine/ecs-framework.git",
|
||||
"directory": "packages/ui-editor"
|
||||
},
|
||||
"keywords": [
|
||||
"ecs",
|
||||
"ui",
|
||||
"editor",
|
||||
"game-engine"
|
||||
],
|
||||
"author": "ESEngine Team",
|
||||
"license": "MIT",
|
||||
"peerDependencies": {
|
||||
"@esengine/ecs-framework": "^2.2.8",
|
||||
"@esengine/editor-core": "workspace:*",
|
||||
"@esengine/ui": "workspace:*",
|
||||
"react": "^18.3.1",
|
||||
"lucide-react": "^0.545.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/react": "^18.3.12",
|
||||
"typescript": "^5.8.3",
|
||||
"rimraf": "^5.0.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user