Files
esengine/packages/editor-runtime/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

{
"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": {
"build": "tsc && vite build",
"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",
"tsyringe": "^4.10.0",
"reflect-metadata": "^0.2.2"
},
"peerDependencies": {
"@esengine/ecs-framework": "workspace:*",
"@esengine/editor-core": "workspace:*",
"@esengine/ui": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^5.0.8",
"lucide-react": "^0.545.0"
},
"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"
}
}