Skip to content

Commit e1234ea

Browse files
chore: apply automated updates
1 parent e2dc735 commit e1234ea

1 file changed

Lines changed: 21 additions & 21 deletions

File tree

src/types/packagejson.ts

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ export interface PackageJson {
3333
* The url to your project’s issue tracker and / or the email address to which issues should be reported. These are helpful for people who encounter issues with your package.
3434
*/
3535
bugs?:
36-
| string
37-
| {
38-
url?: string;
39-
email?: string;
40-
};
36+
| string
37+
| {
38+
url?: string;
39+
email?: string;
40+
};
4141

4242
/**
4343
* You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you’re placing on it.
@@ -49,15 +49,15 @@ export interface PackageJson {
4949
* For GitHub, GitHub gist, Bitbucket, or GitLab repositories you can use the same shortcut syntax you use for npm install:
5050
*/
5151
repository?:
52-
| string
53-
| {
54-
type: string;
55-
url: string;
56-
/**
57-
* If the `package.json` for your package is not in the root directory (for example if it is part of a monorepo), you can specify the directory in which it lives:
58-
*/
59-
directory?: string;
60-
};
52+
| string
53+
| {
54+
type: string;
55+
url: string;
56+
/**
57+
* If the `package.json` for your package is not in the root directory (for example if it is part of a monorepo), you can specify the directory in which it lives:
58+
*/
59+
directory?: string;
60+
};
6161

6262
/**
6363
* The `scripts` field is a dictionary containing script commands that are run at various times in the lifecycle of your package.
@@ -299,10 +299,10 @@ export interface PackageJson {
299299
export type PackageJsonPerson =
300300
| string
301301
| {
302-
name: string;
303-
email?: string;
304-
url?: string;
305-
};
302+
name: string;
303+
email?: string;
304+
url?: string;
305+
};
306306

307307
type PackageJsonExportKey =
308308
| "."
@@ -316,9 +316,9 @@ type PackageJsonExportKey =
316316

317317
type PackageJsonExportsObject = {
318318
[P in PackageJsonExportKey]?:
319-
| string
320-
| PackageJsonExportsObject
321-
| Array<string | PackageJsonExportsObject>;
319+
| string
320+
| PackageJsonExportsObject
321+
| Array<string | PackageJsonExportsObject>;
322322
};
323323

324324
export type PackageJsonExports =

0 commit comments

Comments
 (0)