UNPKG

@taizo-pro/github-discussions-cli

Version:

A powerful command-line tool for interacting with GitHub Discussions without opening a browser

79 lines (78 loc) 2.03 kB
{ "name": "@taizo-pro/github-discussions-cli", "version": "1.2.1", "description": "A powerful command-line tool for interacting with GitHub Discussions without opening a browser", "type": "module", "main": "dist/cli/index.js", "bin": { "gh-discussions": "dist/cli/index.js" }, "scripts": { "build": "tsc", "build:watch": "tsc --watch", "dev": "ts-node src/cli/index.ts", "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest", "test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch", "lint": "eslint src --ext .ts", "format": "prettier --write src/**/*.ts", "prepublishOnly": "npm run build", "prepack": "npm run build" }, "keywords": [ "github", "discussions", "cli", "command-line", "terminal", "api", "graphql", "typescript", "nodejs", "developer-tools" ], "author": { "name": "taizo-pro", "url": "https://github.com/taizo-pro" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/taizo-pro/github-discussions-cli.git" }, "homepage": "https://github.com/taizo-pro/github-discussions-cli#readme", "bugs": { "url": "https://github.com/taizo-pro/github-discussions-cli/issues" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "dependencies": { "@octokit/graphql": "^7.0.2", "chalk": "^5.3.0", "cli-progress": "^3.12.0", "commander": "^11.1.0", "inquirer": "^9.2.12", "ora": "^8.2.0", "table": "^6.8.1" }, "devDependencies": { "@types/cli-progress": "^3.11.6", "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.11", "@types/node": "^20.10.5", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "cross-env": "^7.0.3", "eslint": "^8.56.0", "jest": "^29.7.0", "prettier": "^3.1.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "^5.3.3" } }