{
  "name": "@forklaunch/universal-sdk",
  "version": "0.6.1",
  "description": "Cross runtime fetch library for forklaunch router sdks",
  "keywords": [
    "fetch",
    "http",
    "express",
    "hyper-express"
  ],
  "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
  "bugs": {
    "url": "https://github.com/forklaunch/forklaunch-js/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/forklaunch/forklaunch-js.git"
  },
  "license": "MIT",
  "author": "Rohin Bhargava",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.mjs",
      "require": "./lib/index.js",
      "default": "./lib/index.js"
    }
  },
  "types": "lib/index.d.ts",
  "files": [
    "lib/**"
  ],
  "dependencies": {
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1",
    "@forklaunch/common": "0.5.1"
  },
  "devDependencies": {
    "@types/node": "^24.3.0",
    "@typescript/native-preview": "7.0.0-dev.20250821.1",
    "fetch-mock": "^12.5.3",
    "jest": "^30.0.5",
    "openapi3-ts": "^4.5.0",
    "prettier": "^3.6.2",
    "ts-jest": "^29.4.1",
    "tsup": "^8.5.0",
    "typedoc": "^0.28.10"
  },
  "scripts": {
    "build": "tsgo --noEmit && tsup index.ts --format cjs,esm --no-splitting --dts --tsconfig tsconfig.json --out-dir lib --clean",
    "clean": "rm -rf lib pnpm.lock.yaml node_modules",
    "docs": "typedoc --out docs *",
    "format": "prettier --ignore-path=.prettierignore --config .prettierrc '**/*.{ts,tsx,json}' --write",
    "lint": "eslint . -c eslint.config.mjs",
    "lint:fix": "eslint . -c eslint.config.mjs --fix",
    "publish:package": "./publish-package.bash",
    "test": "vitest --passWithNoTests"
  }
}