From 8a71f6bb387ed7130dbfcf975c26d7df9fe9473d Mon Sep 17 00:00:00 2001 From: Kamil Date: Mon, 25 Mar 2024 18:30:32 +0100 Subject: [PATCH 1/2] feat: add homepage --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 59d23e935762..50fa113e5ea6 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io", "scripts": { "build": "npx nx run-many --target=build --parallel --exclude website --exclude website-eslint", "check-clean-workspace-after-install": "git diff --quiet --exit-code", From d9579445cc92c39a81abe233f01dde2595409182 Mon Sep 17 00:00:00 2001 From: Kamil Date: Mon, 25 Mar 2024 19:40:49 +0100 Subject: [PATCH 2/2] docs: add packages homepages --- packages/ast-spec/package.json | 1 + packages/eslint-plugin/package.json | 1 + packages/parser/package.json | 1 + packages/rule-schema-to-typescript-types/package.json | 1 + packages/rule-tester/package.json | 1 + packages/scope-manager/package.json | 1 + packages/type-utils/package.json | 1 + packages/types/package.json | 1 + packages/typescript-eslint/package.json | 1 + packages/typescript-estree/package.json | 1 + packages/utils/package.json | 1 + packages/visitor-keys/package.json | 1 + 12 files changed, 12 insertions(+) diff --git a/packages/ast-spec/package.json b/packages/ast-spec/package.json index fe95cda3c5de..2a29d4efa846 100644 --- a/packages/ast-spec/package.json +++ b/packages/ast-spec/package.json @@ -25,6 +25,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io", "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/eslint-plugin/package.json b/packages/eslint-plugin/package.json index 3a4ccfe82ba8..f9dbae2fc03d 100644 --- a/packages/eslint-plugin/package.json +++ b/packages/eslint-plugin/package.json @@ -38,6 +38,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io/packages/eslint-plugin", "license": "MIT", "keywords": [ "eslint", diff --git a/packages/parser/package.json b/packages/parser/package.json index 981137583f37..2f65aaae6b04 100644 --- a/packages/parser/package.json +++ b/packages/parser/package.json @@ -27,6 +27,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io/packages/parser", "license": "BSD-2-Clause", "keywords": [ "ast", diff --git a/packages/rule-schema-to-typescript-types/package.json b/packages/rule-schema-to-typescript-types/package.json index 616c2775ca5e..bea6d8a567f2 100644 --- a/packages/rule-schema-to-typescript-types/package.json +++ b/packages/rule-schema-to-typescript-types/package.json @@ -21,6 +21,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io", "license": "MIT", "scripts": { "build": "tsc -b tsconfig.build.json", diff --git a/packages/rule-tester/package.json b/packages/rule-tester/package.json index 6beb99a0cc21..2bf266ebd66a 100644 --- a/packages/rule-tester/package.json +++ b/packages/rule-tester/package.json @@ -27,6 +27,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io/packages/rule-tester", "license": "MIT", "keywords": [ "eslint", diff --git a/packages/scope-manager/package.json b/packages/scope-manager/package.json index b548a9077a83..0cfa01a710ac 100644 --- a/packages/scope-manager/package.json +++ b/packages/scope-manager/package.json @@ -28,6 +28,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io/packages/scope-manager", "license": "MIT", "keywords": [ "eslint", diff --git a/packages/type-utils/package.json b/packages/type-utils/package.json index 9e05c8afabf8..a4c5c5082681 100644 --- a/packages/type-utils/package.json +++ b/packages/type-utils/package.json @@ -28,6 +28,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io", "license": "MIT", "keywords": [ "eslint", diff --git a/packages/types/package.json b/packages/types/package.json index d677230db53e..b0be1713b74f 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -29,6 +29,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io", "license": "MIT", "keywords": [ "eslint", diff --git a/packages/typescript-eslint/package.json b/packages/typescript-eslint/package.json index 59f108d97ac7..7ed222c685e9 100644 --- a/packages/typescript-eslint/package.json +++ b/packages/typescript-eslint/package.json @@ -28,6 +28,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io/packages/typescript-eslint", "license": "MIT", "keywords": [ "ast", diff --git a/packages/typescript-estree/package.json b/packages/typescript-estree/package.json index 489953a3fa05..c8df15e899a7 100644 --- a/packages/typescript-estree/package.json +++ b/packages/typescript-estree/package.json @@ -32,6 +32,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io/packages/typescript-estree", "license": "BSD-2-Clause", "keywords": [ "ast", diff --git a/packages/utils/package.json b/packages/utils/package.json index c5dd2375876f..ea2871ded4e1 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -49,6 +49,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io/packages/utils", "license": "MIT", "keywords": [ "eslint", diff --git a/packages/visitor-keys/package.json b/packages/visitor-keys/package.json index 6b8bd549084f..4c35432abc56 100644 --- a/packages/visitor-keys/package.json +++ b/packages/visitor-keys/package.json @@ -29,6 +29,7 @@ "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, + "homepage": "https://typescript-eslint.io", "license": "MIT", "keywords": [ "eslint", pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy