console/packages/libraries/apollo/package.json

73 lines
1.8 KiB
JSON
Raw Normal View History

2022-05-18 07:26:57 +00:00
{
"name": "@graphql-hive/apollo",
"version": "0.33.2",
"type": "module",
"description": "GraphQL Hive + Apollo Server",
2022-05-18 07:26:57 +00:00
"repository": {
"type": "git",
"url": "kamilkisiela/graphql-hive",
"directory": "packages/libraries/apollo"
2022-05-18 07:26:57 +00:00
},
"homepage": "https://the-guild.dev/graphql/hive",
"author": {
"email": "contact@the-guild.dev",
"name": "The Guild",
"url": "https://the-guild.dev"
},
2022-05-18 07:26:57 +00:00
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
2022-05-18 07:26:57 +00:00
"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"
}
2022-05-18 07:26:57 +00:00
},
"./package.json": "./package.json"
},
"typings": "dist/typings/index.d.ts",
2022-05-18 07:26:57 +00:00
"scripts": {
"build": "node ../../../scripts/generate-version.mjs && bob build",
"check:build": "bob check"
2022-05-18 07:26:57 +00:00
},
"peerDependencies": {
"@apollo/server": "^4.0.0",
2022-05-18 07:26:57 +00:00
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-hive/core": "workspace:*"
},
2022-05-18 07:26:57 +00:00
"devDependencies": {
"@apollo/server": "4.10.4",
"@graphql-tools/schema": "10.0.4",
"body-parser": "1.20.2",
"express": "4.19.2",
"graphql": "16.8.1",
"graphql-ws": "5.16.0",
"nock": "14.0.0-beta.7",
"vitest": "1.6.0",
"ws": "8.17.1"
2022-05-18 07:26:57 +00:00
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"directory": "dist"
},
"sideEffects": false,
"typescript": {
"definition": "dist/typings/index.d.ts"
2022-05-18 07:26:57 +00:00
}
}