{
  "name": "sync-request-curl",
  "repository": {
    "type": "git",
    "url": "https://github.com/nktnet1/sync-request-curl"
  },
  "version": "3.3.3",
  "files": [
    "dist"
  ],
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "keywords": [
    "sync",
    "sync-request",
    "synchronous",
    "request",
    "fast",
    "quick",
    "speed",
    "performance",
    "http",
    "https",
    "curl",
    "libcurl",
    "node-libcurl",
    "comp1531"
  ],
  "author": "Khiet Tam Nguyen",
  "license": "MIT",
  "description": "Fast way to send synchronous web requests in NodeJS. API is a subset of sync-request. Leverages node-libcurl for high performance. Cannot be used in a browser.",
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.1",
    "@eslint/js": "^9.24.0",
    "@hono/node-server": "^1.14.1",
    "@types/http-errors": "^2.0.4",
    "@types/morgan": "^1.9.9",
    "@types/node": "^22.14.1",
    "@typescript-eslint/eslint-plugin": "^8.30.1",
    "@typescript-eslint/parser": "^8.30.1",
    "@vitest/coverage-v8": "3.1.1",
    "body-parser": "^1.20.3",
    "eslint": "^9.24.0",
    "globals": "^16.0.0",
    "hono": "^4.7.7",
    "http-errors": "^2.0.0",
    "sync-dev-server": "^1.0.4",
    "ts-node": "^10.9.2",
    "ts-node-dev": "^2.0.0",
    "typescript": "^5.7.3",
    "vitest": "^3.1.1"
  },
  "dependencies": {
    "node-libcurl": "^4.1.0"
  },
  "scripts": {
    "start": "ts-node tests/app/server",
    "dev": "ts-node-dev --watch tests/app tests/app/server",
    "test": "vitest run",
    "tc": "vitest run --coverage",
    "lint": "eslint './**/*.ts'",
    "lint:fix": "eslint --fix './**/*.ts'",
    "tsc": "tsc --noEmit",
    "build": "rm -rf dist && pnpm run build:esm && pnpm run build:cjs",
    "build:esm": "tsc",
    "build:cjs": "tsc --module CommonJS --outDir dist/cjs"
  }
}