2025-11-25 22:23:19 +08:00
|
|
|
{
|
|
|
|
|
"name": "@esengine/editor-runtime",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"main": "dist/editor-runtime.js",
|
|
|
|
|
"module": "dist/editor-runtime.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/editor-runtime.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist/**/*"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
2025-11-27 20:42:46 +08:00
|
|
|
"build": "tsc && vite build",
|
2025-11-25 22:23:19 +08:00
|
|
|
"build:watch": "vite build --watch",
|
|
|
|
|
"clean": "rimraf dist"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@tauri-apps/api": "^2.2.0",
|
|
|
|
|
"@tauri-apps/plugin-dialog": "^2.4.0",
|
|
|
|
|
"@tauri-apps/plugin-fs": "^2.4.2",
|
2025-11-27 20:42:46 +08:00
|
|
|
"tsyringe": "^4.10.0",
|
|
|
|
|
"reflect-metadata": "^0.2.2"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"@esengine/ecs-framework": "workspace:*",
|
|
|
|
|
"@esengine/editor-core": "workspace:*",
|
|
|
|
|
"@esengine/ui": "workspace:*",
|
2025-11-25 22:23:19 +08:00
|
|
|
"react": "^18.3.1",
|
|
|
|
|
"react-dom": "^18.3.1",
|
|
|
|
|
"zustand": "^5.0.8",
|
2025-11-27 20:42:46 +08:00
|
|
|
"lucide-react": "^0.545.0"
|
2025-11-25 22:23:19 +08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/react": "^18.3.12",
|
|
|
|
|
"@types/react-dom": "^18.3.1",
|
|
|
|
|
"rimraf": "^5.0.0",
|
|
|
|
|
"typescript": "^5.8.3",
|
|
|
|
|
"vite": "^6.0.7",
|
|
|
|
|
"vite-plugin-dts": "^4.5.0"
|
|
|
|
|
}
|
|
|
|
|
}
|