{
  "name": "@narthia/jira-client",
  "version": "0.4.0",
  "description": "A TypeScript Jira API client with dual ESM/CJS support for Jira REST API and Atlassian Forge applications. Zero runtime dependencies.",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "SECURITY.md"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts,.tsx",
    "lint:fix": "eslint src --ext .ts,.tsx --fix",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "test:coverage": "vitest --coverage",
    "prepublishOnly": "bun run clean && bun run build",
    "changeset": "changeset",
    "version-packages": "changeset version",
    "release": "changeset publish",
    "format": "prettier --write ."
  },
  "keywords": [
    "jira",
    "api",
    "client",
    "typescript",
    "forge",
    "atlassian",
    "rest-api",
    "nodejs",
    "sdk",
    "rest",
    "jira-client",
    "jira-api-client",
    "jira-rest-client",
    "atlassian-client",
    "jira-rest-api",
    "secure",
    "zero-dependencies",
    "type-safe",
    "narthia",
    "narthia-jira",
    "narthia-rest"
  ],
  "author": {
    "name": "Jeevan Karnati",
    "email": "jeevanreddy1999@gmail.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/narthia/jira-client.git"
  },
  "bugs": {
    "url": "https://github.com/narthia/jira-client/issues"
  },
  "homepage": "https://github.com/narthia/jira-client#readme",
  "devDependencies": {
    "@changesets/cli": "^2.29.5",
    "@eslint/js": "^9.32.0",
    "@forge/api": "^6.0.2",
    "@types/node": "^24.1.0",
    "@typescript-eslint/eslint-plugin": "^8.38.0",
    "@typescript-eslint/parser": "^8.38.0",
    "@vitest/coverage-v8": "^3.2.4",
    "eslint": "^9.32.0",
    "eslint-config-prettier": "^10.1.8",
    "jiti": "^2.5.1",
    "prettier": "^3.6.2",
    "tsup": "^8.5.0",
    "typescript": "^5.8.3",
    "vitest": "^3.2.4"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "security": {
    "policy": "https://github.com/narthia/jira-client/blob/main/SECURITY.md"
  },
  "maintainers": [
    {
      "name": "Jeevan Karnati",
      "email": "jeevanreddy1999@gmail.com"
    }
  ]
}
