{ "name": "@esengine/ecs-components", "version": "1.0.0", "description": "Standard component library for ECS Framework", "main": "bin/index.js", "types": "bin/index.d.ts", "exports": { ".": { "types": "./bin/index.d.ts", "import": "./bin/index.js", "development": { "types": "./src/index.ts", "import": "./src/index.ts" } }, "./plugin.json": "./plugin.json" }, "files": [ "bin/**/*", "plugin.json" ], "keywords": [ "ecs", "components", "game-engine", "typescript" ], "scripts": { "clean": "rimraf bin dist tsconfig.tsbuildinfo", "build:ts": "tsc", "prebuild": "npm run clean", "build": "npm run build:ts", "build:watch": "tsc --watch", "rebuild": "npm run clean && npm run build" }, "author": "yhh", "license": "MIT", "devDependencies": { "rimraf": "^5.0.0", "typescript": "^5.8.3" }, "peerDependencies": { "@esengine/ecs-framework": "^2.2.8", "@esengine/asset-system": "workspace:*" }, "dependencies": { "tslib": "^2.8.1" }, "repository": { "type": "git", "url": "https://github.com/esengine/ecs-framework.git", "directory": "packages/components" } }