{
  "name": "lwc-convert",
  "version": "1.9.0",
  "description": "CLI tool to convert Salesforce Aura and Visualforce components to Lightning Web Components",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "lwc-convert": "./dist/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "tsup",
    "build:types": "tsc --emitDeclarationOnly",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "test": "jest",
    "lint": "eslint \"src/**/*.ts\"",
    "format": "prettier --write \"src/**/*.ts\"",
    "prepublishOnly": "npm run build && npm test",
    "prepare": "husky"
  },
  "keywords": [
    "salesforce",
    "lwc",
    "aura",
    "visualforce",
    "converter",
    "migration",
    "lightning-web-components",
    "cli",
    "tui",
    "interactive"
  ],
  "author": "lwc-convert contributors",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Lastonedown86/lwc-convert.git"
  },
  "bugs": {
    "url": "https://github.com/Lastonedown86/lwc-convert/issues"
  },
  "homepage": "https://github.com/Lastonedown86/lwc-convert#readme",
  "dependencies": {
    "@babel/generator": "^7.23.0",
    "@babel/parser": "^7.23.0",
    "@babel/traverse": "^7.23.0",
    "@babel/types": "^7.23.0",
    "@clack/prompts": "^0.11.0",
    "chalk": "^4.1.2",
    "commander": "^11.1.0",
    "domhandler": "^5.0.3",
    "fs-extra": "^11.2.0",
    "fuse.js": "^7.0.0",
    "htmlparser2": "^9.1.0",
    "ink": "^4.4.1",
    "ink-select-input": "^5.0.0",
    "ink-spinner": "^5.0.0",
    "ink-text-input": "^5.0.1",
    "inquirer": "^13.2.1",
    "postcss": "^8.4.32",
    "react": "^18.2.0",
    "zustand": "^4.5.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.3.1",
    "@commitlint/config-conventional": "^20.3.1",
    "@types/babel__generator": "^7.6.8",
    "@types/babel__traverse": "^7.20.4",
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.9",
    "@types/jest": "^29.5.11",
    "@types/node": "^20.10.5",
    "@types/react": "^18.2.0",
    "@types/react-test-renderer": "^18.3.1",
    "@typescript-eslint/eslint-plugin": "^8.54.0",
    "@typescript-eslint/parser": "^8.54.0",
    "eslint": "^8.56.0",
    "husky": "^9.1.7",
    "ink-testing-library": "^3.0.0",
    "jest": "^29.7.0",
    "prettier": "^3.1.1",
    "react-test-renderer": "^18.3.1",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.1",
    "tsx": "^4.21.0",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
