mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"name": "@graphql-hive/external-composition",
|
|
"version": "0.0.3",
|
|
"type": "module",
|
|
"description": "Compose schemas outside GraphQL Hive",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "kamilkisiela/graphql-hive",
|
|
"directory": "packages/libraries/external-composition"
|
|
},
|
|
"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"
|
|
}
|
|
},
|
|
"./*": {
|
|
"require": {
|
|
"types": "./dist/typings/*.d.cts",
|
|
"default": "./dist/cjs/*.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/typings/*.d.ts",
|
|
"default": "./dist/esm/*.js"
|
|
},
|
|
"default": {
|
|
"types": "./dist/typings/*.d.ts",
|
|
"default": "./dist/esm/*.js"
|
|
}
|
|
}
|
|
},
|
|
"typings": "dist/typings/index.d.ts",
|
|
"scripts": {
|
|
"build": "bob build && node build-example.mjs",
|
|
"check:build": "bob check"
|
|
},
|
|
"peerDependencies": {
|
|
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@apollo/composition": "2.7.2",
|
|
"esbuild": "0.20.2",
|
|
"fastify": "4.26.2",
|
|
"graphql": "16.8.1"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org",
|
|
"access": "public",
|
|
"directory": "dist"
|
|
},
|
|
"sideEffects": false,
|
|
"typescript": {
|
|
"definition": "dist/typings/index.d.ts"
|
|
}
|
|
}
|