mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
78 lines
1.9 KiB
JSON
78 lines
1.9 KiB
JSON
{
|
|
"name": "@graphql-hive/external-composition",
|
|
"version": "0.0.4",
|
|
"type": "module",
|
|
"description": "Compose schemas outside GraphQL Hive",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "graphql-hive/platform",
|
|
"directory": "packages/libraries/external-composition"
|
|
},
|
|
"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": ">=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",
|
|
"example": "pnpm build && PORT=3012 SECRET=secretsecret node dist/example.js"
|
|
},
|
|
"peerDependencies": {
|
|
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@apollo/composition": "2.13.2",
|
|
"@types/node": "24.10.9",
|
|
"esbuild": "0.25.9",
|
|
"fastify": "5.8.3",
|
|
"graphql": "16.9.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org",
|
|
"access": "public",
|
|
"directory": "dist"
|
|
},
|
|
"sideEffects": false,
|
|
"typescript": {
|
|
"definition": "dist/typings/index.d.ts"
|
|
}
|
|
}
|