mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "@graphql-hive/core",
|
|
"version": "0.6.1",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "kamilkisiela/graphql-hive",
|
|
"directory": "packages/libraries/core"
|
|
},
|
|
"homepage": "https://the-guild.dev/graphql/hive",
|
|
"author": {
|
|
"email": "contact@the-guild.dev",
|
|
"name": "The Guild",
|
|
"url": "https://the-guild.dev"
|
|
},
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=16.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/generate-version.mjs && bob build",
|
|
"check:build": "bob check"
|
|
},
|
|
"peerDependencies": {
|
|
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@graphql-tools/utils": "^10.0.0",
|
|
"@whatwg-node/fetch": "0.9.18",
|
|
"async-retry": "1.3.3",
|
|
"lodash.sortby": "4.7.0",
|
|
"tiny-lru": "8.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@apollo/federation": "0.38.1",
|
|
"@apollo/subgraph": "2.8.3",
|
|
"@types/async-retry": "1.4.8",
|
|
"@types/lodash.sortby": "4.7.9",
|
|
"graphql": "16.9.0",
|
|
"nock": "14.0.0-beta.7",
|
|
"tslib": "2.6.3",
|
|
"vitest": "2.0.3"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org",
|
|
"access": "public",
|
|
"directory": "dist"
|
|
},
|
|
"sideEffects": false,
|
|
"typescript": {
|
|
"definition": "dist/typings/index.d.ts"
|
|
}
|
|
}
|