forked from heroiclabs/nakama-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.5 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
59
60
61
62
63
{
"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": {
"**/exec-sh": "^0.3.2",
"**/request": "^2.68.0",
"**/highlight.js": "^9.15.5",
"**/knox": "^0.9.2",
"**/less": "^1.7.5",
"**/uglify-js": "^2.6.0"
},
"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": {
"Base64": "^1.0.1",
"whatwg-fetch": "^2.0.3"
},
"resolutions": {
"**/event-stream": "^4.0.1"
}
}