{
  "name": "@drumnation/ts-import-move",
  "version": "1.0.8",
  "description": "Safely move TypeScript files/folders and update imports",
  "bin": {
    "ts-import-move": "./dist/index.js"
  },
  "scripts": {
    "dev": "tsup src/index.ts --watch --format esm",
    "clean": "rm -rf dist",
    "build": "pnpm clean && tsup",
    "postbuild": "chmod +x dist/index.js dist/index.cjs",
    "test:unit": "NODE_OPTIONS=--max-old-space-size=4096 vitest run tests/unit",
    "test:integration": "NODE_OPTIONS=--max-old-space-size=4096 vitest run tests/integration",
    "test:e2e": "NODE_OPTIONS=--max-old-space-size=4096 vitest run tests/e2e",
    "test:rules": "NODE_OPTIONS=--max-old-space-size=4096 vitest run tests/cli-install-rules.test.ts",
    "test": "npm run test:unit && npm run test:integration && npm run test:e2e",
    "test:all": "npm run test && npm run test:rules",
    "test:watch": "vitest",
    "prepublishOnly": "pnpm run test && pnpm run build",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "release": "npm version",
    "release:patch": "npm version patch",
    "release:minor": "npm version minor",
    "release:major": "npm version major",
    "do-publish": "npm publish --access public",
    "do-publish-no-tests": "npm publish --access public --ignore-scripts"
  },
  "keywords": [
    "typescript",
    "refactoring",
    "import",
    "move",
    "refactor",
    "cli",
    "cursor",
    "tooling"
  ],
  "author": "Cursor AI Tools",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/drumnation/ts-import-move.git"
  },
  "files": [
    "bin/",
    "dist/",
    "docs/",
    "rules/"
  ],
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^11.0.0",
    "fast-glob": "^3.3.0",
    "glob": "^11.0.3",
    "ts-morph": "^19.0.0"
  },
  "devDependencies": {
    "@types/glob": "^8.1.0",
    "@types/node": "^18.16.0",
    "@typescript-eslint/eslint-plugin": "^8.29.1",
    "@typescript-eslint/parser": "^8.29.1",
    "eslint": "^8.57.0",
    "prettier": "^3.0.1",
    "tsup": "^7.2.0",
    "tsx": "^3.14.0",
    "typescript": "^5.8.3",
    "vitest": "^3.1.1"
  },
  "engines": {
    "node": ">=16"
  },
  "packageManager": "pnpm@8.6.12",
  "type": "module"
}
