* docs: add editor-app README with setup instructions * docs: add separate EN/CN editor setup guides * fix(editor): fix build errors and refactor behavior-tree architecture - Fix fairygui-editor tsconfig extends path and add missing tsconfig.build.json - Refactor behavior-tree-editor to not depend on asset-system in runtime - Create local BehaviorTreeRuntimeModule for pure runtime logic - Move asset loader registration to editor module install() - Add BehaviorTreeLoader for asset system integration - Fix rapier2d WASM loader to not pass arguments to init() - Add WASM base64 loader config to rapier2d tsup.config - Update README documentation and simplify setup steps
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "@esengine/behavior-tree-editor",
|
|
"version": "1.0.0",
|
|
"description": "Editor support for @esengine/behavior-tree - visual editor, inspectors, and tools",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"build:watch": "tsup --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rimraf dist"
|
|
},
|
|
"dependencies": {
|
|
"@esengine/behavior-tree": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"@esengine/editor-core": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@esengine/ecs-framework": "workspace:*",
|
|
"@esengine/engine-core": "workspace:*",
|
|
"@esengine/asset-system": "workspace:*",
|
|
"@esengine/editor-core": "workspace:*",
|
|
"@esengine/editor-runtime": "workspace:*",
|
|
"@esengine/node-editor": "workspace:*",
|
|
"@esengine/build-config": "workspace:*",
|
|
"lucide-react": "^0.545.0",
|
|
"react": "^18.3.1",
|
|
"zustand": "^5.0.8",
|
|
"@types/react": "^18.3.12",
|
|
"rimraf": "^5.0.5",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"keywords": [
|
|
"ecs",
|
|
"behavior-tree",
|
|
"editor"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"private": true
|
|
}
|