UNPKG

1.11 kBJSONView Raw
1{
2 "name": "@graphql-codegen/typescript-operations",
3 "version": "2.4.0",
4 "description": "GraphQL Code Generator plugin for generating TypeScript types for GraphQL queries, mutations, subscriptions and fragments",
5 "peerDependencies": {
6 "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"
7 },
8 "dependencies": {
9 "@graphql-codegen/plugin-helpers": "^2.4.0",
10 "@graphql-codegen/typescript": "^2.4.11",
11 "@graphql-codegen/visitor-plugin-common": "2.8.0",
12 "auto-bind": "~4.0.0",
13 "tslib": "~2.4.0"
14 },
15 "repository": {
16 "type": "git",
17 "url": "https://github.com/dotansimha/graphql-code-generator.git",
18 "directory": "packages/plugins/typescript/operations"
19 },
20 "license": "MIT",
21 "main": "index.js",
22 "module": "index.mjs",
23 "typings": "index.d.ts",
24 "typescript": {
25 "definition": "index.d.ts"
26 },
27 "exports": {
28 "./package.json": "./package.json",
29 ".": {
30 "require": "./index.js",
31 "import": "./index.mjs"
32 },
33 "./*": {
34 "require": "./*.js",
35 "import": "./*.mjs"
36 }
37 }
38}