-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.42 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "void-cmd",
"version": "1.1.1",
"description": "AI-powered CLI tool that converts natural language to shell commands using Cerebras API",
"main": "dist/index.js",
"bin": {
"vcmd": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && sed -i '1i#!/usr/bin/env node' dist/index.js && chmod +x dist/index.js",
"start": "bun src/index.ts",
"dev": "bun --watch src/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"install-global": "npm run build && npm link",
"uninstall-global": "npm unlink"
},
"dependencies": {
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"inquirer": "^9.2.0"
},
"devDependencies": {
"typescript": "^4.9.5",
"@types/node": "^20.17.52",
"@types/inquirer": "^9.0.0"
},
"keywords": [
"cli",
"command-line",
"natural-language",
"shell-commands",
"cerebras",
"ai",
"automation",
"developer-tools",
"terminal",
"bash",
"vcmd",
"void-cmd"
],
"author": {
"name": "VoidWorks",
"url": "https://voidworks.xyz"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xptea/vcmd.git"
},
"bugs": {
"url": "https://github.com/xptea/vcmd/issues"
},
"homepage": "https://github.com/xptea/vcmd#readme",
"engines": {
"node": ">=16.0.0"
},
"preferGlobal": true
}