{
  "name": "arfcn",
  "version": "2.1.1",
  "description": "Utilities for working with Absolute Radio Frequency Channel Numbers (ARFCN) in cellular networks",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "type": "module",
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "lint": "tsc",
    "prepublishOnly": "bun run build",
    "test": "jest"
  },
  "keywords": [
    "arfcn",
    "cellular",
    "5g",
    "5g nr",
    "lte",
    "frequency",
    "band",
    "telecommunications",
    "nr-arfcn",
    "earfcn",
    "umts",
    "utra",
    "utra-fdd",
    "utra-tdd",
    "w-cdma",
    "td-cdma",
    "td-scdma",
    "uarfcn",
    "3gpp"
  ],
  "author": "Hoon Choi <hoon@orcatown.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hoon/arfcn.git"
  },
  "license": "MIT",
  "devDependencies": {
    "@types/bun": "latest",
    "@types/jest": "^29.5.12",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.2",
    "tsup": "^8.0.2",
    "typescript": "^5.0.0"
  },
  "peerDependencies": {
    "typescript": "^5.0.0"
  },
  "dependencies": {},
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "transform": {
      "^.+\\.tsx?$": ["ts-jest", {
        "useESM": true,
        "tsConfig": "tsconfig.test.json"
      }]
    },
    "moduleNameMapper": {
      "^(\\.{1,2}/.*)\\.js$": "$1"
    },
    "extensionsToTreatAsEsm": [".ts"]
  }
}