{
  "name": "@nhost/stripe-graphql-js",
  "version": "1.3.0",
  "description": "Stripe GraphQL API",
  "type": "module",
  "main": "./dist/stripe-graphql-js.cjs",
  "module": "./dist/stripe-graphql-js.js",
  "types": "./dist/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/stripe-graphql-js.js",
      "require": "./dist/stripe-graphql-js.cjs"
    }
  },
  "license": "MIT",
  "keywords": [
    "stripe",
    "graphql",
    "api",
    "nhost",
    "hasura"
  ],
  "author": "Nhost",
  "homepage": "https://nhost.io",
  "bugs": "https://github.com/nhost/nhost/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/nhost/nhost.git"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=22"
  },
  "sideEffects": false,
  "dependencies": {
    "@pothos/core": "^3.41.0",
    "graphql": "16.8.1",
    "graphql-scalars": "^1.23.0",
    "graphql-yoga": "^5.16.0",
    "jsonwebtoken": "^9.0.3",
    "stripe": "^11.18.0",
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^16.0.2",
    "@types/jsonwebtoken": "^9.0.6",
    "@types/node": "^20.14.8",
    "rollup": "^4.59.0",
    "rollup-plugin-peer-deps-external": "^2.2.4",
    "terser": "^5.39.0",
    "typescript": "^5.8.3"
  },
  "scripts": {
    "build": "rm -rf dist && pnpm build:types && pnpm build:js",
    "build:types": "pnpm tsc -p tsconfig.json",
    "build:js": "pnpm vite build --config vite.config.ts",
    "generate": "echo 'nothing to generate'",
    "test": "pnpm test:typecheck && pnpm test:lint",
    "test:lint": "biome check",
    "test:typecheck": "pnpm tsc --noEmit",
    "format": "biome format --write"
  }
}