{
  "name": "tas-client",
  "version": "0.3.1",
  "type": "module",
  "engines": {
    "node": ">=22"
  },
  "description": "This package is intended to be used as an endpoint client to query, refetch, and cache data from the Experimentation service (or any given endpoint). The endpoint result must follow the required structure for experimentation data.",
  "main": "./dist/tas-client.min.js",
  "types": "./dist/tas-client.d.ts",
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE.txt"
  ],
  "exports": {
    ".": {
      "types": "./dist/tas-client.d.ts",
      "default": "./dist/tas-client.min.js"
    },
    "./bundle": {
      "default": "./dist/tas-client.min.js"
    }
  },
  "scripts": {
    "compile": "tsc -p ./",
    "bundle": "node scripts/bundle.js",
    "prepublishOnly": "npm run compile && npm run bundle",
    "eslint": "eslint src --ext ts",
    "watch": "tsc -watch -p ./",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui"
  },
  "keywords": [
    "tas-client"
  ],
  "author": "Microsoft",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@types/semver": "^7.5.5",
    "@typescript-eslint/eslint-plugin-tslint": "^6.11.0",
    "@typescript-eslint/parser": "^6.11.0",
    "@vitest/ui": "^2.0.5",
    "esbuild": "^0.25.10",
    "eslint": "^8.53.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.1",
    "nerdbank-gitversioning": "^3.6.133",
    "prettier": "^3.1.0",
    "ts-node": "^10.9.1",
    "tslint": "^5.20.1",
    "typemoq": "2.1.0",
    "typescript": "^5.9.2",
    "vitest": "^2.0.5"
  }
}
