Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.

chore: bump dependencies (#35)

* bump dependencies

* try in example

Changed files
+166 -134
.changeset
packages
test
e2e
fixture-project
+1 -1
.changeset/config.json
···
"commit": false,
"access": "public",
"baseBranch": "main",
-
"ignore": ["example"]
+
"ignore": ["example", "fixtures"]
}
+5
.changeset/metal-carrots-wonder.md
···
+
---
+
'@0no-co/graphqlsp': patch
+
---
+
+
Bump the graphql-code-generator and graphiql-utils dependencies
+2
packages/example/src/Pokemon.generated.ts
···
export type FieldsFragment = {
__typename?: 'Pokemon';
classification?: string | null;
+
id: string;
};
export type PokemonFieldsFragment = {
···
kind: 'SelectionSet',
selections: [
{ kind: 'Field', name: { kind: 'Name', value: 'classification' } },
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
],
},
},
+1
packages/example/src/Pokemon.ts
···
export const fields = gql`
fragment fields on Pokemon {
classification
+
id
}
` as typeof import('./Pokemon.generated').FieldsFragmentDoc;
+43 -3
packages/example/src/index.generated.ts
···
__typename: 'Pokemon';
id: string;
name: string;
+
fleeRate?: number | null;
} | null> | null;
};
···
export type PokemonQuery = {
__typename?: 'Query';
-
pokemon?: { __typename: 'Pokemon'; id: string; name: string } | null;
+
pokemon?: {
+
__typename: 'Pokemon';
+
id: string;
+
fleeRate?: number | null;
+
name: string;
+
} | null;
};
export const PokemonFieldsFragmentDoc = {
···
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
{ kind: 'Field', name: { kind: 'Name', value: '__typename' } },
+
{ kind: 'Field', name: { kind: 'Name', value: 'fleeRate' } },
{
kind: 'FragmentSpread',
name: { kind: 'Name', value: 'pokemonFields' },
···
],
},
},
-
...PokemonFieldsFragmentDoc.definitions,
+
{
+
kind: 'FragmentDefinition',
+
name: { kind: 'Name', value: 'pokemonFields' },
+
typeCondition: {
+
kind: 'NamedType',
+
name: { kind: 'Name', value: 'Pokemon' },
+
},
+
selectionSet: {
+
kind: 'SelectionSet',
+
selections: [
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
+
],
+
},
+
},
],
} as unknown as DocumentNode<PokemonsQuery, PokemonsQueryVariables>;
export const PokemonDocument = {
···
kind: 'SelectionSet',
selections: [
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
-
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
+
{ kind: 'Field', name: { kind: 'Name', value: 'fleeRate' } },
+
{
+
kind: 'FragmentSpread',
+
name: { kind: 'Name', value: 'pokemonFields' },
+
},
{ kind: 'Field', name: { kind: 'Name', value: '__typename' } },
],
},
},
+
],
+
},
+
},
+
{
+
kind: 'FragmentDefinition',
+
name: { kind: 'Name', value: 'pokemonFields' },
+
typeCondition: {
+
kind: 'NamedType',
+
name: { kind: 'Name', value: 'Pokemon' },
+
},
+
selectionSet: {
+
kind: 'SelectionSet',
+
selections: [
+
{ kind: 'Field', name: { kind: 'Name', value: 'id' } },
+
{ kind: 'Field', name: { kind: 'Name', value: 'name' } },
],
},
},
+5 -2
packages/example/src/index.ts
···
id
name
__typename
-
+
fleeRate
...pokemonFields
}
}
···
query Pokemon($id: ID!) {
pokemon(id: $id) {
id
-
name
+
fleeRate
+
...pokemonFields
__typename
}
}
+
+
${PokemonFields}
` as typeof import('./index.generated').PokemonDocument;
client
+5 -14
packages/graphqlsp/package.json
···
"*.{js,ts,json,md}": "prettier --write"
},
"devDependencies": {
-
"@changesets/cli": "^2.26.1",
-
"@changesets/get-github-info": "^0.5.2",
-
"@rollup/plugin-terser": "^0.4.1",
-
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
-
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
-
"husky": "^8.0.3",
-
"lint-staged": "^13.2.1",
-
"prettier": "^2.8.7",
-
"rollup": "^3.20.2",
"typescript": "^5.0.0"
},
"dependencies": {
-
"@graphql-codegen/core": "^2.6.8",
-
"@graphql-codegen/typed-document-node": "^2.3.10",
-
"@graphql-codegen/typescript": "^2.8.5",
-
"@graphql-codegen/typescript-operations": "^2.5.10",
-
"graphql-language-service": "^5.0.6",
+
"@graphql-codegen/core": "^3.1.0",
+
"@graphql-codegen/typed-document-node": "^3.0.2",
+
"@graphql-codegen/typescript": "^3.0.3",
+
"@graphql-codegen/typescript-operations": "^3.0.3",
+
"graphql-language-service": "^5.1.3",
"node-fetch": "^2.0.0"
}
}
+103 -114
pnpm-lock.yaml
···
packages/graphqlsp:
dependencies:
'@graphql-codegen/core':
-
specifier: ^2.6.8
-
version: 2.6.8(graphql@16.6.0)
+
specifier: ^3.1.0
+
version: 3.1.0(graphql@16.6.0)
'@graphql-codegen/typed-document-node':
-
specifier: ^2.3.10
-
version: 2.3.10(graphql@16.6.0)
+
specifier: ^3.0.2
+
version: 3.0.2(graphql@16.6.0)
'@graphql-codegen/typescript':
-
specifier: ^2.8.5
-
version: 2.8.5(graphql@16.6.0)
+
specifier: ^3.0.3
+
version: 3.0.3(graphql@16.6.0)
'@graphql-codegen/typescript-operations':
-
specifier: ^2.5.10
-
version: 2.5.10(graphql@16.6.0)
+
specifier: ^3.0.3
+
version: 3.0.3(graphql@16.6.0)
graphql-language-service:
-
specifier: ^5.0.6
-
version: 5.0.6(graphql@16.6.0)
+
specifier: ^5.1.3
+
version: 5.1.3(graphql@16.6.0)
node-fetch:
specifier: ^2.0.0
version: 2.6.7
devDependencies:
-
'@changesets/cli':
-
specifier: ^2.26.1
-
version: 2.26.1
-
'@changesets/get-github-info':
-
specifier: ^0.5.2
-
version: 0.5.2
-
'@rollup/plugin-terser':
-
specifier: ^0.4.1
-
version: 0.4.1(rollup@3.20.2)
-
'@rollup/plugin-typescript':
-
specifier: ^11.1.0
-
version: 11.1.0(rollup@3.20.2)(typescript@5.0.4)
'@types/node':
specifier: ^18.15.11
version: 18.15.11
'@types/node-fetch':
specifier: ^2.6.3
version: 2.6.3
-
dotenv:
-
specifier: ^16.0.3
-
version: 16.0.3
graphql:
specifier: ^16.6.0
version: 16.6.0
-
husky:
-
specifier: ^8.0.3
-
version: 8.0.3
-
lint-staged:
-
specifier: ^13.2.1
-
version: 13.2.1
-
prettier:
-
specifier: ^2.8.7
-
version: 2.8.7
-
rollup:
-
specifier: ^3.20.2
-
version: 3.20.2
typescript:
specifier: ^5.0.0
version: 5.0.4
···
dev: true
optional: true
-
/@graphql-codegen/core@2.6.8(graphql@16.6.0):
-
resolution: {integrity: sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ==}
+
/@graphql-codegen/core@3.1.0(graphql@16.6.0):
+
resolution: {integrity: sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
-
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
+
'@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0)
'@graphql-tools/schema': 9.0.12(graphql@16.6.0)
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
-
/@graphql-codegen/plugin-helpers@3.1.1(graphql@16.6.0):
-
resolution: {integrity: sha512-+V1WK4DUhejVSbkZrAsyv9gA4oQABVrtEUkT7vWq7gSf7Ln6OEM59lDUDsjp5wpLPTBIDJANbAe3qEd+iCB3Ow==}
+
/@graphql-codegen/plugin-helpers@4.2.0(graphql@16.6.0):
+
resolution: {integrity: sha512-THFTCfg+46PXlXobYJ/OoCX6pzjI+9woQqCjdyKtgoI0tn3Xq2HUUCiidndxUpEYVrXb5pRiRXb7b/ZbMQqD0A==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
-
'@graphql-tools/utils': 8.13.1(graphql@16.6.0)
+
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
change-case-all: 1.0.15
common-tags: 1.8.2
graphql: 16.6.0
import-from: 4.0.0
lodash: 4.17.21
-
tslib: 2.4.1
+
tslib: 2.5.0
-
/@graphql-codegen/schema-ast@2.6.0(graphql@16.6.0):
-
resolution: {integrity: sha512-6wDVX/mKLXaJ3JwSflRsDJa6/+uEJ0Lg3mOQp3Ao2/jw1mijqAKjYgh1e1rcG+vzXpEmk29TC2ujsqAkKqzgMA==}
+
/@graphql-codegen/schema-ast@3.0.1(graphql@16.6.0):
+
resolution: {integrity: sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
-
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
-
'@graphql-tools/utils': 8.13.1(graphql@16.6.0)
+
'@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0)
+
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
-
/@graphql-codegen/typed-document-node@2.3.10(graphql@16.6.0):
-
resolution: {integrity: sha512-FcEKubvEl2bHZG2N7u0AwioRYQmhBDRb/JXNBoNXjv9hg32juwejbilS9WWxgcxS13nPj14byEPfHs6GDrKZLw==}
+
/@graphql-codegen/typed-document-node@3.0.2(graphql@16.6.0):
+
resolution: {integrity: sha512-RqX46y0GoMAcCfXjkUabOWpeSQ7tazpS5WyzWJNakpzXxNACx8NACaghU8zTEM+gjqtIp6YbFY/S92HQ34HbRQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
-
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
-
'@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.6.0)
+
'@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0)
+
'@graphql-codegen/visitor-plugin-common': 3.0.2(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
transitivePeerDependencies:
- encoding
- supports-color
-
/@graphql-codegen/typescript-operations@2.5.10(graphql@16.6.0):
-
resolution: {integrity: sha512-N5H7JhcMRzjM2KdvCitqkOd4hphzD9q3NVWGLvBe3Xgqx5Cs3Y4GUcCJbRolSXdQcYBVgZpLZrUe/qoxwYyfeg==}
+
/@graphql-codegen/typescript-operations@3.0.3(graphql@16.6.0):
+
resolution: {integrity: sha512-RtMRFpZ8nyXxwurdxklWVIHX9U6/fGWYWEpvarNIIci17BKajZPzdBPKP2GKhUEWzZVGNESqH3RX38jt0onLqQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
-
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
-
'@graphql-codegen/typescript': 2.8.5(graphql@16.6.0)
-
'@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.6.0)
+
'@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0)
+
'@graphql-codegen/typescript': 3.0.3(graphql@16.6.0)
+
'@graphql-codegen/visitor-plugin-common': 3.1.0(graphql@16.6.0)
auto-bind: 4.0.0
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
transitivePeerDependencies:
- encoding
- supports-color
-
/@graphql-codegen/typescript@2.8.5(graphql@16.6.0):
-
resolution: {integrity: sha512-5w3zNlnNKM9tI5ZRbhESmsJ4G16rSiFmNQX6Ot56fmcYUC6bnAt5fqvSqs2C+8fVGIIjeWuwjQA5Xn1VkaLY8A==}
+
/@graphql-codegen/typescript@3.0.3(graphql@16.6.0):
+
resolution: {integrity: sha512-oVV4/RPs3Lmr2XqywlNDmLhNBCIhefA8rYcuxoWcnd/WRc6GNRm1b2NOIzDhhF4xriVluMyk3QQVRepkdj9enw==}
peerDependencies:
graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
-
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
-
'@graphql-codegen/schema-ast': 2.6.0(graphql@16.6.0)
-
'@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.6.0)
+
'@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0)
+
'@graphql-codegen/schema-ast': 3.0.1(graphql@16.6.0)
+
'@graphql-codegen/visitor-plugin-common': 3.1.0(graphql@16.6.0)
+
auto-bind: 4.0.0
+
graphql: 16.6.0
+
tslib: 2.5.0
+
transitivePeerDependencies:
+
- encoding
+
- supports-color
+
+
/@graphql-codegen/visitor-plugin-common@3.0.2(graphql@16.6.0):
+
resolution: {integrity: sha512-dKblRFrB0Fdl3+nPlzlLBka+TN/EGwr/q09mwry0H58z3j6gXkMbsdPr+dc8MhgOV7w/8egRvSPIvd7m6eFCnw==}
+
peerDependencies:
+
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+
dependencies:
+
'@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0)
+
'@graphql-tools/optimize': 1.3.1(graphql@16.6.0)
+
'@graphql-tools/relay-operation-optimizer': 6.5.14(graphql@16.6.0)
+
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
auto-bind: 4.0.0
+
change-case-all: 1.0.15
+
dependency-graph: 0.11.0
graphql: 16.6.0
-
tslib: 2.4.1
+
graphql-tag: 2.12.6(graphql@16.6.0)
+
parse-filepath: 1.0.2
+
tslib: 2.5.0
transitivePeerDependencies:
- encoding
- supports-color
-
/@graphql-codegen/visitor-plugin-common@2.13.5(graphql@16.6.0):
-
resolution: {integrity: sha512-OV/mGnSvB/WkEqFu/3bPkAPDNRGRB3xONww5+06CObl383yGrasqM04shYYK4cpcCn9PVWFe8u0SLSEeGmMVrg==}
+
/@graphql-codegen/visitor-plugin-common@3.1.0(graphql@16.6.0):
+
resolution: {integrity: sha512-S4BO/xP38eoEDULwbem5QeV7yWA8DpbcSGkvwrnMfVQW08nL6uHliCSV8hiuAi7Mhx7snVir4Iumk8uIDRVu6Q==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
-
'@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0)
+
'@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0)
'@graphql-tools/optimize': 1.3.1(graphql@16.6.0)
'@graphql-tools/relay-operation-optimizer': 6.5.14(graphql@16.6.0)
-
'@graphql-tools/utils': 8.13.1(graphql@16.6.0)
+
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
graphql: 16.6.0
graphql-tag: 2.12.6(graphql@16.6.0)
parse-filepath: 1.0.2
-
tslib: 2.4.1
+
tslib: 2.5.0
transitivePeerDependencies:
- encoding
- supports-color
···
dependencies:
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
/@graphql-tools/optimize@1.3.1(graphql@16.6.0):
resolution: {integrity: sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==}
···
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
/@graphql-tools/relay-operation-optimizer@6.5.14(graphql@16.6.0):
resolution: {integrity: sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==}
···
'@ardatan/relay-compiler': 12.0.0(graphql@16.6.0)
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
transitivePeerDependencies:
- encoding
- supports-color
···
'@graphql-tools/merge': 8.3.14(graphql@16.6.0)
'@graphql-tools/utils': 9.1.3(graphql@16.6.0)
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
value-or-promise: 1.0.11
-
/@graphql-tools/utils@8.13.1(graphql@16.6.0):
-
resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==}
-
peerDependencies:
-
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
-
dependencies:
-
graphql: 16.6.0
-
tslib: 2.4.1
-
/@graphql-tools/utils@9.1.3(graphql@16.6.0):
resolution: {integrity: sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
/@graphql-typed-document-node/core@3.2.0(graphql@16.6.0):
resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
···
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
-
tslib: 2.4.1
+
tslib: 2.5.0
/camelcase-keys@6.2.2:
resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
···
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
dependencies:
no-case: 3.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
upper-case-first: 2.0.2
/chai@4.3.7:
···
path-case: 3.0.4
sentence-case: 3.0.4
snake-case: 3.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
/chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
···
resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==}
dependencies:
no-case: 3.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
upper-case: 2.0.2
/convert-source-map@1.9.0:
···
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
/dotenv@16.0.3:
resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
···
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
dev: true
-
/graphql-language-service@5.0.6(graphql@16.6.0):
-
resolution: {integrity: sha512-FjE23aTy45Lr5metxCv3ZgSKEZOzN7ERR+OFC1isV5mHxI0Ob8XxayLTYjQKrs8b3kOpvgTYmSmu6AyXOzYslg==}
+
/graphql-language-service@5.1.3(graphql@16.6.0):
+
resolution: {integrity: sha512-01KZLExoF53i8a2Jhgt+nVGsm9O2+jmDdwms4THSxCY+gU9FukF6X4pPLO2Gk7qZ6CVcInM8+IQx/ph4AOTOLA==}
hasBin: true
peerDependencies:
graphql: ^15.5.0 || ^16.0.0
···
graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
graphql: 16.6.0
-
tslib: 2.4.1
+
tslib: 2.5.0
/graphql@16.6.0:
resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==}
···
resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
dependencies:
capital-case: 1.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
/hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
···
/is-lower-case@2.0.2:
resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==}
dependencies:
-
tslib: 2.4.1
+
tslib: 2.5.0
/is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
···
/is-upper-case@2.0.2:
resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==}
dependencies:
-
tslib: 2.4.1
+
tslib: 2.5.0
/is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
···
/lower-case-first@2.0.2:
resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==}
dependencies:
-
tslib: 2.4.1
+
tslib: 2.5.0
/lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
-
tslib: 2.4.1
+
tslib: 2.5.0
/lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
···
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
-
tslib: 2.4.1
+
tslib: 2.5.0
/node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
···
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
/parse-filepath@1.0.2:
resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==}
···
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
/path-case@3.0.4:
resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
dependencies:
dot-case: 3.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
/path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
···
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
dependencies:
no-case: 3.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
upper-case-first: 2.0.2
/serialize-javascript@6.0.1:
···
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
dependencies:
dot-case: 3.0.4
-
tslib: 2.4.1
+
tslib: 2.5.0
/source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
···
/sponge-case@1.0.1:
resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==}
dependencies:
-
tslib: 2.4.1
+
tslib: 2.5.0
/sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
···
/swap-case@2.0.2:
resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==}
dependencies:
-
tslib: 2.4.1
+
tslib: 2.5.0
/term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
···
/title-case@3.0.3:
resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
dependencies:
-
tslib: 2.4.1
+
tslib: 2.5.0
/tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
···
/tslib@2.4.1:
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
+
dev: true
+
+
/tslib@2.5.0:
+
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
/tty-table@4.2.1:
resolution: {integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==}
···
/upper-case-first@2.0.2:
resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==}
dependencies:
-
tslib: 2.4.1
+
tslib: 2.5.0
/upper-case@2.0.2:
resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==}
dependencies:
-
tslib: 2.4.1
+
tslib: 2.5.0
/validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
···
name: '@0no-co/graphqlsp'
version: 0.1.0
dependencies:
-
'@graphql-codegen/core': 2.6.8(graphql@16.6.0)
-
'@graphql-codegen/typed-document-node': 2.3.10(graphql@16.6.0)
-
'@graphql-codegen/typescript': 2.8.5(graphql@16.6.0)
-
'@graphql-codegen/typescript-operations': 2.5.10(graphql@16.6.0)
-
graphql-language-service: 5.0.6(graphql@16.6.0)
+
'@graphql-codegen/core': 3.1.0(graphql@16.6.0)
+
'@graphql-codegen/typed-document-node': 3.0.2(graphql@16.6.0)
+
'@graphql-codegen/typescript': 3.0.3(graphql@16.6.0)
+
'@graphql-codegen/typescript-operations': 3.0.3(graphql@16.6.0)
+
graphql-language-service: 5.1.3(graphql@16.6.0)
node-fetch: 2.6.7
transitivePeerDependencies:
- encoding
+1
test/e2e/fixture-project/package.json
···
{
+
"name": "fixtures",
"private": true,
"dependencies": {
"@0no-co/graphqlsp": "workspace:*",