@webdevtoday/grok-cli
Version:
A sophisticated CLI tool for interacting with xAI Grok 4, featuring conversation history, file reference, custom commands, memory system, and genetic development workflows
103 lines (102 loc) • 2.57 kB
JSON
{
"name": "@webdevtoday/grok-cli",
"version": "0.2.1",
"description": "A sophisticated CLI tool for interacting with xAI Grok 4, featuring conversation history, file reference, custom commands, memory system, and genetic development workflows",
"main": "dist/index.js",
"bin": {
"grok": "dist/cli.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/webdevtodayjason/grok-cli.git"
},
"bugs": {
"url": "https://github.com/webdevtodayjason/grok-cli/issues"
},
"homepage": "https://github.com/webdevtodayjason/grok-cli#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && tsc-alias",
"build:watch": "tsc --watch",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"ai",
"cli",
"grok",
"xai",
"assistant",
"hooks",
"mcp",
"typescript",
"chat",
"terminal",
"conversation",
"memory",
"genetic-development",
"tmux",
"permission-system",
"file-reference",
"custom-commands"
],
"author": "Grok CLI Team",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"globby": "^14.0.0",
"inquirer": "^9.2.12",
"langchain": "^0.0.208",
"markdown-it": "^14.0.0",
"nanoid": "^5.0.4",
"node-fetch": "^3.3.2",
"openai": "^4.24.0",
"ora": "^7.0.1",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.16",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"files": [
"dist/**/*",
"readme.md",
"LICENSE",
"docs/"
]
}