{
  "name": "@sec-ant/gm-fetch",
  "description": "A fetch API for GM_xmlhttpRequest / GM.xmlHttpRequest",
  "private": false,
  "version": "1.2.4",
  "type": "module",
  "files": [
    "./dist"
  ],
  "browser": "./dist/index.iife.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Sec-ant/gm-fetch.git"
  },
  "homepage": "https://github.com/Sec-ant/gm-fetch",
  "bugs": {
    "url": "https://github.com/Sec-ant/gm-fetch/issues",
    "email": "zezhengwu@proton.me"
  },
  "keywords": [
    "fetch",
    "gm-fetch",
    "GM_xmlhttpRequest",
    "Tampermonkey",
    "Violentmonkey",
    "Greasemonkey",
    "userscript"
  ],
  "author": {
    "name": "Ze-Zheng Wu"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.13",
    "@changesets/cli": "^2.31.0",
    "@commitlint/cli": "^20.5.2",
    "@commitlint/config-conventional": "^20.5.0",
    "@types/node": "^25.6.0",
    "lint-staged": "^16.4.0",
    "prettier": "^3.8.3",
    "pretty-quick": "^4.2.2",
    "rimraf": "^6.1.3",
    "simple-git-hooks": "^2.13.1",
    "typescript": "^6.0.3",
    "vite": "^8.0.10",
    "vite-plugin-monkey": "^7.1.9"
  },
  "scripts": {
    "update-hooks": "simple-git-hooks",
    "changeset": "changeset",
    "bump": "changeset version 2>/dev/null | grep . && npm i; exit 0",
    "dev": "vite -m monkey",
    "lint": "biome lint",
    "clean": "rimraf ./dist",
    "type-check": "tsc --noEmit --emitDeclarationOnly false",
    "format:prettier": "pretty-quick",
    "format:biome": "biome format --write",
    "format": "pnpm -s format:prettier && pnpm -s format:biome",
    "check:biome": "biome check --write",
    "check": "pnpm -s format:prettier && pnpm -s check:biome",
    "build:es": "vite build -m es",
    "build:iife": "vite build -m iife",
    "build:monkey": "vite build -m monkey",
    "prebuild": "pnpm -s check && pnpm -s type-check && pnpm -s clean",
    "build": "pnpm -s build:es && pnpm -s build:iife && pnpm -s build:monkey",
    "postbuild": "tsc",
    "preview": "vite preview -m monkey",
    "bump-biome:latest": "pnpm add -DE @biomejs/biome@latest",
    "bump-biome:nightly": "pnpm add -DE @biomejs/biome@nightly"
  }
}