{
  "name": "graphql-quest",
  "version": "1.1.3",
  "description": "Ultra-minimal library for making GraphQL requests.",
  "main": "./dist/index.umd.js",
  "module": "./dist/index.es.js",
  "exports": {
    "import": "./dist/index.es.js",
    "require": "./dist/index.umd.js"
  },
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "author": "Alex MacArthur <alex@macarthur.me> (https://macarthur.me)",
  "homepage": "https://github.com/alexmacarthur/graphql-quest",
  "scripts": {
    "start": "vite serve",
    "build": "vite build && tsc",
    "watch": "vite",
    "prettify": "prettier \"./**/*.{ts,md}\" --write",
    "test": "vitest run src",
    "prepare": "husky install"
  },
  "files": [
    "src",
    "dist"
  ],
  "keywords": [
    "graphql",
    "request",
    "gql"
  ],
  "license": "ISC",
  "devDependencies": {
    "husky": "^8.0.2",
    "lint-staged": "^13.1.0",
    "prettier": "^2.8.1",
    "typescript": "^4.9.4",
    "vite": "^4.0.1",
    "vitest": "^0.25.7"
  },
  "lint-staged": {
    "*.{ts,js,md}": "prettier --write"
  }
}
