ask-cli-ai 1.0.7 → 1.0.9

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.
Files changed (3) hide show
  1. package/README.md +2 -1
  2. package/dist/app.js +2 -2
  3. package/package.json +14 -4
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Ask CLI
2
2
 
3
- [![NPM Version](https://img.shields.io/npm/v/ask-cli-ai)](https://www.npmjs.com/package/ask-cli-ai)
3
+ [![NPM Version](https://img.shields.io/npm/v/ask-cli-ai)](https://www.npmjs.com/package/ask-cli-ai) ![Min Node Version](https://img.shields.io/node/v/ask-cli-ai)
4
+
4
5
 
5
6
  A fast and lightweight AI-powered CLI tool to help you with commands, coding, apps and more.
6
7
 
package/dist/app.js CHANGED
@@ -9,8 +9,8 @@ import { providers } from "./commands/providers.js";
9
9
  import { logo } from "./utils/logo.js";
10
10
  void yargs(hideBin(process.argv))
11
11
  .scriptName('ask')
12
- .usage(`${logo}\nAI CLI to help you with commands, coding, apps and more.\n\nVersion: 1.0.7\n\nUsage: $0 <prompt..>`)
13
- .version('1.0.7')
12
+ .usage(`${logo}\nAI CLI to help you with commands, coding, apps and more.\n\nVersion: 1.0.9\n\nUsage: $0 <prompt..>`)
13
+ .version('1.0.9')
14
14
  .locale('en')
15
15
  .example('$0 how to run a docker container', '')
16
16
  .example('how to setup my git account', '')
package/package.json CHANGED
@@ -1,14 +1,25 @@
1
1
  {
2
2
  "name": "ask-cli-ai",
3
3
  "description": "AI CLI to help you with commands, coding, apps, and more from your terminal.",
4
- "version": "1.0.7",
4
+ "version": "1.0.9",
5
5
  "homepage": "https://github.com/david-minaya/ask",
6
6
  "repository": "github:david-minaya/ask",
7
+ "engines": {
8
+ "node": ">=20.19.0"
9
+ },
7
10
  "license": "ISC",
8
11
  "author": "David Minaya",
9
12
  "type": "module",
10
13
  "main": "./dist/app.js",
11
- "keywords": ["cli", "ai", "terminal", "commands", "productivity", "help", "ask"],
14
+ "keywords": [
15
+ "cli",
16
+ "ai",
17
+ "terminal",
18
+ "commands",
19
+ "productivity",
20
+ "help",
21
+ "ask"
22
+ ],
12
23
  "bin": {
13
24
  "ask": "dist/app.js",
14
25
  "how": "dist/app.js",
@@ -33,7 +44,6 @@
33
44
  "ink": "^6.6.0",
34
45
  "ink-scroll-list": "^0.4.1",
35
46
  "ink-scroll-view": "^0.3.5",
36
- "ink-select-input": "^6.2.0",
37
47
  "ink-spinner": "^5.0.0",
38
48
  "ink-text-input": "^6.0.0",
39
49
  "langchain": "^1.2.7",
@@ -43,7 +53,7 @@
43
53
  "devDependencies": {
44
54
  "@eslint/js": "^9.39.2",
45
55
  "@stylistic/eslint-plugin": "^5.6.1",
46
- "@tsconfig/node22": "^22.0.5",
56
+ "@tsconfig/node20": "^20.1.8",
47
57
  "@types/node": "^25.0.3",
48
58
  "@types/react": "^19.2.7",
49
59
  "@types/yargs": "^17.0.35",