* refactor(engine): 重构2D渲染管线坐标系统 * feat(engine): 完善2D渲染管线和编辑器视口功能 * feat(editor): 实现Viewport变换工具系统 * feat(editor): 优化Inspector渲染性能并修复Gizmo变换工具显示 * feat(editor): 实现Run on Device移动预览功能 * feat(editor): 添加组件属性控制和依赖关系系统 * feat(editor): 实现动画预览功能和优化SpriteAnimator编辑器 * feat(editor): 修复SpriteAnimator动画预览功能并迁移CI到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(ci): 迁移项目到pnpm并修复CI构建问题 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 移除 network 相关包 * chore: 移除 network 相关包
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "@esengine/behavior-tree-editor",
|
|
"version": "1.0.0",
|
|
"description": "Behavior Tree Editor Plugin for ECS Framework",
|
|
"type": "module",
|
|
"main": "dist/index.esm.js",
|
|
"module": "dist/index.esm.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"clean": "rimraf bin dist tsconfig.tsbuildinfo",
|
|
"prebuild": "npm run clean",
|
|
"build": "npm run build:tsc && npm run copy:css && npm run build:rollup",
|
|
"build:tsc": "tsc",
|
|
"copy:css": "node scripts/copy-css.js",
|
|
"build:rollup": "rollup -c",
|
|
"dev": "rollup -c -w"
|
|
},
|
|
"keywords": [
|
|
"ecs",
|
|
"behavior-tree",
|
|
"editor",
|
|
"plugin"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@esengine/behavior-tree": "workspace:*",
|
|
"@esengine/ecs-framework": "workspace:*",
|
|
"@esengine/editor-core": "workspace:*",
|
|
"@rollup/plugin-commonjs": "^28.0.1",
|
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
"@types/react": "^18.3.18",
|
|
"lucide-react": "^0.469.0",
|
|
"react": "^18.3.1",
|
|
"rimraf": "^6.0.1",
|
|
"rollup": "^4.28.1",
|
|
"rollup-plugin-copy": "^3.5.0",
|
|
"rollup-plugin-dts": "^6.1.1",
|
|
"rollup-plugin-postcss": "^4.0.2",
|
|
"typescript": "^5.8.2",
|
|
"zustand": "^5.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@esengine/behavior-tree": "*",
|
|
"@esengine/ecs-framework": "*",
|
|
"@esengine/editor-core": "*",
|
|
"@tauri-apps/api": "*",
|
|
"@tauri-apps/plugin-dialog": "*",
|
|
"@tauri-apps/plugin-http": "*",
|
|
"lucide-react": "^0.469.0",
|
|
"react": "^18.3.1",
|
|
"tsyringe": "*",
|
|
"zustand": "^5.0.2"
|
|
},
|
|
"dependencies": {
|
|
"mobx": "^6.15.0",
|
|
"mobx-react-lite": "^4.1.1"
|
|
}
|
|
}
|