2022-05-18 07:26:57 +00:00
|
|
|
{
|
|
|
|
|
"name": "@graphql-hive/core",
|
2026-03-05 13:03:57 +00:00
|
|
|
"version": "0.21.0",
|
2022-11-24 10:00:41 +00:00
|
|
|
"type": "module",
|
2022-05-18 07:26:57 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2024-10-14 14:36:45 +00:00
|
|
|
"url": "graphql-hive/platform",
|
2022-05-18 07:26:57 +00:00
|
|
|
"directory": "packages/libraries/core"
|
|
|
|
|
},
|
2024-04-23 15:51:43 +00:00
|
|
|
"homepage": "https://the-guild.dev/graphql/hive",
|
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": {
|
2024-04-23 11:49:51 +00:00
|
|
|
"node": ">=16.0.0"
|
2023-07-20 11:15:07 +00:00
|
|
|
},
|
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": {
|
2024-04-23 15:51:43 +00:00
|
|
|
"build": "node ../../../scripts/generate-version.mjs && bob build",
|
2025-11-18 09:36:35 +00:00
|
|
|
"check:build": "bob check",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-11-26 11:49:37 +00:00
|
|
|
"@graphql-hive/logger": "^1.0.9",
|
2025-11-18 09:36:35 +00:00
|
|
|
"@graphql-hive/signal": "^2.0.0",
|
2024-04-23 15:51:43 +00:00
|
|
|
"@graphql-tools/utils": "^10.0.0",
|
2025-11-24 10:04:22 +00:00
|
|
|
"@whatwg-node/fetch": "^0.10.13",
|
2025-03-20 10:25:12 +00:00
|
|
|
"async-retry": "^1.3.3",
|
2025-11-18 09:36:35 +00:00
|
|
|
"events": "^3.3.0",
|
2025-07-10 08:21:02 +00:00
|
|
|
"js-md5": "0.8.3",
|
2025-03-20 10:25:12 +00:00
|
|
|
"lodash.sortby": "^4.7.0",
|
2026-01-20 16:58:48 +00:00
|
|
|
"tiny-lru": "^11.4.7"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-04-23 15:51:43 +00:00
|
|
|
"@apollo/federation": "0.38.1",
|
2026-03-14 10:12:51 +00:00
|
|
|
"@apollo/subgraph": "2.13.2",
|
2024-06-27 14:00:30 +00:00
|
|
|
"@types/async-retry": "1.4.8",
|
2025-07-10 08:21:02 +00:00
|
|
|
"@types/js-md5": "0.8.0",
|
2023-11-07 20:14:20 +00:00
|
|
|
"@types/lodash.sortby": "4.7.9",
|
2024-06-25 08:29:04 +00:00
|
|
|
"graphql": "16.9.0",
|
2025-09-14 13:16:57 +00:00
|
|
|
"nock": "14.0.10",
|
2024-11-17 10:57:43 +00:00
|
|
|
"tslib": "2.8.1",
|
2026-04-08 06:48:48 +00:00
|
|
|
"vitest": "4.1.3"
|
2022-11-24 10:00:41 +00:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
|
"access": "public",
|
|
|
|
|
"directory": "dist"
|
|
|
|
|
},
|
|
|
|
|
"sideEffects": false,
|
|
|
|
|
"typescript": {
|
|
|
|
|
"definition": "dist/typings/index.d.ts"
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|
|
|
|
|
}
|