Skip to content

Commit d027a92

Browse files
committedJul 4, 2023
Require Node.js 16
Fixes #23
1 parent 1eed68d commit d027a92

File tree

5 files changed

+27
-26
lines changed

5 files changed

+27
-26
lines changed
 

‎.github/workflows/main.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13+
- 20
14+
- 18
1315
- 16
1416
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-node@v2
17+
- uses: actions/checkout@v3
18+
- uses: actions/setup-node@v3
1719
with:
1820
node-version: ${{ matrix.node-version }}
1921
- run: npm install

‎index.d.ts

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import {Except} from 'type-fest';
2-
import {readPackage, readPackageSync, Options as ReadPackageOptions, NormalizeOptions as ReadPackageNormalizeOptions, PackageJson, NormalizedPackageJson} from 'read-pkg';
1+
import {type Except} from 'type-fest';
2+
import {readPackage, readPackageSync, type Options as ReadPackageOptions, type NormalizeOptions as ReadPackageNormalizeOptions, type PackageJson, type NormalizedPackageJson} from 'read-pkg';
33

44
export type Options = {
55
/**
@@ -19,19 +19,14 @@ export type NormalizeOptions = {
1919
cwd?: URL | string;
2020
} & Except<ReadPackageNormalizeOptions, 'cwd'>;
2121

22-
export interface ReadResult {
22+
export type ReadResult = {
2323
packageJson: PackageJson;
2424
path: string;
25-
}
25+
};
2626

27-
export interface NormalizedReadResult {
27+
export type NormalizedReadResult = {
2828
packageJson: NormalizedPackageJson;
2929
path: string;
30-
}
31-
32-
export {
33-
PackageJson,
34-
NormalizedPackageJson,
3530
};
3631

3732
/**
@@ -75,3 +70,5 @@ console.log(readPackageUpSync());
7570
*/
7671
export function readPackageUpSync(options?: NormalizeOptions): NormalizedReadResult | undefined;
7772
export function readPackageUpSync(options: Options): ReadResult | undefined;
73+
74+
export {PackageJson, NormalizedPackageJson} from 'read-pkg';

‎index.test-d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {expectType, expectError} from 'tsd';
2-
import {readPackageUp, readPackageUpSync, ReadResult, NormalizedReadResult} from './index.js';
2+
import {readPackageUp, readPackageUpSync, type ReadResult, type NormalizedReadResult} from './index.js';
33

44
expectType<Promise<NormalizedReadResult | undefined>>(readPackageUp());
55
expectType<Promise<NormalizedReadResult | undefined>>(

‎package.json

+15-7
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@
1111
"url": "https://sindresorhus.com"
1212
},
1313
"type": "module",
14-
"exports": "./index.js",
14+
"exports": {
15+
"types": "./index.d.ts",
16+
"default": "./index.js"
17+
},
1518
"engines": {
16-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
19+
"node": ">=16"
1720
},
1821
"scripts": {
1922
"test": "xo && ava && tsd"
@@ -50,12 +53,17 @@
5053
],
5154
"dependencies": {
5255
"find-up": "^6.3.0",
53-
"read-pkg": "^7.1.0",
54-
"type-fest": "^2.5.0"
56+
"read-pkg": "^8.0.0",
57+
"type-fest": "^3.12.0"
5558
},
5659
"devDependencies": {
57-
"ava": "^3.15.0",
58-
"tsd": "^0.18.0",
59-
"xo": "^0.45.0"
60+
"ava": "^5.3.1",
61+
"tsd": "^0.28.1",
62+
"xo": "^0.54.2"
63+
},
64+
"xo": {
65+
"rules": {
66+
"@typescript-eslint/no-redundant-type-constituents": "off"
67+
}
6068
}
6169
}

‎readme.md

-6
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,6 @@ Default: `true`
6060

6161
[Normalize](https://github.com/npm/normalize-package-data#what-normalization-currently-entails) the package data.
6262

63-
## read-pkg-up for enterprise
64-
65-
Available as part of the Tidelift Subscription.
66-
67-
The maintainers of read-pkg-up and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-read-pkg-up?utm_source=npm-read-pkg-up&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
68-
6963
## Related
7064

7165
- [read-pkg](https://github.com/sindresorhus/read-pkg) - Read a package.json file

0 commit comments

Comments
 (0)
Please sign in to comment.