UNPKG

@terragon-labs/cli

Version:

The official CLI for Terragon Labs - your AI-powered coding assistant.

69 lines 1.69 kB
{ "name": "@terragon-labs/cli", "version": "0.1.10", "type": "module", "bin": { "terry": "./dist/index.js" }, "dependencies": { "@orpc/client": "^1.6.0", "@orpc/contract": "1.6.0", "@tanstack/react-query": "^5.76.1", "commander": "^12.1.0", "ink": "^6.0.0", "ink-select-input": "^6.2.0", "ink-spinner": "^5.0.0", "node-fetch": "^3.3.2", "react": "^19.1.0", "update-notifier": "^7.3.1" }, "devDependencies": { "@types/node": "^22.6.1", "@types/react": "^19.1.8", "@types/update-notifier": "^6.0.8", "dotenv": "^16.5.0", "tsup": "^8.3.5", "tsx": "^4.19.1", "typescript": "^5.7.2", "@terragon/cli-api-contract": "0.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "files": [ "dist", "package.json", "README.md" ], "keywords": [ "terragon", "cli", "terry", "ai", "coding-assistant" ], "author": "Terragon Labs", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/terragon-labs/terragon.git", "directory": "apps/cli" }, "homepage": "https://www.terragonlabs.com", "bugs": { "url": "https://github.com/terragon-labs/terragon/issues" }, "scripts": { "dev": "tsup --watch", "build": "tsup", "start": "node dist/index.js", "tsc-watch": "tsc --watch --noEmit --preserveWatchOutput", "tsc-check": "tsc --noEmit", "format": "prettier --write .", "format-check": "prettier --check .", "install:dev": "./scripts/install-cli-dev.sh", "uninstall:dev": "./scripts/uninstall-cli.sh", "release": "./scripts/release.sh" } }