From 8ccd853d9147c9467bb650101d667d1526066f02 Mon Sep 17 00:00:00 2001 From: Boshen Date: Sun, 25 Jan 2026 07:02:08 +0000 Subject: [PATCH] docs(npm): update package homepage URLs and add keywords (#18509) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Update homepage links to point to specific documentation pages (e.g., `https://oxc.rs/docs/guide/usage/linter`) - Add usage instruction links to napi package READMEs - Add relevant keywords for better npm discoverability 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- napi/minify/README.md | 2 ++ napi/minify/package.json | 9 +++++++-- napi/parser/README.md | 2 ++ napi/parser/package.json | 8 ++++++-- napi/transform/README.md | 2 ++ napi/transform/package.json | 10 ++++++++-- npm/oxfmt/README.md | 2 +- npm/oxfmt/package.json | 11 +++++++++-- npm/oxlint/README.md | 2 +- npm/oxlint/package.json | 11 +++++++++-- 10 files changed, 47 insertions(+), 12 deletions(-) diff --git a/napi/minify/README.md b/napi/minify/README.md index f979d1a304877..25cbf7e98f84d 100644 --- a/napi/minify/README.md +++ b/napi/minify/README.md @@ -1,5 +1,7 @@ # Oxc Minify +See [usage instructions](https://oxc.rs/docs/guide/usage/minifier). + This is alpha software and may yield incorrect results, feel free to [submit a bug report](https://github.com/oxc-project/oxc/issues/new?assignees=&labels=C-bug&projects=&template=bug_report.md). ### Performance and Compression Size diff --git a/napi/minify/package.json b/napi/minify/package.json index a8b16bfc11fb7..12495b9609f9b 100644 --- a/napi/minify/package.json +++ b/napi/minify/package.json @@ -3,10 +3,15 @@ "version": "0.110.0", "description": "Oxc Minifier Node API", "keywords": [ + "javascript", + "minifier", "minify", - "oxc" + "oxc", + "terser", + "typescript", + "uglify" ], - "homepage": "https://oxc.rs", + "homepage": "https://oxc.rs/docs/guide/usage/minifier", "bugs": "https://github.com/oxc-project/oxc/issues", "license": "MIT", "author": "Boshen and oxc contributors", diff --git a/napi/parser/README.md b/napi/parser/README.md index b6d9180fb7b06..c0a9e1167d390 100644 --- a/napi/parser/README.md +++ b/napi/parser/README.md @@ -1,5 +1,7 @@ # Oxc Parser +See [usage instructions](https://oxc.rs/docs/guide/usage/parser). + ## Features ### Supports WASM diff --git a/napi/parser/package.json b/napi/parser/package.json index 3d0306c6f98fd..018fc91a04215 100644 --- a/napi/parser/package.json +++ b/napi/parser/package.json @@ -3,10 +3,14 @@ "version": "0.110.0", "description": "Oxc Parser Node API", "keywords": [ + "ast", + "estree", + "javascript", "oxc", - "parser" + "parser", + "typescript" ], - "homepage": "https://oxc.rs", + "homepage": "https://oxc.rs/docs/guide/usage/parser", "bugs": "https://github.com/oxc-project/oxc/issues", "license": "MIT", "author": "Boshen and oxc contributors", diff --git a/napi/transform/README.md b/napi/transform/README.md index 054dcbe4925e1..6f45ffce6f635 100644 --- a/napi/transform/README.md +++ b/napi/transform/README.md @@ -1,5 +1,7 @@ # Oxc Transform +See [usage instructions](https://oxc.rs/docs/guide/usage/transformer). + ## TypeScript and React JSX Transform ```javascript diff --git a/napi/transform/package.json b/napi/transform/package.json index ac22005d620bd..c566fad8d4421 100644 --- a/napi/transform/package.json +++ b/napi/transform/package.json @@ -3,10 +3,16 @@ "version": "0.110.0", "description": "Oxc Transformer Node API", "keywords": [ + "babel", + "javascript", + "jsx", "oxc", - "transform" + "transform", + "transformer", + "tsx", + "typescript" ], - "homepage": "https://oxc.rs", + "homepage": "https://oxc.rs/docs/guide/usage/transformer", "bugs": "https://github.com/oxc-project/oxc/issues", "license": "MIT", "author": "Boshen and oxc contributors", diff --git a/npm/oxfmt/README.md b/npm/oxfmt/README.md index cc04081823cc8..821151e3b99db 100644 --- a/npm/oxfmt/README.md +++ b/npm/oxfmt/README.md @@ -50,7 +50,7 @@ The Oxidation Compiler is creating a suite of high-performance tools for JavaScr This is the formatter for oxc. -See [usage instructions](https://oxc.rs/docs/guide/usage/formatter.html). +See [usage instructions](https://oxc.rs/docs/guide/usage/formatter). Run diff --git a/npm/oxfmt/package.json b/npm/oxfmt/package.json index 4c50db7198638..58a4c0a4ced6d 100644 --- a/npm/oxfmt/package.json +++ b/npm/oxfmt/package.json @@ -2,8 +2,15 @@ "name": "oxfmt", "version": "0.26.0", "description": "Formatter for the JavaScript Oxidation Compiler", - "keywords": [], - "homepage": "https://oxc.rs", + "keywords": [ + "formatter", + "javascript", + "oxc", + "oxfmt", + "prettier", + "typescript" + ], + "homepage": "https://oxc.rs/docs/guide/usage/formatter", "bugs": "https://github.com/oxc-project/oxc/issues", "license": "MIT", "author": "Boshen and oxc contributors", diff --git a/npm/oxlint/README.md b/npm/oxlint/README.md index 35261dffa74da..382645a870f16 100644 --- a/npm/oxlint/README.md +++ b/npm/oxlint/README.md @@ -50,7 +50,7 @@ The Oxidation Compiler is creating a suite of high-performance tools for JavaScr This is the linter for oxc. -See [usage instructions](https://oxc.rs/docs/guide/usage/linter.html). +See [usage instructions](https://oxc.rs/docs/guide/usage/linter). Run diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index d1866a230f772..d519ef579c4fb 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -2,8 +2,15 @@ "name": "oxlint", "version": "1.41.0", "description": "Linter for the JavaScript Oxidation Compiler", - "keywords": [], - "homepage": "https://oxc.rs", + "keywords": [ + "eslint", + "javascript", + "linter", + "oxc", + "oxlint", + "typescript" + ], + "homepage": "https://oxc.rs/docs/guide/usage/linter", "bugs": "https://github.com/oxc-project/oxc/issues", "license": "MIT", "author": "Boshen and oxc contributors",