From ccf5170542b0b598f3d17d7ae293a8f204c2147c Mon Sep 17 00:00:00 2001 From: Hassan El Mghari Date: Mon, 13 Feb 2023 17:24:28 -0500 Subject: [PATCH] move ts to dev dependency --- package.json | 8 +++++--- tsconfig.json | 1 - 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index d10825f..893cd98 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aicommits", - "version": "0.1.4", + "version": "0.1.6", "description": "Writes your git commit messages for you with AI", "main": "bin/index.js", "bin": { @@ -9,13 +9,15 @@ "repository": "https://github.com/Nutlope/aicommits", "author": "Hassan El Mghari (@nutlope)", "license": "MIT", + "devDependencies": { + "typescript": "^4.9.5" + }, "scripts": { "build": "tsc" }, "dependencies": { "chalk": "^5.2.0", "inquirer": "^9.1.4", - "node-fetch": "^3.3.0", - "typescript": "^4.9.5" + "node-fetch": "^3.3.0" } } diff --git a/tsconfig.json b/tsconfig.json index 9c8605e..b79262b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,6 @@ "outDir": "./bin" /* Specify an output folder for all emitted files. */, "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */, "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, - "strict": true /* Enable all strict type-checking options. */, "skipLibCheck": true /* Skip type checking all .d.ts files. */ }, "exclude": ["node_modules"]