forked from SnowflakeTQ/nakama-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.38 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": "@heroiclabs/nakama-js",
"version": "2.0.1",
"description": "JavaScript client for Nakama server written in TypeScript.",
"keywords": [
"app server",
"client library",
"game server",
"nakama",
"realtime",
"realtime chat"
],
"homepage": "https://heroiclabs.com",
"bugs": "https://github.com/heroiclabs/nakama-js/issues",
"main": "dist/nakama-js.cjs.js",
"types": "dist/index.d.ts",
"module": "dist/nakama-js.esm.js",
"browser": "dist/nakama-js.umd.js",
"repository": "https://github.com/heroiclabs/nakama-js",
"author": "Chris Molozian <[email protected]>",
"contributors": [
"Andrei Mihu <[email protected]>",
"Mo Firouz <[email protected]>"
],
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest"
},
"files": [
"dist",
"src"
],
"resolutions": {
"**/event-stream": "^4.0.1"
},
"devDependencies": {
"chalk": "^2.4.2",
"jest": "^24.1.0",
"jest-puppeteer": "^4.0.0",
"mkdirp": "^0.5.1",
"puppeteer": "^1.12.2",
"rimraf": "^2.6.3",
"rollup": "^0.66.0",
"rollup-plugin-typescript2": "^0.17.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.0"
},
"dependencies": {
"@types/pako": "^2.0.0",
"Base64": "^1.0.1",
"buffer": "^6.0.3",
"pako": "^2.1.0",
"whatwg-fetch": "^2.0.3"
}
}