{
  "name": "@venn-lang/http",
  "version": "0.9.0",
  "description": "The http namespace: seven request verbs, a server, and the two ports they ride.",
  "keywords": [
    "venn",
    "testing",
    "e2e",
    "http"
  ],
  "homepage": "https://github.com/venn-lang/venn/tree/main/packages/std-http#readme",
  "bugs": "https://github.com/venn-lang/venn/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/venn-lang/venn.git",
    "directory": "packages/std-http"
  },
  "license": "MIT",
  "author": "Vinicius Borges",
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": {
      "development": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./node": {
      "development": "./src/node.ts",
      "types": "./dist/node.d.mts",
      "import": "./dist/node.mjs",
      "default": "./dist/node.mjs"
    }
  },
  "files": [
    "dist",
    "src",
    "!src/**/*.test.ts",
    "!src/**/*.suite.ts"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@venn-lang/contracts": "0.9.0",
    "@venn-lang/sdk": "0.9.0",
    "@venn-lang/types": "0.9.0"
  },
  "devDependencies": {
    "tsdown": "^0.22.14",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10",
    "@types/node": "^24"
  },
  "scripts": {
    "build": "tsdown",
    "test": "vitest run",
    "typecheck": "tsc --noEmit"
  }
}