aicommits 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -3
- package/tsconfig.json +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aicommits",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Writes your git commit messages for you with AI",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,13 +9,15 @@
|
|
|
9
9
|
"repository": "https://github.com/Nutlope/aicommits",
|
|
10
10
|
"author": "Hassan El Mghari (@nutlope)",
|
|
11
11
|
"license": "MIT",
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"typescript": "^4.9.5"
|
|
14
|
+
},
|
|
12
15
|
"scripts": {
|
|
13
16
|
"build": "tsc"
|
|
14
17
|
},
|
|
15
18
|
"dependencies": {
|
|
16
19
|
"chalk": "^5.2.0",
|
|
17
20
|
"inquirer": "^9.1.4",
|
|
18
|
-
"node-fetch": "^3.3.0"
|
|
19
|
-
"typescript": "^4.9.5"
|
|
21
|
+
"node-fetch": "^3.3.0"
|
|
20
22
|
}
|
|
21
23
|
}
|
package/tsconfig.json
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
"outDir": "./bin" /* Specify an output folder for all emitted files. */,
|
|
6
6
|
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
|
|
7
7
|
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
|
|
8
|
-
"strict": true /* Enable all strict type-checking options. */,
|
|
9
8
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
10
9
|
},
|
|
11
10
|
"exclude": ["node_modules"]
|