2022-05-18 07:26:57 +00:00
|
|
|
{
|
|
|
|
|
"name": "@graphql-hive/client",
|
2024-03-25 12:04:22 +00:00
|
|
|
"version": "0.29.1",
|
2022-11-24 10:00:41 +00:00
|
|
|
"type": "module",
|
|
|
|
|
"description": "A NodeJS client for GraphQL Hive",
|
2022-05-18 07:26:57 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "kamilkisiela/graphql-hive",
|
|
|
|
|
"directory": "packages/libraries/client"
|
|
|
|
|
},
|
2022-05-25 13:18:31 +00:00
|
|
|
"homepage": "https://graphql-hive.com",
|
2022-11-24 10:00:41 +00:00
|
|
|
"author": {
|
|
|
|
|
"email": "contact@the-guild.dev",
|
|
|
|
|
"name": "The Guild",
|
|
|
|
|
"url": "https://the-guild.dev"
|
|
|
|
|
},
|
2022-05-18 07:26:57 +00:00
|
|
|
"license": "MIT",
|
2023-07-20 11:15:07 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=14.0.0"
|
|
|
|
|
},
|
2022-11-01 00:11:53 +00:00
|
|
|
"main": "dist/cjs/index.js",
|
|
|
|
|
"module": "dist/esm/index.js",
|
2022-05-18 07:26:57 +00:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2022-11-01 00:11:53 +00:00
|
|
|
"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"
|
|
|
|
|
}
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
2022-11-22 16:58:48 +00:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
|
|
|
|
"typings": "dist/typings/index.d.ts",
|
2022-05-18 07:26:57 +00:00
|
|
|
"scripts": {
|
2022-11-22 16:58:48 +00:00
|
|
|
"build": "node scripts/update-version.mjs && bob build",
|
|
|
|
|
"check:build": "bob check"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-03-25 12:04:22 +00:00
|
|
|
"@graphql-hive/core": "^0.2.4",
|
2023-05-21 09:39:20 +00:00
|
|
|
"@graphql-tools/utils": "^10.0.0",
|
2022-05-18 07:26:57 +00:00
|
|
|
"async-retry": "1.3.3",
|
2023-11-01 08:19:07 +00:00
|
|
|
"axios": "^1.6.0",
|
2022-05-18 07:26:57 +00:00
|
|
|
"tiny-lru": "8.0.2"
|
|
|
|
|
},
|
2023-02-10 08:58:40 +00:00
|
|
|
"optionalDependencies": {
|
|
|
|
|
"@apollo/server": "^4.0.0",
|
2023-10-31 07:40:33 +00:00
|
|
|
"@envelop/types": "^5.0.0"
|
2023-02-10 08:58:40 +00:00
|
|
|
},
|
2022-05-18 07:26:57 +00:00
|
|
|
"devDependencies": {
|
2022-11-23 09:26:00 +00:00
|
|
|
"@apollo/federation": "0.38.1",
|
2024-03-24 06:33:20 +00:00
|
|
|
"@apollo/server": "4.10.2",
|
|
|
|
|
"@apollo/subgraph": "2.7.2",
|
2023-10-31 07:40:33 +00:00
|
|
|
"@envelop/types": "5.0.0",
|
2024-03-17 05:59:23 +00:00
|
|
|
"@graphql-yoga/plugin-disable-introspection": "2.2.0",
|
2023-11-07 06:18:11 +00:00
|
|
|
"@types/async-retry": "1.4.8",
|
2023-09-27 07:16:05 +00:00
|
|
|
"graphql": "16.8.1",
|
2024-03-17 05:59:23 +00:00
|
|
|
"graphql-yoga": "5.2.0",
|
2024-02-29 10:37:22 +00:00
|
|
|
"nock": "13.5.4",
|
2024-03-17 07:37:58 +00:00
|
|
|
"vitest": "1.4.0"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
|
"access": "public",
|
|
|
|
|
"directory": "dist"
|
2022-11-24 10:00:41 +00:00
|
|
|
},
|
|
|
|
|
"sideEffects": false,
|
|
|
|
|
"typescript": {
|
|
|
|
|
"definition": "dist/typings/index.d.ts"
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|
|
|
|
|
}
|