2025-11-26 11:08:10 +08:00
|
|
|
{
|
|
|
|
|
"name": "@esengine/ui",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "ECS-based UI system with WebGL rendering for games",
|
2025-12-01 22:28:51 +08:00
|
|
|
"esengine": {
|
|
|
|
|
"plugin": true,
|
|
|
|
|
"pluginExport": "UIPlugin",
|
|
|
|
|
"category": "ui"
|
|
|
|
|
},
|
2025-11-26 11:08:10 +08:00
|
|
|
"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"
|
2025-12-01 22:28:51 +08:00
|
|
|
}
|
2025-11-26 11:08:10 +08:00
|
|
|
},
|
|
|
|
|
"files": [
|
2025-12-01 22:28:51 +08:00
|
|
|
"dist"
|
2025-11-26 11:08:10 +08:00
|
|
|
],
|
|
|
|
|
"scripts": {
|
2025-12-01 22:28:51 +08:00
|
|
|
"build": "tsup",
|
|
|
|
|
"build:watch": "tsup --watch",
|
2025-11-26 11:08:10 +08:00
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
|
"clean": "rimraf dist"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-12-08 21:23:37 +08:00
|
|
|
"@esengine/esengine": "workspace:*",
|
2025-12-01 22:28:51 +08:00
|
|
|
"@esengine/engine-core": "workspace:*",
|
2025-12-08 21:10:57 +08:00
|
|
|
"@esengine/ecs-engine-bindgen": "workspace:*",
|
2025-12-01 22:28:51 +08:00
|
|
|
"@esengine/build-config": "workspace:*",
|
2025-11-27 20:42:46 +08:00
|
|
|
"rimraf": "^5.0.5",
|
2025-12-01 22:28:51 +08:00
|
|
|
"tsup": "^8.0.0",
|
|
|
|
|
"typescript": "^5.3.3"
|
2025-11-26 11:08:10 +08:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"ecs",
|
|
|
|
|
"ui",
|
|
|
|
|
"webgl",
|
|
|
|
|
"game-ui"
|
|
|
|
|
],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "MIT"
|
|
|
|
|
}
|