-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.55 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.55 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
{
"name": "quico",
"version": "0.2.0",
"description": "A pure JavaScript implementation of QUIC, HTTP/3, QPACK, and WebTransport for Node.js",
"type": "module",
"main": "index.cjs",
"module": "index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
}
},
"engines": {
"node": ">=18.0.0"
},
"types": "index.d.ts",
"files": [
"index.js",
"index.cjs",
"index.d.ts",
"src/",
"LICENSE",
"README.md"
],
"keywords": [
"quic",
"http3",
"http",
"https",
"h3",
"quic-node",
"http3-node",
"quic-server",
"quic-client",
"http3-server",
"http3-client",
"h3-node",
"webtransport",
"websocket",
"datagram",
"udp",
"qpack",
"tls",
"tls1.3",
"tls13",
"nodejs",
"backend",
"real-time",
"low-latency",
"transport",
"http-server",
"socketio"
],
"author": {
"name": "colocohen",
"email": "support@quicojs.dev"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/colocohen/quico.git"
},
"bugs": {
"email": "support@quicojs.dev",
"url": "https://github.com/colocohen/quico/issues"
},
"homepage": "https://github.com/colocohen/quico#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/colocohen"
},
{
"type": "opencollective",
"url": "https://opencollective.com/quicojs"
}
],
"dependencies": {
"flat-ranges": "^2.0.0",
"lemon-tls": "^0.2.0"
}
}