-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.39 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.39 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
{
"name": "@graphprotocol/client-block-tracking",
"version": "2.0.7",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/graphprotocol/graph-client.git",
"directory": "packages/block-tracking"
},
"scripts": {
"prepack": "bob prepack",
"check": "tsc --pretty --noEmit"
},
"keywords": [
"thegraph",
"graphql",
"client"
],
"license": "MIT",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/typings/index.d.ts",
"typescript": {
"definition": "dist/typings/index.d.ts"
},
"exports": {
".": {
"require": {
"types": "./dist/typings/index.d.cts",
"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"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"dependencies": {
"@graphql-tools/utils": "^10.0.0",
"@graphql-mesh/fusion-runtime": "^0.10.0",
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^15.2.0 || ^16.0.0",
"@graphql-tools/delegate": "^9.0.32 || ^10.0.0"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
}
}