{ "name": "@lilith/ip-utils", "type": "module", "version": "1.0.1", "description": "IP address utilities: validation, conversion, CIDR matching, private IP detection", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./ipv4": { "types": "./dist/ipv4.d.ts", "import": "./dist/ipv4.js" }, "./ipv6": { "types": "./dist/ipv6.d.ts", "import": "./dist/ipv6.js" }, "./cidr": { "types": "./dist/cidr.d.ts", "import": "./dist/cidr.js" }, "./private": { "types": "./dist/private.d.ts", "import": "./dist/private.js" } }, "files": [ "dist" ], "scripts": { "typecheck": "tsc --noEmit", "build": "tsup", "prepublishOnly": "npm run build", "test": "vitest run", "test:watch": "vitest", "lint": "eslint src --fix", "lint:check": "eslint src", "clean": "rm -rf dist" }, "dependencies": {}, "devDependencies": { "@lilith/configs": "workspace:*", "@types/node": "^22.19.5", "tsup": "^8.5.1", "typescript": "^5.9.3", "vitest": "^2.1.9" }, "keywords": [ "ip", "ipv4", "ipv6", "cidr", "network", "validation" ], "author": "Lilith Platform", "license": "MIT", "publishConfig": { "registry": "http://forge.black.local/api/packages/lilith/npm/" }, "_": { "registry": "forgejo", "publish": true, "build": true } }