{
  "name": "@flags-sdk/statsig",
  "version": "0.2.2",
  "description": "Statsig provider for the Flags SDK",
  "keywords": [
    "flags-sdk",
    "statsig",
    "dynamic config",
    "vercel",
    "edge config",
    "experiments",
    "experimentation",
    "ab testing"
  ],
  "homepage": "https://flags-sdk.dev",
  "bugs": {
    "url": "https://github.com/vercel/flags/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vercel/flags.git"
  },
  "license": "MIT",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./provider": {
      "types": "./dist/provider/index.d.ts",
      "import": "./dist/provider/index.js",
      "require": "./dist/provider/index.cjs"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      ".": [
        "./dist/index.d.ts",
        "./dist/index.d.cts"
      ],
      "provider": [
        "./dist/provider/index.d.ts",
        "./dist/provider/index.d.cts"
      ]
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "@vercel/edge-config": "^1.2.0",
    "@vercel/functions": "^1.5.2",
    "statsig-node-lite": "^0.4.2",
    "statsig-node-vercel": "^0.7.0"
  },
  "devDependencies": {
    "@types/node": "20.11.17",
    "msw": "2.6.4",
    "rimraf": "6.0.1",
    "tsup": "8.0.1",
    "typescript": "5.6.3",
    "vite": "5.1.1",
    "vitest": "1.4.0",
    "tsconfig": "0.0.0",
    "flags": "3.2.0",
    "eslint-config-custom": "0.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rimraf dist && tsup",
    "dev": "tsup --watch --clean=false",
    "eslint": "eslint-runner",
    "eslint:fix": "eslint-runner --fix",
    "test": "vitest --run",
    "test:watch": "vitest",
    "type-check": "tsc --noEmit"
  }
}