cidr-block
Version:
IPv4 and IPv6 address and cidr range utilities
79 lines (78 loc) • 1.82 kB
JSON
{
"name": "cidr-block",
"description": "IPv4 and IPv6 address and cidr range utilities",
"version": "2.3.0",
"license": "MIT",
"author": "Brandon Burrus <brandon@burrus.io>",
"homepage": "https://cidr-block.com",
"repository": {
"type": "git",
"url": "git+https://github.com/BrandonBurrus/cidr-block.git"
},
"bugs": {
"url": "https://github.com/BrandonBurrus/cidr-block/issues"
},
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=16"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"docgen": "typedoc",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format",
"format:fix": "biome format --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage"
},
"keywords": [
"aws",
"azure",
"cidr",
"cloud",
"devops",
"gcp",
"infrastructure",
"ip",
"ip-address",
"network",
"networking",
"vpc"
],
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@vitest/coverage-v8": "^4.0.14",
"rimraf": "^6.1.2",
"rollup": "^4.53.3",
"rollup-plugin-dts": "^6.2.3",
"tslib": "^2.8.1",
"typedoc": "^0.28.14",
"typedoc-github-theme": "^0.3.1",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
}
}