{
  "name": "@giraphql/plugin-simple-objects",
  "version": "2.13.0",
  "description": "A GiraphQL plugin for defining objects and interfaces without ts definitions for those types",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "module": "./esm/index.js",
  "exports": {
    "import": "./esm/index.js",
    "require": "./lib/index.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hayes/giraphql.git"
  },
  "author": "Michael Hayes",
  "license": "ISC",
  "keywords": [
    "giraphql",
    "graphql",
    "schema",
    "typescript",
    "simple",
    "object",
    "interface",
    "plugin"
  ],
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "graphql": ">=15.1.0"
  },
  "devDependencies": {
    "@giraphql/core": "^2.22.0",
    "@giraphql/test-utils": "^0.6.0",
    "graphql": "16.1.0",
    "graphql-tag": "^2.12.6"
  },
  "gitHead": "9dfe52f1975f41a111e01bf96a20033a914e2acc",
  "scripts": {
    "type": "tsc --noEmit && tsc --project tests/tsconfig.json",
    "build": "pnpm build:cjs && pnpm build:esm",
    "build:cjs": "tsc --module commonjs --outDir lib",
    "build:esm": "tsc --module es2020 --outDir esm && pnpm esm:extensions",
    "esm:extensions": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\" ../../.config/esm-transformer.ts",
    "test": "pnpm jest"
  }
}