{
  "packageManager": "yarn@4.11.0",
  "name": "@reforge-com/javascript",
  "version": "0.0.5",
  "description": "Feature Flags & Dynamic Configuration as a Service",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "author": "Jeffrey Chupp",
  "license": "ISC",
  "devDependencies": {
    "@types/eslint-plugin-jsx-a11y": "^6",
    "@types/express": "^4.17.13",
    "@types/jest": "^28.1.6",
    "@types/uuid": "^9.0.5",
    "@typescript-eslint/eslint-plugin": "^5.33.0",
    "@typescript-eslint/parser": "^5.33.0",
    "esbuild": "^0.25.11",
    "eslint": "^8.21.0",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-airbnb-typescript": "^17.0.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-jest": "^26.8.0",
    "eslint-plugin-jsx-a11y": "^6.10.2",
    "eslint-plugin-react": "^7.37.5",
    "jest": "^29.0.0",
    "jest-environment-jsdom": "^30.2.0",
    "jest-fetch-mock": "^3.0.3",
    "prettier": "^3.0.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "tsup": "^8.0.2",
    "typescript": "^5.1.6"
  },
  "scripts": {
    "build": "rm -rf dist/ && tsup",
    "dev": "tsup --watch",
    "bundle": "esbuild --minify --target=esnext --bundle --outfile=dist/reforge.bundle.js --global-name=window.reforgeNamespace dist/index.cjs && echo 'window.reforge = window.reforgeNamespace.reforge' >> dist/reforge.bundle.js",
    "lint": "eslint --ext .ts,.tsx src/",
    "lint:fix": "eslint --fix --ext .ts,.tsx src/",
    "prettier": "prettier . -l",
    "prettier:fix": "prettier --write .",
    "test": "jest --verbose"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ReforgeHQ/sdk-javascript.git"
  },
  "keywords": [
    "feature-flags",
    "config"
  ],
  "bugs": {
    "url": "https://github.com/ReforgeHQ/sdk-javascript/issues"
  },
  "homepage": "https://github.com/ReforgeHQ/sdk-javascript#readme",
  "dependencies": {
    "uuid": "^9.0.1"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  }
}