console/packages/libraries/client/package.json
TheGuildBot e27e761162
Upcoming Release Changes (#4330)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-03-25 13:04:22 +01:00

80 lines
2 KiB
JSON

{
"name": "@graphql-hive/client",
"version": "0.29.1",
"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",
"engines": {
"node": ">=14.0.0"
},
"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.4",
"@graphql-tools/utils": "^10.0.0",
"async-retry": "1.3.3",
"axios": "^1.6.0",
"tiny-lru": "8.0.2"
},
"optionalDependencies": {
"@apollo/server": "^4.0.0",
"@envelop/types": "^5.0.0"
},
"devDependencies": {
"@apollo/federation": "0.38.1",
"@apollo/server": "4.10.2",
"@apollo/subgraph": "2.7.2",
"@envelop/types": "5.0.0",
"@graphql-yoga/plugin-disable-introspection": "2.2.0",
"@types/async-retry": "1.4.8",
"graphql": "16.8.1",
"graphql-yoga": "5.2.0",
"nock": "13.5.4",
"vitest": "1.4.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"directory": "dist"
},
"sideEffects": false,
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}