-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "@protocol-lattice/graphql-binary-protocol",
"version": "1.1.5",
"description": "High-performance GraphQL Binary Protocol (GBP) decoder and Apollo Client Link",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"graphql",
"binary",
"protocol",
"gbp",
"compression",
"lz4",
"apollo",
"apollo-client",
"apollo-link"
],
"author": "Protocol Lattice",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@apollo/client": "^3.0.0",
"graphql": "^15.0.0 || ^16.0.0"
},
"peerDependenciesMeta": {
"@apollo/client": {
"optional": true
},
"graphql": {
"optional": true
}
},
"dependencies": {
"lz4": "^0.6.5",
"pako": "^2.1.0"
},
"devDependencies": {
"@apollo/client": "^3.8.0",
"@types/node": "^20.0.0",
"@types/pako": "^2.0.4",
"@types/ws": "^8.5.0",
"axios": "^1.6.0",
"graphql": "^16.8.0",
"graphql-ws": "^5.14.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0",
"ws": "^8.14.0"
}
}