{
  "name": "@hyper-fetch/core",
  "version": "8.0.1",
  "description": "Cache, Queue and Persist your requests no matter if you are online or offline!",
  "author": "Maciej Pyrc <maciekpyrc@gmail.com>, Kacper Skawina <kacper.skawina@gmail.com>",
  "homepage": "https://hyperfetch.bettertyped.com/",
  "license": "Apache-2.0",
  "main": "dist/index.mjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "source": "src/index.ts",
  "scripts": {
    "test": "vitest run",
    "start": "yarn build && npx run-when-changed --watch 'src/**/*.ts' --exec 'yarn build'",
    "build": "vite build",
    "lint": "eslint . --fix",
    "format": "prettier --write .",
    "typecheck": "tsc --noEmit --emitDeclarationOnly false && tsc --noEmit -p __tests__/tsconfig.json",
    "tests": "yarn lint-staged",
    "release": "yarn semantic-release --extends ./release.config.js -t 'hyper-fetch-v${version}'"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.com/"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/BetterTyped/hyper-fetch.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/BetterTyped/hyper-fetch/issues"
  },
  "dependencies": {
    "events": "^3.3.0"
  },
  "devDependencies": {
    "abortcontroller-polyfill": "^1.7.5"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "vitest related --run --passWithNoTests"
    ]
  },
  "keywords": [
    "fetch",
    "xhr",
    "requests",
    "js",
    "fetcher",
    "queue",
    "offline",
    "persist",
    "cache",
    "builder",
    "command"
  ]
}
