-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 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
56
57
58
{
"name": "@colyseus/command",
"version": "0.3.1",
"description": "Command Pattern for Colyseus",
"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 --timeout 15000",
"prepublishOnly": "npm run build"
},
"files": [
"build",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/colyseus/command.git"
},
"keywords": [
"action",
"dispatcher",
"colyseus"
],
"author": "Endel Dreyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/colyseus/command/issues"
},
"homepage": "https://github.com/colyseus/command#readme",
"devDependencies": {
"@colyseus/schema": "*",
"@types/debug": "^4.1.5",
"@types/mocha": "^7.0.1",
"@types/nanoid": "^2.1.0",
"colyseus": "*",
"esbuild": "^0.23.0",
"fast-glob": "^3.3.2",
"mocha": "^7.0.1",
"nanoid": "^2.1.11",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"peerDependencies": {
"colyseus": "*"
},
"dependencies": {
"debug": "^4.1.1"
}
}