UNPKG

986 BJSONView Raw
1{
2 "name": "@graphql-codegen/typescript-type-graphql",
3 "version": "2.1.2",
4 "description": "GraphQL Code Generator plugin for generating TypeGraphQL compatible TypeScript types",
5 "peerDependencies": {
6 "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
7 },
8 "dependencies": {
9 "@graphql-codegen/plugin-helpers": "^2.1.1",
10 "@graphql-codegen/typescript": "^2.1.2",
11 "@graphql-codegen/visitor-plugin-common": "2.1.2",
12 "auto-bind": "~4.0.0",
13 "tslib": "~2.3.0"
14 },
15 "repository": {
16 "type": "git",
17 "url": "https://github.com/dotansimha/graphql-code-generator.git",
18 "directory": "packages/plugins/typescript/type-graphql"
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 ".": {
29 "require": "./index.js",
30 "import": "./index.mjs"
31 },
32 "./*": {
33 "require": "./*.js",
34 "import": "./*.mjs"
35 }
36 }
37}