{
  "title": "ECS JS",
  "name": "ecsjs",
  "version": "1.4.0",
  "description": "An entity component system library for JavaScript",
  "author": "2013+ pflannery (https://gitlab.com/pflannery)",
  "license": "GNU GPL v3",
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/ecsjs/ecs.git"
  },
  "engines": {
    "node": ">=20"
  },
  "type": "module",
  "main": "./dist/ecs.js",
  "exports": {
    "import": "./dist/ecs.js",
    "types": "./dist/types/src/ecs.d.ts"
  },
  "imports": {
    "#ecs/*": "./out/src/*"
  },
  "maintainers": [
    "pflannery (https://gitlab.com/pflannery)"
  ],
  "contributors": [
    "pflannery (https://gitlab.com/pflannery)"
  ],
  "bugs": {
    "url": "https://gitlab.com/ecsjs/ecs/issues"
  },
  "keywords": [
    "ecs",
    "game",
    "entity component system",
    "js"
  ],
  "devDependencies": {
    "@types/mocha": "10.0.10",
    "@types/node": "22.19.15",
    "@types/source-map-support": "0.5.10",
    "c8": "11.0.0",
    "esbuild": "0.27.4",
    "js-build-tasks": "1.0.0-rc.20",
    "mocha": "11.7.5",
    "mocha-ui-esm": "1.0.0",
    "rimraf": "6.1.3",
    "source-map-support": "0.5.21",
    "ts-mockito": "2.6.1",
    "typedoc": "0.28.18",
    "typescript": "6.0.2"
  },
  "scripts": {
    "compile": "task",
    "test": "task",
    "prepublishOnly": "task bundle"
  }
}