diff --git a/LICENSE b/LICENSE index 3e74b1532..cad236d6a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Graphcool +Copyright (c) 2022 Jason Kuhrt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 8e2a48a15..6e7fef5e4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Minimal GraphQL client supporting Node and browsers for scripts or simple apps -![GitHub Action](https://github.com/prisma-labs/graphql-request/workflows/trunk/badge.svg) [![npm version](https://badge.fury.io/js/graphql-request.svg)](https://badge.fury.io/js/graphql-request) +![GitHub Action](https://github.com/jasonkuhrt/graphql-request/workflows/trunk/badge.svg) [![npm version](https://badge.fury.io/js/graphql-request.svg)](https://badge.fury.io/js/graphql-request) diff --git a/package.json b/package.json index 821ca3227..04960d637 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ ], "repository": { "type": "git", - "url": "https://github.com/prisma/graphql-request.git" + "url": "https://github.com/jasonkuhrt/graphql-request.git" }, "keywords": [ "graphql", @@ -23,12 +23,16 @@ "graphql-client", "apollo" ], - "author": "Prisma Labs Team", + "author": { + "name" : "Jason Kuhrt", + "email" : "jasonkuhrt@me.com", + "url" : "https://kuhrt.me" + }, "license": "MIT", "bugs": { - "url": "https://github.com/prisma/graphql-request/issues" + "url": "https://github.com/jasonkuhrt/graphql-request/issues" }, - "homepage": "https://github.com/prisma/graphql-request", + "homepage": "https://github.com/jasonkuhrt/graphql-request", "scripts": { "build:docs": "doctoc README.md --notitle", "dev": "rm -rf dist && tsc --watch", diff --git a/src/types.dom.ts b/src/types.dom.ts index 001d35cbc..b09e201f9 100644 --- a/src/types.dom.ts +++ b/src/types.dom.ts @@ -3,8 +3,8 @@ * * This module is inlined to avoid consumers needing to add dom lib to their tsconfig. For original motivations see: * - * - https://github.com/prisma-labs/graphql-request/issues/26 - * - https://github.com/prisma-labs/graphql-request/issues/15 + * - https://github.com/jasonkuhrt/graphql-request/issues/26 + * - https://github.com/jasonkuhrt/graphql-request/issues/15 */ /** This Fetch API interface allows you to perform various actions on HTTP request and response headers. These actions include retrieving, setting, adding to, and removing. A Headers object has an associated header list, which is initially empty and consists of zero or more name and value pairs.  You can add to this using methods like append() (see Examples.) In all methods of this interface, header names are matched by case-insensitive byte sequence. */