{
  "name": "featurehub-javascript-node-sdk",
  "version": "2.0.1",
  "description": "FeatureHub NodeJS SDK",
  "author": "info@featurehub.io",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "module": "lib/index.js",
  "homepage": "https://featurehub.io",
  "repository": "github:featurehub-io/featurehub-javascript-sdk",
  "license": "MIT",
  "files": [
    "dist"
  ],
  "keywords": [
    "feature-flag-api",
    "feature-flag-sdk",
    "feature-experimentation",
    "feature-flag",
    "flag",
    "toggle",
    "feature-toggle",
    "feature-toggle-api",
    "remote-configuration",
    "gradual-rollout",
    "ab-testing",
    "feature-flag-react",
    "featurehub"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "publishConfig": {
    "provenance": true,
    "access": "public"
  },
  "devDependencies": {
    "@fluffy-spoon/substitute": "^1.208.0",
    "@types/node": "22.18.10",
    "rimraf": "6.1.3",
    "tsup": "8.5.0",
    "typescript": "5.9.3",
    "vite": "7.2.0",
    "vitest": "^3.2.4",
    "sinon": "^21.0.0",
    "featurehub-tsconfig": "0.0.0"
  },
  "dependencies": {
    "eventsource": "^4.0.0",
    "featurehub-javascript-core-sdk": "^2.0.1"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "build": "tsup",
    "build:watch": "tsup --watch",
    "clean": "rimraf node_modules dist",
    "setup": "pnpm link ../js",
    "link": "pnpm link --global",
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "compile": "pnpm run build && pnpm run link",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}