UNPKG

linear-cmd

Version:

A GitHub CLI-like tool for Linear - manage issues, accounts, and more

60 lines 1.63 kB
{ "name": "linear-cmd", "version": "1.0.16", "description": "A GitHub CLI-like tool for Linear - manage issues, accounts, and more", "keywords": [ "linear", "cli", "issue-tracker", "productivity", "github-cli" ], "author": "Lucas Vieira", "license": "MIT", "type": "module", "main": "dist/index.js", "bin": { "linear-cmd": "./dist/index.js", "linear": "./dist/index.js", "lin": "./dist/index.js" }, "dependencies": { "@linear/sdk": "^52.0.0", "axios": "^1.10.0", "chalk": "^5.4.1", "commander": "^14.0.0", "dotenv": "^17.2.0", "inquirer": "^12.7.0", "json5": "^2.2.3", "zod": "^4.0.5" }, "devDependencies": { "@biomejs/biome": "^2.1.2", "@changesets/cli": "2.27.1", "@commitlint/cli": "18.6.1", "@commitlint/config-conventional": "18.6.2", "@types/inquirer": "^9.0.8", "@types/node": "^24.0.14", "husky": "9.0.11", "lint-staged": "15.2.2", "rimraf": "5.0.5", "tsx": "^4.20.3", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "scripts": { "typecheck": "tsc --noEmit", "build": "rimraf ./dist && tsc", "postbuild": "npm run docs:update", "dev": "tsx src/index.ts", "start": "node dist/index.js", "format": "biome format --write .", "lint": "biome check --write .", "prepublish": "pnpm run build", "test:e2e": "vitest run --config tests/e2e/vitest.config.ts", "package:preview": "npm pack --dry-run", "changeset": "changeset", "release": "pnpm run build && changeset publish", "docs:update": "tsx scripts/update-commands-docs.ts" } }