-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
70 lines (70 loc) · 1.63 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
65
66
67
68
69
70
{
"name": "@n1ru4l/socket-io-graphql-server",
"version": "0.13.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/n1ru4l/graphql-live-queries.git",
"directory": "packages/socket-io-graphql-server"
},
"bugs": {
"url": "https://github.com/n1ru4l/graphql-live-queries/issues"
},
"homepage": "https://github.com/n1ru4l/graphql-live-queries#readme",
"keywords": [
"graphql",
"query",
"mutation",
"subscription",
"live",
"socket-io",
"socket.io",
"websocket",
"real-time"
],
"devDependencies": {
"typescript": "4.7.4",
"graphql": "16.0.0-experimental-stream-defer.5",
"socket.io": "4.5.2"
},
"peerDependencies": {
"graphql": "^15.4.0 || ^16.0.0",
"socket.io": "^3.0.1 || ^4.0.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"require": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
},
"default": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./package.json": "./package.json"
},
"typings": "dist/typings/index.d.ts",
"typescript": {
"definition": "dist/typings/index.d.ts"
},
"scripts": {
"test": "jest",
"prepack": "bob prepack"
},
"buildOptions": {
"input": "./src/index.ts"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"type": "module"
}