-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvix.json
More file actions
92 lines (92 loc) · 1.56 KB
/
Copy pathvix.json
File metadata and controls
92 lines (92 loc) · 1.56 KB
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
{
"namespace": "vix",
"name": "realtime",
"displayName": "Vix Realtime",
"version": "0.1.0",
"type": "library",
"license": "MIT",
"description": "Stateful realtime runtime for authoritative rooms, commands, events, sessions, snapshots, replay, presence, and reconnection in C++.",
"repository": "https://github.com/vixcpp/realtime.git",
"documentation": "https://github.com/vixcpp/realtime#readme",
"include": "include",
"standard": "c++20",
"keywords": [
"vix",
"cpp",
"realtime",
"rooms",
"events",
"commands",
"sessions",
"presence",
"snapshots",
"replay",
"reconnection",
"websocket"
],
"authors": [
{
"name": "Gaspard Kirira"
}
],
"maintainers": [
{
"name": "Gaspard Kirira"
}
],
"exports": {
"modules": [
"vix::realtime"
],
"namespaces": [
"vix::realtime"
]
},
"constraints": {
"platforms": [
"linux",
"macos",
"windows"
]
},
"deps": [
{
"id": "vix/core",
"version": "*"
},
{
"id": "vix/error",
"version": "*"
},
{
"id": "vix/json",
"version": "*"
},
{
"id": "vix/async",
"version": "*"
},
{
"id": "vix/sync",
"version": "*"
},
{
"id": "vix/time",
"version": "*"
},
{
"id": "vix/utils",
"version": "*"
},
{
"id": "vix/websocket",
"version": "*",
"optional": true
},
{
"id": "vix/db",
"version": "*",
"optional": true
}
]
}