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

Configure Feed

Select the types of activity you want to include in your feed.

chore: bump dependencies (#35)

* bump dependencies

* try in example

authored by

Jovi De Croock and committed by
GitHub
7b8a67f6 d5a225fb

+166 -134
+1 -1
.changeset/config.json
··· 4 4 "commit": false, 5 5 "access": "public", 6 6 "baseBranch": "main", 7 - "ignore": ["example"] 7 + "ignore": ["example", "fixtures"] 8 8 }
+5
.changeset/metal-carrots-wonder.md
··· 1 + --- 2 + '@0no-co/graphqlsp': patch 3 + --- 4 + 5 + Bump the graphql-code-generator and graphiql-utils dependencies
+2
packages/example/src/Pokemon.generated.ts
··· 108 108 export type FieldsFragment = { 109 109 __typename?: 'Pokemon'; 110 110 classification?: string | null; 111 + id: string; 111 112 }; 112 113 113 114 export type PokemonFieldsFragment = { ··· 130 131 kind: 'SelectionSet', 131 132 selections: [ 132 133 { kind: 'Field', name: { kind: 'Name', value: 'classification' } }, 134 + { kind: 'Field', name: { kind: 'Name', value: 'id' } }, 133 135 ], 134 136 }, 135 137 },
+1
packages/example/src/Pokemon.ts
··· 3 3 export const fields = gql` 4 4 fragment fields on Pokemon { 5 5 classification 6 + id 6 7 } 7 8 ` as typeof import('./Pokemon.generated').FieldsFragmentDoc; 8 9
+43 -3
packages/example/src/index.generated.ts
··· 113 113 __typename: 'Pokemon'; 114 114 id: string; 115 115 name: string; 116 + fleeRate?: number | null; 116 117 } | null> | null; 117 118 }; 118 119 ··· 128 129 129 130 export type PokemonQuery = { 130 131 __typename?: 'Query'; 131 - pokemon?: { __typename: 'Pokemon'; id: string; name: string } | null; 132 + pokemon?: { 133 + __typename: 'Pokemon'; 134 + id: string; 135 + fleeRate?: number | null; 136 + name: string; 137 + } | null; 132 138 }; 133 139 134 140 export const PokemonFieldsFragmentDoc = { ··· 170 176 { kind: 'Field', name: { kind: 'Name', value: 'id' } }, 171 177 { kind: 'Field', name: { kind: 'Name', value: 'name' } }, 172 178 { kind: 'Field', name: { kind: 'Name', value: '__typename' } }, 179 + { kind: 'Field', name: { kind: 'Name', value: 'fleeRate' } }, 173 180 { 174 181 kind: 'FragmentSpread', 175 182 name: { kind: 'Name', value: 'pokemonFields' }, ··· 180 187 ], 181 188 }, 182 189 }, 183 - ...PokemonFieldsFragmentDoc.definitions, 190 + { 191 + kind: 'FragmentDefinition', 192 + name: { kind: 'Name', value: 'pokemonFields' }, 193 + typeCondition: { 194 + kind: 'NamedType', 195 + name: { kind: 'Name', value: 'Pokemon' }, 196 + }, 197 + selectionSet: { 198 + kind: 'SelectionSet', 199 + selections: [ 200 + { kind: 'Field', name: { kind: 'Name', value: 'id' } }, 201 + { kind: 'Field', name: { kind: 'Name', value: 'name' } }, 202 + ], 203 + }, 204 + }, 184 205 ], 185 206 } as unknown as DocumentNode<PokemonsQuery, PokemonsQueryVariables>; 186 207 export const PokemonDocument = { ··· 220 241 kind: 'SelectionSet', 221 242 selections: [ 222 243 { kind: 'Field', name: { kind: 'Name', value: 'id' } }, 223 - { kind: 'Field', name: { kind: 'Name', value: 'name' } }, 244 + { kind: 'Field', name: { kind: 'Name', value: 'fleeRate' } }, 245 + { 246 + kind: 'FragmentSpread', 247 + name: { kind: 'Name', value: 'pokemonFields' }, 248 + }, 224 249 { kind: 'Field', name: { kind: 'Name', value: '__typename' } }, 225 250 ], 226 251 }, 227 252 }, 253 + ], 254 + }, 255 + }, 256 + { 257 + kind: 'FragmentDefinition', 258 + name: { kind: 'Name', value: 'pokemonFields' }, 259 + typeCondition: { 260 + kind: 'NamedType', 261 + name: { kind: 'Name', value: 'Pokemon' }, 262 + }, 263 + selectionSet: { 264 + kind: 'SelectionSet', 265 + selections: [ 266 + { kind: 'Field', name: { kind: 'Name', value: 'id' } }, 267 + { kind: 'Field', name: { kind: 'Name', value: 'name' } }, 228 268 ], 229 269 }, 230 270 },
+5 -2
packages/example/src/index.ts
··· 7 7 id 8 8 name 9 9 __typename 10 - 10 + fleeRate 11 11 ...pokemonFields 12 12 } 13 13 } ··· 30 30 query Pokemon($id: ID!) { 31 31 pokemon(id: $id) { 32 32 id 33 - name 33 + fleeRate 34 + ...pokemonFields 34 35 __typename 35 36 } 36 37 } 38 + 39 + ${PokemonFields} 37 40 ` as typeof import('./index.generated').PokemonDocument; 38 41 39 42 client
+5 -14
packages/graphqlsp/package.json
··· 34 34 "*.{js,ts,json,md}": "prettier --write" 35 35 }, 36 36 "devDependencies": { 37 - "@changesets/cli": "^2.26.1", 38 - "@changesets/get-github-info": "^0.5.2", 39 - "@rollup/plugin-terser": "^0.4.1", 40 - "@rollup/plugin-typescript": "^11.1.0", 41 37 "@types/node": "^18.15.11", 42 38 "@types/node-fetch": "^2.6.3", 43 - "dotenv": "^16.0.3", 44 39 "graphql": "^16.6.0", 45 - "husky": "^8.0.3", 46 - "lint-staged": "^13.2.1", 47 - "prettier": "^2.8.7", 48 - "rollup": "^3.20.2", 49 40 "typescript": "^5.0.0" 50 41 }, 51 42 "dependencies": { 52 - "@graphql-codegen/core": "^2.6.8", 53 - "@graphql-codegen/typed-document-node": "^2.3.10", 54 - "@graphql-codegen/typescript": "^2.8.5", 55 - "@graphql-codegen/typescript-operations": "^2.5.10", 56 - "graphql-language-service": "^5.0.6", 43 + "@graphql-codegen/core": "^3.1.0", 44 + "@graphql-codegen/typed-document-node": "^3.0.2", 45 + "@graphql-codegen/typescript": "^3.0.3", 46 + "@graphql-codegen/typescript-operations": "^3.0.3", 47 + "graphql-language-service": "^5.1.3", 57 48 "node-fetch": "^2.0.0" 58 49 } 59 50 }
+103 -114
pnpm-lock.yaml
··· 63 63 packages/graphqlsp: 64 64 dependencies: 65 65 '@graphql-codegen/core': 66 - specifier: ^2.6.8 67 - version: 2.6.8(graphql@16.6.0) 66 + specifier: ^3.1.0 67 + version: 3.1.0(graphql@16.6.0) 68 68 '@graphql-codegen/typed-document-node': 69 - specifier: ^2.3.10 70 - version: 2.3.10(graphql@16.6.0) 69 + specifier: ^3.0.2 70 + version: 3.0.2(graphql@16.6.0) 71 71 '@graphql-codegen/typescript': 72 - specifier: ^2.8.5 73 - version: 2.8.5(graphql@16.6.0) 72 + specifier: ^3.0.3 73 + version: 3.0.3(graphql@16.6.0) 74 74 '@graphql-codegen/typescript-operations': 75 - specifier: ^2.5.10 76 - version: 2.5.10(graphql@16.6.0) 75 + specifier: ^3.0.3 76 + version: 3.0.3(graphql@16.6.0) 77 77 graphql-language-service: 78 - specifier: ^5.0.6 79 - version: 5.0.6(graphql@16.6.0) 78 + specifier: ^5.1.3 79 + version: 5.1.3(graphql@16.6.0) 80 80 node-fetch: 81 81 specifier: ^2.0.0 82 82 version: 2.6.7 83 83 devDependencies: 84 - '@changesets/cli': 85 - specifier: ^2.26.1 86 - version: 2.26.1 87 - '@changesets/get-github-info': 88 - specifier: ^0.5.2 89 - version: 0.5.2 90 - '@rollup/plugin-terser': 91 - specifier: ^0.4.1 92 - version: 0.4.1(rollup@3.20.2) 93 - '@rollup/plugin-typescript': 94 - specifier: ^11.1.0 95 - version: 11.1.0(rollup@3.20.2)(typescript@5.0.4) 96 84 '@types/node': 97 85 specifier: ^18.15.11 98 86 version: 18.15.11 99 87 '@types/node-fetch': 100 88 specifier: ^2.6.3 101 89 version: 2.6.3 102 - dotenv: 103 - specifier: ^16.0.3 104 - version: 16.0.3 105 90 graphql: 106 91 specifier: ^16.6.0 107 92 version: 16.6.0 108 - husky: 109 - specifier: ^8.0.3 110 - version: 8.0.3 111 - lint-staged: 112 - specifier: ^13.2.1 113 - version: 13.2.1 114 - prettier: 115 - specifier: ^2.8.7 116 - version: 2.8.7 117 - rollup: 118 - specifier: ^3.20.2 119 - version: 3.20.2 120 93 typescript: 121 94 specifier: ^5.0.0 122 95 version: 5.0.4 ··· 1070 1043 dev: true 1071 1044 optional: true 1072 1045 1073 - /@graphql-codegen/core@2.6.8(graphql@16.6.0): 1074 - resolution: {integrity: sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ==} 1046 + /@graphql-codegen/core@3.1.0(graphql@16.6.0): 1047 + resolution: {integrity: sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==} 1075 1048 peerDependencies: 1076 1049 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 1077 1050 dependencies: 1078 - '@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0) 1051 + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) 1079 1052 '@graphql-tools/schema': 9.0.12(graphql@16.6.0) 1080 1053 '@graphql-tools/utils': 9.1.3(graphql@16.6.0) 1081 1054 graphql: 16.6.0 1082 - tslib: 2.4.1 1055 + tslib: 2.5.0 1083 1056 1084 - /@graphql-codegen/plugin-helpers@3.1.1(graphql@16.6.0): 1085 - resolution: {integrity: sha512-+V1WK4DUhejVSbkZrAsyv9gA4oQABVrtEUkT7vWq7gSf7Ln6OEM59lDUDsjp5wpLPTBIDJANbAe3qEd+iCB3Ow==} 1057 + /@graphql-codegen/plugin-helpers@4.2.0(graphql@16.6.0): 1058 + resolution: {integrity: sha512-THFTCfg+46PXlXobYJ/OoCX6pzjI+9woQqCjdyKtgoI0tn3Xq2HUUCiidndxUpEYVrXb5pRiRXb7b/ZbMQqD0A==} 1086 1059 peerDependencies: 1087 1060 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 1088 1061 dependencies: 1089 - '@graphql-tools/utils': 8.13.1(graphql@16.6.0) 1062 + '@graphql-tools/utils': 9.1.3(graphql@16.6.0) 1090 1063 change-case-all: 1.0.15 1091 1064 common-tags: 1.8.2 1092 1065 graphql: 16.6.0 1093 1066 import-from: 4.0.0 1094 1067 lodash: 4.17.21 1095 - tslib: 2.4.1 1068 + tslib: 2.5.0 1096 1069 1097 - /@graphql-codegen/schema-ast@2.6.0(graphql@16.6.0): 1098 - resolution: {integrity: sha512-6wDVX/mKLXaJ3JwSflRsDJa6/+uEJ0Lg3mOQp3Ao2/jw1mijqAKjYgh1e1rcG+vzXpEmk29TC2ujsqAkKqzgMA==} 1070 + /@graphql-codegen/schema-ast@3.0.1(graphql@16.6.0): 1071 + resolution: {integrity: sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==} 1099 1072 peerDependencies: 1100 1073 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 1101 1074 dependencies: 1102 - '@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0) 1103 - '@graphql-tools/utils': 8.13.1(graphql@16.6.0) 1075 + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) 1076 + '@graphql-tools/utils': 9.1.3(graphql@16.6.0) 1104 1077 graphql: 16.6.0 1105 - tslib: 2.4.1 1078 + tslib: 2.5.0 1106 1079 1107 - /@graphql-codegen/typed-document-node@2.3.10(graphql@16.6.0): 1108 - resolution: {integrity: sha512-FcEKubvEl2bHZG2N7u0AwioRYQmhBDRb/JXNBoNXjv9hg32juwejbilS9WWxgcxS13nPj14byEPfHs6GDrKZLw==} 1080 + /@graphql-codegen/typed-document-node@3.0.2(graphql@16.6.0): 1081 + resolution: {integrity: sha512-RqX46y0GoMAcCfXjkUabOWpeSQ7tazpS5WyzWJNakpzXxNACx8NACaghU8zTEM+gjqtIp6YbFY/S92HQ34HbRQ==} 1109 1082 peerDependencies: 1110 1083 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 1111 1084 dependencies: 1112 - '@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0) 1113 - '@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.6.0) 1085 + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) 1086 + '@graphql-codegen/visitor-plugin-common': 3.0.2(graphql@16.6.0) 1114 1087 auto-bind: 4.0.0 1115 1088 change-case-all: 1.0.15 1116 1089 graphql: 16.6.0 1117 - tslib: 2.4.1 1090 + tslib: 2.5.0 1118 1091 transitivePeerDependencies: 1119 1092 - encoding 1120 1093 - supports-color 1121 1094 1122 - /@graphql-codegen/typescript-operations@2.5.10(graphql@16.6.0): 1123 - resolution: {integrity: sha512-N5H7JhcMRzjM2KdvCitqkOd4hphzD9q3NVWGLvBe3Xgqx5Cs3Y4GUcCJbRolSXdQcYBVgZpLZrUe/qoxwYyfeg==} 1095 + /@graphql-codegen/typescript-operations@3.0.3(graphql@16.6.0): 1096 + resolution: {integrity: sha512-RtMRFpZ8nyXxwurdxklWVIHX9U6/fGWYWEpvarNIIci17BKajZPzdBPKP2GKhUEWzZVGNESqH3RX38jt0onLqQ==} 1124 1097 peerDependencies: 1125 1098 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 1126 1099 dependencies: 1127 - '@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0) 1128 - '@graphql-codegen/typescript': 2.8.5(graphql@16.6.0) 1129 - '@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.6.0) 1100 + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) 1101 + '@graphql-codegen/typescript': 3.0.3(graphql@16.6.0) 1102 + '@graphql-codegen/visitor-plugin-common': 3.1.0(graphql@16.6.0) 1130 1103 auto-bind: 4.0.0 1131 1104 graphql: 16.6.0 1132 - tslib: 2.4.1 1105 + tslib: 2.5.0 1133 1106 transitivePeerDependencies: 1134 1107 - encoding 1135 1108 - supports-color 1136 1109 1137 - /@graphql-codegen/typescript@2.8.5(graphql@16.6.0): 1138 - resolution: {integrity: sha512-5w3zNlnNKM9tI5ZRbhESmsJ4G16rSiFmNQX6Ot56fmcYUC6bnAt5fqvSqs2C+8fVGIIjeWuwjQA5Xn1VkaLY8A==} 1110 + /@graphql-codegen/typescript@3.0.3(graphql@16.6.0): 1111 + resolution: {integrity: sha512-oVV4/RPs3Lmr2XqywlNDmLhNBCIhefA8rYcuxoWcnd/WRc6GNRm1b2NOIzDhhF4xriVluMyk3QQVRepkdj9enw==} 1139 1112 peerDependencies: 1140 1113 graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 1141 1114 dependencies: 1142 - '@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0) 1143 - '@graphql-codegen/schema-ast': 2.6.0(graphql@16.6.0) 1144 - '@graphql-codegen/visitor-plugin-common': 2.13.5(graphql@16.6.0) 1115 + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) 1116 + '@graphql-codegen/schema-ast': 3.0.1(graphql@16.6.0) 1117 + '@graphql-codegen/visitor-plugin-common': 3.1.0(graphql@16.6.0) 1118 + auto-bind: 4.0.0 1119 + graphql: 16.6.0 1120 + tslib: 2.5.0 1121 + transitivePeerDependencies: 1122 + - encoding 1123 + - supports-color 1124 + 1125 + /@graphql-codegen/visitor-plugin-common@3.0.2(graphql@16.6.0): 1126 + resolution: {integrity: sha512-dKblRFrB0Fdl3+nPlzlLBka+TN/EGwr/q09mwry0H58z3j6gXkMbsdPr+dc8MhgOV7w/8egRvSPIvd7m6eFCnw==} 1127 + peerDependencies: 1128 + 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 1129 + dependencies: 1130 + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) 1131 + '@graphql-tools/optimize': 1.3.1(graphql@16.6.0) 1132 + '@graphql-tools/relay-operation-optimizer': 6.5.14(graphql@16.6.0) 1133 + '@graphql-tools/utils': 9.1.3(graphql@16.6.0) 1145 1134 auto-bind: 4.0.0 1135 + change-case-all: 1.0.15 1136 + dependency-graph: 0.11.0 1146 1137 graphql: 16.6.0 1147 - tslib: 2.4.1 1138 + graphql-tag: 2.12.6(graphql@16.6.0) 1139 + parse-filepath: 1.0.2 1140 + tslib: 2.5.0 1148 1141 transitivePeerDependencies: 1149 1142 - encoding 1150 1143 - supports-color 1151 1144 1152 - /@graphql-codegen/visitor-plugin-common@2.13.5(graphql@16.6.0): 1153 - resolution: {integrity: sha512-OV/mGnSvB/WkEqFu/3bPkAPDNRGRB3xONww5+06CObl383yGrasqM04shYYK4cpcCn9PVWFe8u0SLSEeGmMVrg==} 1145 + /@graphql-codegen/visitor-plugin-common@3.1.0(graphql@16.6.0): 1146 + resolution: {integrity: sha512-S4BO/xP38eoEDULwbem5QeV7yWA8DpbcSGkvwrnMfVQW08nL6uHliCSV8hiuAi7Mhx7snVir4Iumk8uIDRVu6Q==} 1154 1147 peerDependencies: 1155 1148 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 1156 1149 dependencies: 1157 - '@graphql-codegen/plugin-helpers': 3.1.1(graphql@16.6.0) 1150 + '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) 1158 1151 '@graphql-tools/optimize': 1.3.1(graphql@16.6.0) 1159 1152 '@graphql-tools/relay-operation-optimizer': 6.5.14(graphql@16.6.0) 1160 - '@graphql-tools/utils': 8.13.1(graphql@16.6.0) 1153 + '@graphql-tools/utils': 9.1.3(graphql@16.6.0) 1161 1154 auto-bind: 4.0.0 1162 1155 change-case-all: 1.0.15 1163 1156 dependency-graph: 0.11.0 1164 1157 graphql: 16.6.0 1165 1158 graphql-tag: 2.12.6(graphql@16.6.0) 1166 1159 parse-filepath: 1.0.2 1167 - tslib: 2.4.1 1160 + tslib: 2.5.0 1168 1161 transitivePeerDependencies: 1169 1162 - encoding 1170 1163 - supports-color ··· 1176 1169 dependencies: 1177 1170 '@graphql-tools/utils': 9.1.3(graphql@16.6.0) 1178 1171 graphql: 16.6.0 1179 - tslib: 2.4.1 1172 + tslib: 2.5.0 1180 1173 1181 1174 /@graphql-tools/optimize@1.3.1(graphql@16.6.0): 1182 1175 resolution: {integrity: sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==} ··· 1184 1177 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 1185 1178 dependencies: 1186 1179 graphql: 16.6.0 1187 - tslib: 2.4.1 1180 + tslib: 2.5.0 1188 1181 1189 1182 /@graphql-tools/relay-operation-optimizer@6.5.14(graphql@16.6.0): 1190 1183 resolution: {integrity: sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==} ··· 1194 1187 '@ardatan/relay-compiler': 12.0.0(graphql@16.6.0) 1195 1188 '@graphql-tools/utils': 9.1.3(graphql@16.6.0) 1196 1189 graphql: 16.6.0 1197 - tslib: 2.4.1 1190 + tslib: 2.5.0 1198 1191 transitivePeerDependencies: 1199 1192 - encoding 1200 1193 - supports-color ··· 1207 1200 '@graphql-tools/merge': 8.3.14(graphql@16.6.0) 1208 1201 '@graphql-tools/utils': 9.1.3(graphql@16.6.0) 1209 1202 graphql: 16.6.0 1210 - tslib: 2.4.1 1203 + tslib: 2.5.0 1211 1204 value-or-promise: 1.0.11 1212 1205 1213 - /@graphql-tools/utils@8.13.1(graphql@16.6.0): 1214 - resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} 1215 - peerDependencies: 1216 - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 1217 - dependencies: 1218 - graphql: 16.6.0 1219 - tslib: 2.4.1 1220 - 1221 1206 /@graphql-tools/utils@9.1.3(graphql@16.6.0): 1222 1207 resolution: {integrity: sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==} 1223 1208 peerDependencies: 1224 1209 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 1225 1210 dependencies: 1226 1211 graphql: 16.6.0 1227 - tslib: 2.4.1 1212 + tslib: 2.5.0 1228 1213 1229 1214 /@graphql-typed-document-node/core@3.2.0(graphql@16.6.0): 1230 1215 resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} ··· 1694 1679 resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} 1695 1680 dependencies: 1696 1681 pascal-case: 3.1.2 1697 - tslib: 2.4.1 1682 + tslib: 2.5.0 1698 1683 1699 1684 /camelcase-keys@6.2.2: 1700 1685 resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} ··· 1716 1701 resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} 1717 1702 dependencies: 1718 1703 no-case: 3.0.4 1719 - tslib: 2.4.1 1704 + tslib: 2.5.0 1720 1705 upper-case-first: 2.0.2 1721 1706 1722 1707 /chai@4.3.7: ··· 1780 1765 path-case: 3.0.4 1781 1766 sentence-case: 3.0.4 1782 1767 snake-case: 3.0.4 1783 - tslib: 2.4.1 1768 + tslib: 2.5.0 1784 1769 1785 1770 /chardet@0.7.0: 1786 1771 resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} ··· 1906 1891 resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} 1907 1892 dependencies: 1908 1893 no-case: 3.0.4 1909 - tslib: 2.4.1 1894 + tslib: 2.5.0 1910 1895 upper-case: 2.0.2 1911 1896 1912 1897 /convert-source-map@1.9.0: ··· 2038 2023 resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} 2039 2024 dependencies: 2040 2025 no-case: 3.0.4 2041 - tslib: 2.4.1 2026 + tslib: 2.5.0 2042 2027 2043 2028 /dotenv@16.0.3: 2044 2029 resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} ··· 2437 2422 resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 2438 2423 dev: true 2439 2424 2440 - /graphql-language-service@5.0.6(graphql@16.6.0): 2441 - resolution: {integrity: sha512-FjE23aTy45Lr5metxCv3ZgSKEZOzN7ERR+OFC1isV5mHxI0Ob8XxayLTYjQKrs8b3kOpvgTYmSmu6AyXOzYslg==} 2425 + /graphql-language-service@5.1.3(graphql@16.6.0): 2426 + resolution: {integrity: sha512-01KZLExoF53i8a2Jhgt+nVGsm9O2+jmDdwms4THSxCY+gU9FukF6X4pPLO2Gk7qZ6CVcInM8+IQx/ph4AOTOLA==} 2442 2427 hasBin: true 2443 2428 peerDependencies: 2444 2429 graphql: ^15.5.0 || ^16.0.0 ··· 2454 2439 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 2455 2440 dependencies: 2456 2441 graphql: 16.6.0 2457 - tslib: 2.4.1 2442 + tslib: 2.5.0 2458 2443 2459 2444 /graphql@16.6.0: 2460 2445 resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==} ··· 2511 2496 resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} 2512 2497 dependencies: 2513 2498 capital-case: 1.0.4 2514 - tslib: 2.4.1 2499 + tslib: 2.5.0 2515 2500 2516 2501 /hosted-git-info@2.8.9: 2517 2502 resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} ··· 2662 2647 /is-lower-case@2.0.2: 2663 2648 resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==} 2664 2649 dependencies: 2665 - tslib: 2.4.1 2650 + tslib: 2.5.0 2666 2651 2667 2652 /is-negative-zero@2.0.2: 2668 2653 resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} ··· 2752 2737 /is-upper-case@2.0.2: 2753 2738 resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==} 2754 2739 dependencies: 2755 - tslib: 2.4.1 2740 + tslib: 2.5.0 2756 2741 2757 2742 /is-weakref@1.0.2: 2758 2743 resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} ··· 2929 2914 /lower-case-first@2.0.2: 2930 2915 resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} 2931 2916 dependencies: 2932 - tslib: 2.4.1 2917 + tslib: 2.5.0 2933 2918 2934 2919 /lower-case@2.0.2: 2935 2920 resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} 2936 2921 dependencies: 2937 - tslib: 2.4.1 2922 + tslib: 2.5.0 2938 2923 2939 2924 /lru-cache@4.1.5: 2940 2925 resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} ··· 3080 3065 resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} 3081 3066 dependencies: 3082 3067 lower-case: 2.0.2 3083 - tslib: 2.4.1 3068 + tslib: 2.5.0 3084 3069 3085 3070 /node-fetch@2.6.7: 3086 3071 resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} ··· 3234 3219 resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} 3235 3220 dependencies: 3236 3221 dot-case: 3.0.4 3237 - tslib: 2.4.1 3222 + tslib: 2.5.0 3238 3223 3239 3224 /parse-filepath@1.0.2: 3240 3225 resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} ··· 3258 3243 resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} 3259 3244 dependencies: 3260 3245 no-case: 3.0.4 3261 - tslib: 2.4.1 3246 + tslib: 2.5.0 3262 3247 3263 3248 /path-case@3.0.4: 3264 3249 resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} 3265 3250 dependencies: 3266 3251 dot-case: 3.0.4 3267 - tslib: 2.4.1 3252 + tslib: 2.5.0 3268 3253 3269 3254 /path-exists@4.0.0: 3270 3255 resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} ··· 3560 3545 resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} 3561 3546 dependencies: 3562 3547 no-case: 3.0.4 3563 - tslib: 2.4.1 3548 + tslib: 2.5.0 3564 3549 upper-case-first: 2.0.2 3565 3550 3566 3551 /serialize-javascript@6.0.1: ··· 3670 3655 resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} 3671 3656 dependencies: 3672 3657 dot-case: 3.0.4 3673 - tslib: 2.4.1 3658 + tslib: 2.5.0 3674 3659 3675 3660 /source-map-js@1.0.2: 3676 3661 resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} ··· 3721 3706 /sponge-case@1.0.1: 3722 3707 resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} 3723 3708 dependencies: 3724 - tslib: 2.4.1 3709 + tslib: 2.5.0 3725 3710 3726 3711 /sprintf-js@1.0.3: 3727 3712 resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} ··· 3844 3829 /swap-case@2.0.2: 3845 3830 resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} 3846 3831 dependencies: 3847 - tslib: 2.4.1 3832 + tslib: 2.5.0 3848 3833 3849 3834 /term-size@2.2.1: 3850 3835 resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} ··· 3888 3873 /title-case@3.0.3: 3889 3874 resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} 3890 3875 dependencies: 3891 - tslib: 2.4.1 3876 + tslib: 2.5.0 3892 3877 3893 3878 /tmp@0.0.33: 3894 3879 resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} ··· 3918 3903 3919 3904 /tslib@2.4.1: 3920 3905 resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} 3906 + dev: true 3907 + 3908 + /tslib@2.5.0: 3909 + resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} 3921 3910 3922 3911 /tty-table@4.2.1: 3923 3912 resolution: {integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==} ··· 4010 3999 /upper-case-first@2.0.2: 4011 4000 resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} 4012 4001 dependencies: 4013 - tslib: 2.4.1 4002 + tslib: 2.5.0 4014 4003 4015 4004 /upper-case@2.0.2: 4016 4005 resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} 4017 4006 dependencies: 4018 - tslib: 2.4.1 4007 + tslib: 2.5.0 4019 4008 4020 4009 /validate-npm-package-license@3.0.4: 4021 4010 resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} ··· 4331 4320 name: '@0no-co/graphqlsp' 4332 4321 version: 0.1.0 4333 4322 dependencies: 4334 - '@graphql-codegen/core': 2.6.8(graphql@16.6.0) 4335 - '@graphql-codegen/typed-document-node': 2.3.10(graphql@16.6.0) 4336 - '@graphql-codegen/typescript': 2.8.5(graphql@16.6.0) 4337 - '@graphql-codegen/typescript-operations': 2.5.10(graphql@16.6.0) 4338 - graphql-language-service: 5.0.6(graphql@16.6.0) 4323 + '@graphql-codegen/core': 3.1.0(graphql@16.6.0) 4324 + '@graphql-codegen/typed-document-node': 3.0.2(graphql@16.6.0) 4325 + '@graphql-codegen/typescript': 3.0.3(graphql@16.6.0) 4326 + '@graphql-codegen/typescript-operations': 3.0.3(graphql@16.6.0) 4327 + graphql-language-service: 5.1.3(graphql@16.6.0) 4339 4328 node-fetch: 2.6.7 4340 4329 transitivePeerDependencies: 4341 4330 - encoding
+1
test/e2e/fixture-project/package.json
··· 1 1 { 2 + "name": "fixtures", 2 3 "private": true, 3 4 "dependencies": { 4 5 "@0no-co/graphqlsp": "workspace:*",