packages/adapter-axios/package.json
{
"name": "@hyper-fetch/axios",
"version": "0.0.0",
"private": false,
"description": "Simple axios adapter for Hyper Fetch",
"author": "Kacper Skawina <kacper.skawina@gmail.com>",
"homepage": "https://hyperfetch.bettertyped.com/",
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"scripts": {
"clean": "npx rimraf dist",
"test": "jest --watchAll --maxWorkers=3",
"test-pipeline": "jest --watchAll=false --maxWorkers=1 --no-cache",
"start": "yarn build && npx run-when-changed --watch 'src/**/*.ts' --exec 'yarn build'",
"build": "yarn clean && node ../../scripts/build.js",
"postbuild": "rollup -c '../../rollup.config.js'",
"lint": "eslint . --ext .js,.jsx,.tsx,.ts --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"tests": "yarn lint-staged",
"release": "yarn semantic-release --extends ../../release.config.js -t 'hyper-fetch-axios-v${version}'"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BetterTyped/hyper-fetch.git",
"directory": "packages/adapter-axios"
},
"bugs": {
"url": "https://github.com/BetterTyped/hyper-fetch/issues"
},
"peerDependencies": {
"@hyper-fetch/core": "*",
"axios": "*"
},
"dependencies": {},
"devDependencies": {
"abortcontroller-polyfill": "^1.7.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn jest --passWithNoTests"
]
},
"keywords": [
"axios",
"adapter",
"hyper fetch"
]
}