-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "soketto-server",
"version": "1.0.1-release",
"author": "Tufan Meriç Uyguner",
"license": "MIT",
"keywords": [
"server",
"uwebsockets",
"multiplayer",
"realtime",
"socket",
"websocket",
"networking",
"transport",
"communication"
],
"description": "A simple and flexible server framework for realtime applications.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && yarn typedoc"
},
"devDependencies": {
"@types/node": "^16.4.6",
"ts-node": "^10.9.1",
"typedoc": "^0.24.4",
"typedoc-plugin-markdown": "^3.15.1",
"typescript": "^5.0.3"
},
"dependencies": {
"paketto": "^1.0.1-release",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.15.0"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/tufcode/soketto-server.git"
},
"publishConfig": {
"access": "public"
}
}