From 14a826403fa990468e6ce4cc29af7072b840b4ce Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 13 May 2026 04:19:14 +0000 Subject: [PATCH 1/2] chore: normalize `main` field in `@stdlib/array/base` package.json Change `"main": "lib/index.js"` to `"main": "./lib"` to match the canonical form used by 101 of the 103 packages in `@stdlib/array` (98% conformance). Node's module resolution treats both values identically (`./lib` resolves to `./lib/index.js`); the change is purely a metadata normalization with no behavioral impact. --- lib/node_modules/@stdlib/array/base/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/array/base/package.json b/lib/node_modules/@stdlib/array/base/package.json index d5a5d6e480c7..05adf774847e 100644 --- a/lib/node_modules/@stdlib/array/base/package.json +++ b/lib/node_modules/@stdlib/array/base/package.json @@ -13,7 +13,7 @@ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" } ], - "main": "lib/index.js", + "main": "./lib", "directories": { "doc": "./docs", "example": "./examples", From 800720cad6e899e45d1fabf8e054582ac44e333a Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 13 May 2026 04:19:19 +0000 Subject: [PATCH 2/2] chore: normalize `main` field in `@stdlib/array/float16` package.json Change `"main": "./lib/index.js"` to `"main": "./lib"` to match the canonical form used by 101 of the 103 packages in `@stdlib/array` (98% conformance). Node's module resolution treats both values identically (`./lib` resolves to `./lib/index.js`); the change is purely a metadata normalization with no behavioral impact. --- lib/node_modules/@stdlib/array/float16/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/array/float16/package.json b/lib/node_modules/@stdlib/array/float16/package.json index 63d51e83fa90..e2dc0a0559c8 100644 --- a/lib/node_modules/@stdlib/array/float16/package.json +++ b/lib/node_modules/@stdlib/array/float16/package.json @@ -13,7 +13,7 @@ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" } ], - "main": "./lib/index.js", + "main": "./lib", "directories": { "benchmark": "./benchmark", "doc": "./docs",