{
  "name": "linkup-search-cli",
  "version": "1.4.0",
  "description": "Official CLI for Linkup — AI-powered web search from your terminal",
  "type": "module",
  "license": "MIT",
  "author": "Linkup",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LinkupPlatform/linkup-cli"
  },
  "keywords": [
    "linkup",
    "cli",
    "search",
    "ai",
    "web-search"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "bin": {
    "linkup": "./bin/linkup.js"
  },
  "files": [
    "dist/**/*",
    "bin/**/*"
  ],
  "publishConfig": {
    "access": "public"
  },
  "main": "dist/src/cli.js",
  "scripts": {
    "prepare": "husky",
    "prepublishOnly": "npm run build",
    "build": "tsc",
    "commitlint": "commitlint --edit",
    "lint": "biome check",
    "lint:fix": "biome check --write",
    "prune": "knip",
    "semantic-release": "semantic-release",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "dependencies": {
    "@inquirer/prompts": "^8.5.2",
    "commander": "^13.1.0",
    "linkup-sdk": "^3.7.0",
    "open": "^11.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.4",
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@types/node": "^24.0.4",
    "@vitest/coverage-v8": "^4.1.8",
    "husky": "^9.1.7",
    "knip": "^5.61.2",
    "semantic-release": "^25.0.3",
    "typescript": "^5.9.3",
    "vitest": "^4.1.8"
  },
  "knip": {
    "entry": [
      "src/cli.ts"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      [
        "@semantic-release/github",
        {
          "failTitle": "The automated release is failing 🚨",
          "failComment": false,
          "labels": false,
          "releasedLabels": false
        }
      ]
    ]
  }
}
