-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
92 lines (92 loc) · 2.37 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "hathora",
"version": "0.12.2",
"description": "Multiplayer game framework",
"bin": "lib/cli.js",
"files": [
"lib",
"node-loader.config.mjs",
"templates",
"READEME.md",
"LICENSE"
],
"dependencies": {
"@node-loader/core": "hpx7/node-loader-core#patch-1",
"axios": "0.27.2",
"chalk": "4.1.2",
"dotenv": "16.0.1",
"esbuild": "0.15.7",
"form-data": "4.0.0",
"fs-extra": "10.1.0",
"handlebars": "4.7.7",
"hot-esm": "1.5.0",
"js-yaml": "4.1.0",
"open": "8.4.0",
"openid-client": "5.4.2",
"prompts": "2.4.2",
"shelljs": "0.8.5",
"tar": "6.1.11",
"ts-node": "10.7.0",
"update-notifier": "5.1.0",
"uuid": "8.3.2",
"yargs": "17.5.1",
"zod": "3.18.0"
},
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@types/js-yaml": "4.0.5",
"@types/node": "18.7.17",
"@types/prompts": "2.0.14",
"@types/shelljs": "0.8.11",
"@types/tar": "6.1.2",
"@types/update-notifier": "5.1.0",
"@types/uuid": "8.3.4",
"@types/yargs": "17.0.12",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.43.0",
"docsify-cli": "4.4.4",
"eslint": "8.23.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"npm-package-json-lint": "6.3.0",
"prettier": "2.7.1",
"typescript": "4.6.4"
},
"engines": {
"node": ">=16.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hathora/hathora.git"
},
"keywords": [
"realtime",
"multiplayer",
"framework",
"game"
],
"author": "Harsh Pandey",
"license": "MIT",
"bugs": {
"url": "https://github.com/hathora/hathora/issues"
},
"homepage": "https://www.hathora.dev",
"scripts": {
"build": "npx tsc",
"test": "./scripts/run-all-examples.sh",
"test:one": "./scripts/test-example.sh",
"lint_src": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint_src_fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint_packagejson": "npx npm-package-json-lint .",
"lint": "npm run lint_src && npm run lint_packagejson",
"docs": "docsify serve docs"
},
"npmpackagejsonlint": {
"rules": {
"no-caret-version-dependencies": "error",
"no-caret-version-devDependencies": "error",
"no-tilde-version-dependencies": "error",
"no-tilde-version-devDependencies": "error"
}
}
}