console/packages/libraries/apollo/package.json
TheGuildBot c7769894b9
Upcoming Release Changes (#7425)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-01-07 12:16:45 +01:00

75 lines
1.9 KiB
JSON

{
"name": "@graphql-hive/apollo",
"version": "0.46.0",
"type": "module",
"description": "GraphQL Hive + Apollo Server",
"repository": {
"type": "git",
"url": "graphql-hive/platform",
"directory": "packages/libraries/apollo"
},
"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": {
"@apollo/server": "^4.0.0 || ^5.0.0",
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-hive/core": "workspace:*",
"@graphql-hive/logger": "^1.0.9"
},
"devDependencies": {
"@apollo/server": "5.0.0",
"@as-integrations/express4": "1.1.2",
"@graphql-tools/schema": "10.0.25",
"@types/express": "4.17.21",
"body-parser": "2.2.1",
"express": "4.21.2",
"graphql": "16.9.0",
"graphql-ws": "5.16.1",
"nock": "14.0.10",
"vitest": "4.0.9",
"ws": "8.18.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"directory": "dist"
},
"sideEffects": false,
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}