{
  "name": "@sylphx/linear-mcp",
  "version": "1.3.4",
  "description": "A Model Context Protocol (MCP) server for interacting with Linear issues, projects, teams, and more",
  "license": "ISC",
  "author": "@sylphx",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "linear-mcp": "dist/index.js"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sylphxltd/linear-mcp.git"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "@linear/sdk": "40.0.0",
    "@modelcontextprotocol/sdk": "1.11.3",
    "dotenv": "16.5.0",
    "zod": "3.24.4"
  },
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@changesets/cli": "2.29.4",
    "@commitlint/cli": "19.8.1",
    "@commitlint/config-conventional": "19.8.1",
    "@sylphlab/biome-config": "0.2.0",
    "@types/node": "22.15.18",
    "lefthook": "1.11.12",
    "tsup": "8.4.0",
    "typescript": "5.8.3",
    "vitest": "3.1.3"
  },
  "keywords": [
    "linear",
    "mcp",
    "model-context-protocol",
    "ai",
    "issue-tracking",
    "project-management"
  ],
  "scripts": {
    "format": "biome format --write .",
    "check": "biome check --write --unsafe .",
    "lint": "pnpm run check",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "build": "tsup",
    "dev": "tsup --watch",
    "start": "node dist/index.js",
    "validate": "pnpm run check && pnpm run typecheck && pnpm run test"
  }
}