{
  "name": "@colyseus/clock",
  "version": "2.0.3",
  "type": "module",
  "description": "A simple clock/ticker implementation to track elapsed/delta time.",
  "author": "Endel Dreyer <endel.dreyer@gmail.com>",
  "keywords": [
    "clock",
    "ticker",
    "delta",
    "time"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/colyseus/clock.git"
  },
  "main": "./build/index.cjs",
  "module": "./build/index.mjs",
  "typings": "./build/index.d.ts",
  "exports": {
    ".": {
      "types": "./build/index.d.ts",
      "import": "./build/index.mjs",
      "require": "./build/index.cjs"
    }
  },
  "scripts": {
    "test": "mocha test",
    "build": "tsc --emitDeclarationOnly && node build.mjs",
    "prepublishOnly": "npm run build"
  },
  "files": [
    "build", "LICENSE", "README.md"
  ],
  "license": "MIT",
  "devDependencies": {
    "assert": "^1.3.0",
    "esbuild": "^0.23.0",
    "fast-glob": "^3.3.2",
    "mocha": "^2.3.3",
    "typescript": "^5.3.3"
  }
}
