{ "name": "ecs-observable", "version": "0.1.0", "description": "Entity-Component-System for games with an Observable-style API", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "files": [ "dist" ], "scripts": { "build": "tsup", "dev": "tsup --watch", "prepublishOnly": "npm run build" }, "peerDependencies": { "rxjs": "^7.0.0" }, "devDependencies": { "rxjs": "^7.8.1", "tsup": "^8.3.5", "typescript": "^5.6.0" }, "keywords": [ "ecs", "entity-component-system", "rxjs", "observable", "game" ], "license": "MIT" }