@urql/exchange-auth
Version:
An exchange for managing authentication and token refresh in urql
64 lines • 1.57 kB
JSON
{
"name": "@urql/exchange-auth",
"version": "3.0.0",
"description": "An exchange for managing authentication and token refresh in urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
"bugs": "https://github.com/urql-graphql/urql/issues",
"license": "MIT",
"author": "urql GraphQL Contributors",
"repository": {
"type": "git",
"url": "https://github.com/urql-graphql/urql.git",
"directory": "exchanges/auth"
},
"keywords": [
"urql",
"exchange",
"auth",
"authentication",
"graphql",
"exchanges"
],
"main": "dist/urql-exchange-auth",
"module": "dist/urql-exchange-auth.mjs",
"types": "dist/urql-exchange-auth.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"types": "./dist/urql-exchange-auth.d.ts",
"import": "./dist/urql-exchange-auth.mjs",
"require": "./dist/urql-exchange-auth.js",
"source": "./src/index.ts"
},
"./package.json": "./package.json"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"dist/"
],
"peerDependencies": {
"@urql/core": "^6.0.0"
},
"dependencies": {
"@urql/core": "^6.0.0",
"wonka": "^6.3.2"
},
"devDependencies": {
"graphql": "^16.0.0",
"@urql/core": "6.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"test": "vitest",
"clean": "rimraf dist extras",
"check": "tsc --noEmit",
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.mjs"
}
}