chore: replace Biome with oxlint and oxfmt

This commit is contained in:
2026-09-18 14:21:15 -04:00
parent 5ff837b2bb
commit 87e20f4a47
28 changed files with 1154 additions and 629 deletions
+31 -28
View File
@@ -1,30 +1,39 @@
{
"name": "rdapper",
"version": "0.13.0",
"license": "MIT",
"description": "🎩 RDAP/WHOIS fetcher, parser, and normalizer for Node",
"repository": {
"type": "git",
"url": "git+https://github.com/jakejarvis/rdapper.git"
},
"keywords": [
"domain",
"lookup",
"normalizer",
"parser",
"rdap",
"registration",
"whois"
],
"bugs": {
"url": "https://github.com/jakejarvis/rdapper/issues"
},
"license": "MIT",
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://jarv.is"
},
"publishConfig": {
"access": "public"
"repository": {
"type": "git",
"url": "git+https://github.com/jakejarvis/rdapper.git"
},
"bin": {
"rdapper": "bin/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"rdapper": "bin/cli.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
@@ -32,25 +41,28 @@
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"cli": "node bin/cli.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"lint": "biome check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"dependencies": {
"tldts": "~7.4.13"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/node": "^26.6.1",
"oxfmt": "^0.68.0",
"oxlint": "^1.83.0",
"oxlint-tsgolint": "^7.0.2002",
"tsdown": "^0.23.0",
"typescript": "^6.0.3",
"vite": "^8.3.0",
@@ -58,14 +70,5 @@
},
"engines": {
"node": ">=18.17"
},
"keywords": [
"rdap",
"whois",
"domain",
"registration",
"lookup",
"parser",
"normalizer"
]
}
}