{
  "name": "@simplyappdevs/cidr-calculator",
  "version": "1.0.1",
  "description": "Classless Inter-Domain Routing (CIDR) Notation Calculator",
  "type": "module",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./app-cidr": {
      "import": "./dist/esm/app-cidr.js",
      "require": "./dist/cjs/app-cidr.js"
    }
  },
  "files": [
    "dist",
    "src",
    "examples",
    "README.md",
    "wrapper.mjs"
  ],
  "scripts": {
    "tsc": "tsc",
    "del": "rimraf",
    "test": "jest",
    "cp": "fse copy",
    "cpesmpkg": "npm run cp ./package-esm.json ./dist/esm/package.json",
    "cpcjspkg": "npm run cp ./package-cjs.json ./dist/cjs/package.json",
    "build:common": "tsc --project tsconfig-cjs.json",
    "build:esm": "tsc --project tsconfig.json",
    "clean": "npm run del ./dist/*",
    "clean:examples": "npm run del ./dist-examples/*",
    "build": "npm run clean && npm run build:common && npm run build:esm && npm run cpesmpkg && npm run cpcjspkg",
    "prepublishOnly": "npm run clean && npm run test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/simplyappdevs/cidr-calculator.git"
  },
  "keywords": [
    "nodejs",
    "typescript",
    "bitset",
    "npm-package",
    "jest",
    "ts-jest"
  ],
  "author": "SimplyAppDevs <requestinfo@simplyappdevs.com>",
  "license": "GPL-3.0",
  "bugs": {
    "url": "https://github.com/simplyappdevs/cidr-calculator/issues"
  },
  "homepage": "https://github.com/simplyappdevs/cidr-calculator#readme",
  "devDependencies": {
    "@atao60/fse-cli": "^0.1.7",
    "@marsraptor/bitset": "^1.0.0",
    "@types/jest": "^26.0.24",
    "@types/node": "^16.3.3",
    "jest": "^27.0.6",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.3",
    "typescript": "^4.3.5"
  },
  "dependencies": {
    "@simplyappdevs/logging-helper": "^1.0.2",
    "bitset": "^5.1.1"
  }
}
