{
  "name": "@graphikartistry/cursor-doc-automation",
  "version": "1.0.1",
  "description": "Cursor IDE extension for autonomous documentation and ticket management",
  "main": "dist/extension.js",
  "bin": {
    "cursor-doc-automation": "./dist/cli.js"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "scripts": {
    "build": "tsc",
    "start": "npm run build && node dist/extension.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test-docs": "ts-node src/scripts/testDocumentation.ts",
    "package": "npm run build && npm pack",
    "publish": "npm publish",
    "deps:check": "npm outdated",
    "deps:update": "npm update",
    "deps:audit": "npm audit",
    "deps:fix": "npm audit fix",
    "deps:clean": "rm -rf node_modules package-lock.json && npm install",
    "create-pr": "ts-node src/scripts/createPRWithJira.ts"
  },
  "keywords": [
    "cursor",
    "documentation",
    "automation",
    "jira",
    "github"
  ],
  "author": "graphikartistry",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "axios": "^1.8.1",
    "dotenv": "^16.4.7",
    "react": "^19.0.0",
    "react-dom": "^19.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^22.13.6",
    "@types/react": "^19.0.10",
    "@types/react-dom": "^19.0.4",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.6",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.2"
  },
  "files": [
    "dist",
    "src",
    "docs",
    "README.md"
  ],
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "testMatch": ["**/__tests__/**/*.test.ts"],
    "collectCoverageFrom": [
      "src/**/*.ts",
      "!src/**/*.d.ts",
      "!src/__tests__/**"
    ]
  }
}
