- 简化 ignore 配置,只保留 editor-app - 设置内部包为 private: true - build-config, engine, ecs-engine-bindgen - editor-core, editor-runtime - 所有 *-editor 插件包 这样 changesets 可以正常工作,private 包不会被发布
54 lines
1.3 KiB
JSON
54 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/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
|
|
}
|