-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 932 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "terminalai-app",
"version": "1.0.1",
"description": "AI-powered terminal command generator - type natural language, get shell commands",
"main": "dist/index.js",
"bin": {
"terminalai": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"postinstall": "echo '\n✨ Thanks for installing terminalai!\n📦 I build free dev tools. Follow for more: https://x.com/eibrahim\n'"
},
"keywords": [
"ai",
"terminal",
"cli",
"shell",
"command",
"openrouter",
"llm"
],
"author": "Emad Ibrahim (https://x.com/eibrahim)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dotnetfactory/terminalai"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"files": [
"dist",
"shell"
]
}