2022-09-16 11:30:50 +00:00
|
|
|
{
|
|
|
|
|
"name": "@graphql-hive/external-composition",
|
2024-11-29 12:42:54 +00:00
|
|
|
"version": "0.0.4",
|
2022-11-24 10:00:41 +00:00
|
|
|
"type": "module",
|
|
|
|
|
"description": "Compose schemas outside GraphQL Hive",
|
2022-09-16 11:30:50 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2024-10-14 14:36:45 +00:00
|
|
|
"url": "graphql-hive/platform",
|
2022-09-16 11:30:50 +00:00
|
|
|
"directory": "packages/libraries/external-composition"
|
|
|
|
|
},
|
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-09-16 11:30:50 +00:00
|
|
|
"license": "MIT",
|
2023-07-20 11:15:07 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=14.0.0"
|
|
|
|
|
},
|
2022-11-01 00:11:53 +00:00
|
|
|
"main": "dist/cjs/index.js",
|
|
|
|
|
"module": "dist/esm/index.js",
|
2022-09-16 11:30:50 +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-09-16 11:30:50 +00:00
|
|
|
},
|
|
|
|
|
"./*": {
|
2022-11-01 00:11:53 +00:00
|
|
|
"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"
|
|
|
|
|
}
|
2022-09-16 11:30:50 +00:00
|
|
|
}
|
|
|
|
|
},
|
2022-11-24 10:00:41 +00:00
|
|
|
"typings": "dist/typings/index.d.ts",
|
2022-09-16 11:30:50 +00:00
|
|
|
"scripts": {
|
2023-01-23 15:44:53 +00:00
|
|
|
"build": "bob build && node build-example.mjs",
|
2024-07-15 11:21:23 +00:00
|
|
|
"check:build": "bob check",
|
|
|
|
|
"example": "pnpm build && PORT=3012 SECRET=secretsecret node dist/example.js"
|
2022-09-16 11:30:50 +00:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-11-16 15:01:03 +00:00
|
|
|
"@apollo/composition": "2.10.4",
|
2025-11-16 09:38:27 +00:00
|
|
|
"@types/node": "22.10.5",
|
2025-09-14 12:11:34 +00:00
|
|
|
"esbuild": "0.25.9",
|
2025-06-11 05:21:56 +00:00
|
|
|
"fastify": "4.29.1",
|
2024-06-25 08:29:04 +00:00
|
|
|
"graphql": "16.9.0"
|
2022-09-16 11:30:50 +00:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
|
"access": "public",
|
|
|
|
|
"directory": "dist"
|
2022-11-24 10:00:41 +00:00
|
|
|
},
|
|
|
|
|
"sideEffects": false,
|
|
|
|
|
"typescript": {
|
|
|
|
|
"definition": "dist/typings/index.d.ts"
|
2022-09-16 11:30:50 +00:00
|
|
|
}
|
|
|
|
|
}
|