UNPKG

971 BJSONView Raw
1{
2 "name": "@graphql-codegen/kotlin",
3 "version": "2.1.1",
4 "description": "GraphQL Code Generator plugin for generating Kotlin code based on a GraphQL schema",
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"
7 },
8 "dependencies": {
9 "@graphql-codegen/java-common": "^2.1.1",
10 "@graphql-codegen/plugin-helpers": "^2.1.0",
11 "@graphql-codegen/visitor-plugin-common": "2.1.1",
12 "tslib": "~2.3.0"
13 },
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/dotansimha/graphql-code-generator.git",
17 "directory": "packages/plugins/java/kotlin"
18 },
19 "license": "MIT",
20 "main": "index.js",
21 "module": "index.mjs",
22 "typings": "index.d.ts",
23 "typescript": {
24 "definition": "index.d.ts"
25 },
26 "exports": {
27 ".": {
28 "require": "./index.js",
29 "import": "./index.mjs"
30 },
31 "./*": {
32 "require": "./*.js",
33 "import": "./*.mjs"
34 }
35 }
36}