45 lines
1018 B
JSON
45 lines
1018 B
JSON
|
|
{
|
||
|
|
"name": "@esengine/ui",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "ECS-based UI system with WebGL rendering for games",
|
||
|
|
"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": "vite build",
|
||
|
|
"build:watch": "vite build --watch",
|
||
|
|
"type-check": "tsc --noEmit",
|
||
|
|
"clean": "rimraf dist"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@esengine/ecs-framework": "workspace:*"
|
||
|
|
},
|
||
|
|
"peerDependencies": {
|
||
|
|
"@esengine/ecs-framework": ">=2.0.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"typescript": "^5.3.3",
|
||
|
|
"vite": "^5.0.0",
|
||
|
|
"vite-plugin-dts": "^3.7.0",
|
||
|
|
"rimraf": "^5.0.5"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"ecs",
|
||
|
|
"ui",
|
||
|
|
"webgl",
|
||
|
|
"game-ui"
|
||
|
|
],
|
||
|
|
"author": "",
|
||
|
|
"license": "MIT"
|
||
|
|
}
|