{ "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" }, "./commands": { "types": "./dist/commands/index.d.ts", "import": "./dist/commands/index.js", "require": "./dist/commands/index.cjs" }, "./bt": { "types": "./dist/bt/index.d.ts", "import": "./dist/bt/index.js", "require": "./dist/bt/index.cjs" } }, "files": [ "dist" ], "scripts": { "build": "tsup", "dev": "tsup --watch", "typecheck": "tsc --noEmit", "test": "vitest run", "prepublishOnly": "npm run build" }, "devDependencies": { "@types/blessed": "^0.1.27", "@types/node": "^25.9.1", "blessed": "^0.1.81", "tsup": "^8.3.5", "typescript": "^5.6.0", "vitest": "^4.1.7" }, "keywords": [ "ecs", "entity-component-system", "observable", "game" ], "license": "MIT" }