1 | {
|
2 | "name": "range_check",
|
3 | "version": "3.2.0",
|
4 | "main": "dist/index.js",
|
5 | "module": "dist/index.mjs",
|
6 | "types": "dist/index.d.ts",
|
7 | "exports": {
|
8 | ".": {
|
9 | "require": "./dist/index.js",
|
10 | "import": "./dist/index.mjs",
|
11 | "types": "./dist/index.d.ts"
|
12 | }
|
13 | },
|
14 | "description": "This is a simple module to validate IP address, check ip address version, check if ip is within a range.",
|
15 | "scripts": {
|
16 | "dev": "bun --watch src/index.ts",
|
17 | "start": "bun src/index.ts",
|
18 | "build": "tsup",
|
19 | "prepublishOnly": "bun run build",
|
20 | "test": "bun test",
|
21 | "format": "bun run biome format . --write"
|
22 | },
|
23 | "files": ["dist"],
|
24 | "keywords": [
|
25 | "bun",
|
26 | "IP Address",
|
27 | "CIDR",
|
28 | "V4",
|
29 | "V6",
|
30 | "valid",
|
31 | "range",
|
32 | "addr",
|
33 | "ip",
|
34 | "ipv4",
|
35 | "ipv6"
|
36 | ],
|
37 | "license": "BSD-2-Clause",
|
38 | "homepage": "https://github.com/maxam2017/bun-lib-starter#readme",
|
39 | "repository": {
|
40 | "type": "git",
|
41 | "url": "https://github.com/keverw/range_check"
|
42 | },
|
43 | "publishConfig": {
|
44 | "registry": "https://registry.npmjs.org/"
|
45 | },
|
46 | "bugs": "https://github.com/maxam2017/bun-lib-starter/issues",
|
47 | "author": "Kevin Whitman (https://github.com/keverw)",
|
48 | "dependencies": {
|
49 | "ip6": "^0.2.10",
|
50 | "ipaddr.js": "^2.2.0"
|
51 | },
|
52 | "devDependencies": {
|
53 | "@biomejs/biome": "1.4.1",
|
54 | "@types/bun": "latest",
|
55 | "dts-bundle-generator": "^9.2.1",
|
56 | "semantic-release": "^22.0.12",
|
57 | "tsup": "^8.0.1",
|
58 | "typescript": "^5.3.3"
|
59 | },
|
60 | "release": {
|
61 | "branches": ["main"]
|
62 | },
|
63 | "bun-create": {
|
64 | "preinstall": "pre-commit install"
|
65 | }
|
66 | }
|