-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
72 lines (72 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
71
72
{
"name": "@n1ru4l/socket-io-graphql-client",
"version": "0.13.0",
"author": "n1ru4l <laurinquast@googlemail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/n1ru4l/graphql-live-queries.git",
"directory": "packages/socket-io-graphql-client"
},
"bugs": {
"url": "https://github.com/n1ru4l/graphql-live-queries/issues"
},
"homepage": "https://github.com/n1ru4l/graphql-live-queries#readme",
"keywords": [
"graphql",
"query",
"live",
"mutation",
"subscription",
"socket-io",
"socket.io",
"client",
"relay",
"apollo",
"websocket"
],
"devDependencies": {
"typescript": "4.7.4"
},
"peerDependencies": {
"socket.io-client": "^3.0.1 || ^4.0.0"
},
"dependencies": {
"@n1ru4l/push-pull-async-iterable-iterator": "^3.2.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"
}