-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 959 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@colyseus/clock",
"version": "1.0.0",
"description": "A simple clock/ticker implementation to track elapsed/delta time.",
"author": "Endel Dreyer <[email protected]>",
"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"
}
}