@colyseus/clock
Version:
A simple clock/ticker implementation to track elapsed/delta time.
42 lines (41 loc) • 959 B
JSON
{
"name": "@colyseus/clock",
"version": "1.0.0",
"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.js",
"module": "./build/index.mjs",
"typings": "./build/index.d.ts",
"exports": {
".": {
"import": "./build/index.mjs",
"require": "./build/index.js"
}
},
"scripts": {
"test": "npm run prepublish && 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"
}
}