{
  "name": "simkit-core",
  "version": "0.8.2",
  "description": "A lightweight, type-safe Entity-Component-System (ECS) library for TypeScript",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "ecs",
    "entity-component-system",
    "typescript",
    "game-development",
    "simulation"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Pekmen/simkit-core.git"
  },
  "bugs": {
    "url": "https://github.com/Pekmen/simkit-core/issues"
  },
  "homepage": "https://github.com/Pekmen/simkit-core#readme",
  "author": "Milan Pekovic",
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "rebuild": "npm run clean && npm run build",
    "prepublishOnly": "npm run test && npm run lint:fix",
    "clean": "rm -rf dist",
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "format": "prettier --check .",
    "format:fix": "prettier --write .",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "coverage": "vitest run --coverage",
    "benchmark": "node --expose-gc benchmarks/local/run.js",
    "benchmark:update-readme": "node benchmarks/update-readme.js",
    "prepare": "husky"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "eslint --quiet --fix"
    ],
    "*.{json,js,ts,jsx,tsx,html}": [
      "prettier --write --ignore-unknown"
    ]
  },
  "devDependencies": {
    "@eslint/css": "^0.11.0",
    "@eslint/js": "^9.35.0",
    "@eslint/json": "^0.13.2",
    "@eslint/markdown": "^7.2.0",
    "eslint": "^9.35.0",
    "globals": "^16.3.0",
    "husky": "^9.1.7",
    "lint-staged": "^16.1.6",
    "prettier": "^3.6.2",
    "typescript": "^5.9.2",
    "typescript-eslint": "^8.42.0",
    "vitest": "^3.2.4"
  }
}
