console/packages/libraries/client/package.json
renovate[bot] 52f8bd3c6c
fix(deps): update dependency graphql-yoga to v3.4.1 (#1202)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-01 09:36:58 +01:00

70 lines
1.8 KiB
JSON

{
"name": "@graphql-hive/client",
"version": "0.22.0",
"type": "module",
"description": "A NodeJS client for GraphQL Hive",
"repository": {
"type": "git",
"url": "kamilkisiela/graphql-hive",
"directory": "packages/libraries/client"
},
"homepage": "https://graphql-hive.com",
"author": {
"email": "contact@the-guild.dev",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"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"
},
"typings": "dist/typings/index.d.ts",
"scripts": {
"build": "node scripts/update-version.mjs && bob build",
"check:build": "bob check"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-hive/core": "^0.2.3",
"@graphql-tools/utils": "^9.0.0",
"async-retry": "1.3.3",
"axios": "^1.2.1",
"tiny-lru": "8.0.2"
},
"devDependencies": {
"@apollo/federation": "0.38.1",
"@envelop/types": "3.0.1",
"@types/async-retry": "1.4.5",
"apollo-server-core": "3.11.1",
"apollo-server-plugin-base": "3.7.1",
"graphql-yoga": "3.4.1",
"nock": "13.2.9"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"directory": "dist"
},
"sideEffects": false,
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}