{
  "name": "flagkeeper",
  "version": "0.0.7",
  "description": "Type-safe feature flags for Node.js and React with environment-aware defaults.",
  "keywords": [
    "feature-flags",
    "feature-toggle",
    "environment-variables",
    "configuration",
    "typescript",
    "react",
    "nodejs"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/kulterryan/flagkeeper.git"
  },
  "homepage": "https://flagkeeper.dev",
  "license": "MIT",
  "private": false,
  "type": "module",
  "main": "src/index.ts",
  "types": "src/index.ts",
  "exports": {
    ".": "./src/index.ts",
    "./react": "./src/react/index.ts"
  },
  "scripts": {
    "lint": "oxlint src",
    "check-types": "tsc --noEmit",
    "test": "bun test",
    "clean": "rm -rf dist .turbo",
    "publish:package": "bun publish --access public"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/react": "^19.2.17",
    "oxlint": "^1.73.0",
    "react": "^19.2.7",
    "typescript": "^7.0.2"
  },
  "peerDependencies": {
    "react": ">=18.2.0"
  }
}
