{
  "name": "@frostyeti/globals",
  "version": "0.0.0-alpha.0.1.0",
  "type": "module",
  "module": "./esm/mod.js",
  "types": "./types/mod.d.ts",
  "description": "Provides safe access to the globalThis object and global constants for the runtime and os.",
  "keywords": [
    "runtime",
    "js",
    "arch",
    "platform",
    "operating system",
    "os",
    "frostyeti"
  ],
  "license": "MIT",
  "homepage": "js.frostyeti.com",
  "bugs": {
    "url": "https://github.com/frostyeti/js/discussions/categories/bugs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/frostyeti/js.git"
  },
  "scripts": {
    "test": "node --test",
    "test:bun": "bun test",
    "build": "tsc"
  },
  "exports": {
    ".": {
      "import": {
        "default": "./esm/mod.js",
        "types": "./types/mod.d.ts"
      }
    },
    "./globals": {
      "import": {
        "default": "./esm/globals.js",
        "types": "./types/globals.d.ts"
      }
    },
    "./os": {
      "import": {
        "default": "./esm/os.js",
        "types": "./types/os.d.ts"
      }
    },
    "./runtime": {
      "import": {
        "default": "./esm/runtime_info.js",
        "types": "./types/runtime_info.d.ts"
      }
    }
  },
  "engines": {
    "node": ">=22"
  },
  "devDependencies": {
    "@types/node": "^22.17.0",
    "@frostyeti/assert": "0.0.0-alpha.0",
    "typescript": "^5.9.3"
  }
}
