{
  "name": "os-theme",
  "version": "0.0.8",
  "description": "Cross-platform OS theme detection (dark/light mode) with event-driven change notifications for Node.js and Bun",
  "module": "dist/index.js",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "bun": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/basiclines/os-theme"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "build:native": "./scripts/build-native.sh",
    "prepublishOnly": "bun run build",
    "test": "bun test",
    "dev": "bun run src/demo.ts",
    "dev:terminal": "bun run src/demo-terminal.ts",
    "release": "bun run scripts/release.ts",
    "benchmark": "./scripts/benchmark.sh",
    "version:sync": "node scripts/version-sync.js"
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "dark-mode",
    "light-mode",
    "theme",
    "appearance",
    "os",
    "system",
    "detect",
    "macos",
    "windows",
    "linux",
    "ffi",
    "native"
  ],
  "optionalDependencies": {
    "@os-theme/darwin-arm64": "0.0.8",
    "@os-theme/linux-x64": "0.0.8",
    "@os-theme/win32-x64": "0.0.8"
  },
  "devDependencies": {
    "@types/bun": "latest"
  },
  "peerDependencies": {
    "typescript": "^5"
  }
}
