From 437888610b7bf2e4469d0a09d9bc0713dcec3fc5 Mon Sep 17 00:00:00 2001 From: Shane McLaughlin Date: Fri, 16 Dec 2022 15:47:55 -0600 Subject: [PATCH] feat: pjson interface has devDependencies (#574) --- src/interfaces/pjson.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interfaces/pjson.ts b/src/interfaces/pjson.ts index 7c7a8ee8..acfa11cd 100644 --- a/src/interfaces/pjson.ts +++ b/src/interfaces/pjson.ts @@ -3,6 +3,7 @@ import {HelpOptions} from './help' export interface PJSON { [k: string]: any; dependencies?: {[name: string]: string}; + devDependencies?: {[name: string]: string}; oclif: { schema?: number; };