forked from n1ru4l/graphql-live-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.41 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
{
"name": "@n1ru4l/graphql-live-query-patch-json-patch",
"version": "0.6.0",
"author": "n1ru4l <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/n1ru4l/graphql-live-queries.git",
"directory": "packages/graphql-live-query-patch-json-patch"
},
"bugs": {
"url": "https://github.com/n1ru4l/graphql-live-queries/issues"
},
"homepage": "https://github.com/n1ru4l/graphql-live-queries#readme",
"keywords": [
"graphql",
"query",
"live",
"real-time"
],
"dependencies": {
"@n1ru4l/graphql-live-query-patch": "^0.6.0",
"fast-json-patch": "3.1.0"
},
"devDependencies": {
"graphql": "16.0.0-experimental-stream-defer.5",
"@n1ru4l/graphql-live-query": "*",
"@n1ru4l/in-memory-live-query-store": "*"
},
"peerDependencies": {
"graphql": "^15.4.0 || ^16.0.0"
},
"main": "dist/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"./*": {
"require": "./dist/*.js",
"import": "./dist/esm/*.js"
}
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"scripts": {
"test": "jest",
"prepack": "bob prepack"
},
"buildOptions": {
"input": "./src/index.ts"
},
"publishConfig": {
"directory": "dist",
"access": "public"
}
}