-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.51 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
{
"name": "shardy",
"version": "1.0.2",
"description": "Framework for online games and applications on Node.js",
"license": "MIT",
"author": "Mopsicus <mail@mopsicus.ru>",
"homepage": "https://github.com/mopsicus/shardy",
"repository": {
"type": "git",
"url": "https://github.com/mopsicus/shardy.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build-ts": "tsc",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build": "npm run build-ts && npm run lint",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix && npm run format"
},
"keywords": [
"shardy",
"microservice",
"framework",
"rpc",
"web",
"netcode",
"games",
"engine",
"networking",
"multiplayer",
"websocket",
"realtime",
"server",
"socket",
"typescript",
"nodejs"
],
"bugs": {
"url": "https://github.com/mopsicus/shardy/issues"
},
"dependencies": {
"dotenv": "^16.4.5",
"ip": "^2.0.1",
"winston": "^3.14.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/eslint": "^9.6.1",
"@types/ip": "^1.1.3",
"@types/node": "^22.7.3",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"typescript": "^5.6.2"
}
}