From 2cf443bf868bce93dc98db457a16ad126d732f5d Mon Sep 17 00:00:00 2001 From: Alex Kondratyuk Date: Sun, 12 Jul 2020 23:25:01 +0300 Subject: [PATCH] chore: add links to package.json --- README.md | 4 ++++ package.json | 17 ++++++++++++----- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d273cc5..352f869 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,11 @@ GraphQL Client with file upload support for NodeJS and browser ## Install ```sh +# Install client npm install awesome-graphql-client + +# Install graphql if not present +npm install graphql ``` ## Quick Start diff --git a/package.json b/package.json index e4f7413..988840b 100644 --- a/package.json +++ b/package.json @@ -2,14 +2,24 @@ "name": "awesome-graphql-client", "version": "0.1.0", "description": "GraphQL Client with file upload support for NodeJS and browser", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", + "author": "Alex Kondratyuk ", + "repository": "https://github.com/lynxtaa/awesome-graphql-client.git", + "homepage": "https://github.com/lynxtaa/awesome-graphql-client#readme", + "license": "MIT", + "keywords": [ + "graphql", + "request", + "graphql-client", + "apollo" + ], "files": [ "dist", "src", "LICENSE", "README.md" ], + "main": "./dist/index.js", + "types": "./dist/index.d.ts", "scripts": { "prepublishOnly": "npm run build", "prebuild": "rimraf dist/", @@ -43,9 +53,6 @@ "/test/setupTests.ts" ] }, - "keywords": [], - "author": "Alex Kondratyuk", - "license": "MIT", "peerDependencies": { "graphql": "14.x || 15.x" },