-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.31 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@colyseus/timer",
"version": "1.0.0",
"description": "Timing Events tied to @colyseus/clock",
"main": "build/index.js",
"module": "build/index.mjs",
"typings": "build/index.d.ts",
"exports": {
".": {
"import": "./build/index.mjs",
"require": "./build/index.js"
}
},
"scripts": {
"build": "tsc --emitDeclarationOnly && node build.mjs",
"test": "mocha --require ts-node/register test/**Test.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colyseus/timer.git"
},
"keywords": [
"clock",
"timer",
"timer-events",
"interval",
"timeout",
"deltatime"
],
"author": "Endel Dreyer",
"contributors": [
"Andréas HANSS <[email protected]> (https://github.com/ScreamZ)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/colyseus/timer/issues"
},
"homepage": "https://github.com/colyseus/timer#readme",
"dependencies": {
"@colyseus/clock": "^1.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.6",
"assert": "^2.1.0",
"esbuild": "^0.23.0",
"fast-glob": "^3.3.2",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}