{
  "name": "@anthragz/quip-export",
  "version": "1.1.0",
  "description": "A command-line tool to export and download documents from Quip to local storage while preserving folder structure",
  "main": "dist/index.js",
  "bin": {
    "quip-export": "dist/cli/index.js"
  },
  "scripts": {
    "build": "tsc",
    "build:clean": "rm -rf dist && npm run build",
    "dev": "ts-node src/cli/index.ts",
    "start": "node dist/cli/index.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "prepublishOnly": "npm run build:clean && npm run test && npm run lint",
    "prepack": "npm run build",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "keywords": [
    "quip",
    "export",
    "backup",
    "cli",
    "documents",
    "bulk-export",
    "docx",
    "html"
  ],
  "author": "Quip Bulk Export Team",
  "homepage": "https://github.com/raglin/quip-export#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/raglin/quip-export.git"
  },
  "bugs": {
    "url": "https://github.com/raglin/quip-export/issues"
  },
  "license": "MIT",
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=7.0.0"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE",
    "docs/**/*"
  ],
  "dependencies": {
    "cheerio": "^1.1.2",
    "commander": "^11.1.0",
    "docx": "^9.5.1",
    "dotenv": "^16.3.1",
    "keytar": "^7.9.0",
    "mammoth": "^1.11.0",
    "uuid": "^9.0.1"
  },
  "devDependencies": {
    "@types/cheerio": "^0.22.35",
    "@types/jest": "^29.5.8",
    "@types/node": "^20.10.0",
    "@types/uuid": "^9.0.8",
    "@typescript-eslint/eslint-plugin": "^6.13.0",
    "@typescript-eslint/parser": "^6.13.0",
    "eslint": "^8.54.0",
    "jest": "^29.7.0",
    "prettier": "^3.1.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.0"
  }
}
