Skip to content

Commit

Permalink
fix(gatsby): Incorrect PackageJson type (#22406)
Browse files Browse the repository at this point in the history
* Fix PackageJson type

* Fix typo
  • Loading branch information
dvrylc committed Mar 19, 2020
1 parent 3ce7083 commit 5496e6b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/gatsby/index.d.ts
Expand Up @@ -1193,11 +1193,11 @@ export interface PackageJson {
email: string
}
license?: string
dependencies?: Array<Record<string, string>>
devDependencies?: Array<Record<string, string>>
peerDependencies?: Array<Record<string, string>>
optionalDependencies?: Array<Record<string, string>>
bundledDependecies?: Array<Record<string, string>>
dependencies?: Record<string, string>
devDependencies?: Record<string, string>
peerDependencies?: Record<string, string>
optionalDependencies?: Record<string, string>
bundledDependencies?: Array<string>
keywords?: string[]
}

Expand Down

0 comments on commit 5496e6b

Please sign in to comment.