{
  "name": "scend-cli",
  "version": "1.0.1",
  "description": "Production-ready, cross-platform TypeScript CLI for processing engraving jobs from Supabase PGMQ queue with multi-instance support",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "scend-cli": "bin.js"
  },
  "files": [
    "dist/**/*",
    "bin.js",
    "pm2.config.js",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Shiphero-Yolo/scend-cli.git"
  },
  "bugs": {
    "url": "https://github.com/Shiphero-Yolo/scend-cli/issues"
  },
  "homepage": "https://github.com/Shiphero-Yolo/scend-cli#readme",
  "scripts": {
    "dev": "ts-node -r tsconfig-paths/register src/index.ts start",
    "build": "npm run clean && tsc && tsc-alias",
    "clean": "rimraf dist",
    "prepublishOnly": "npm run test && npm run build",
    "start": "node dist/index.js start",
    "start:build": "npm run build && node dist/index.js start",
    "test": "jest",
    "test:unit": "jest --testPathPattern=tests/unit",
    "test:unit:coverage": "jest --testPathPattern=tests/unit --coverage",
    "test:integration": "jest --testPathPattern=tests/integration",
    "test:e2e": "jest --config jest.e2e.config.ts --runInBand",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "coverage:check": "jest --coverage --coverageThreshold='{\"global\":{\"statements\":90,\"branches\":85,\"functions\":90,\"lines\":90}}'",
    "lint": "eslint src tests --ext .ts",
    "lint:fix": "eslint src tests --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "type-check": "tsc --noEmit",
    "pm2:start": "npm run build && pm2 start ecosystem.config.js",
    "pm2:stop": "pm2 stop ecosystem.config.js",
    "pm2:restart": "pm2 restart ecosystem.config.js",
    "pm2:reload": "pm2 reload ecosystem.config.js",
    "pm2:delete": "pm2 delete ecosystem.config.js",
    "pm2:logs": "pm2 logs scend-worker",
    "pm2:monit": "pm2 monit",
    "pm2:status": "pm2 status"
  },
  "keywords": [
    "cli",
    "engraving",
    "scend",
    "supabase",
    "pgmq",
    "queue",
    "typescript",
    "cross-platform",
    "multi-instance",
    "event-driven",
    "automation",
    "worker",
    "distributed"
  ],
  "author": "Scend",
  "license": "MIT",
  "dependencies": {
    "@automapper/classes": "^8.8.1",
    "@automapper/core": "^8.8.1",
    "@supabase/supabase-js": "^2.55.0",
    "@types/pg": "^8.15.6",
    "axios": "^1.12.2",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.14.0",
    "commander": "^11.0.0",
    "dotenv": "^17.2.1",
    "pg": "^8.16.3",
    "reflect-metadata": "^0.1.14",
    "tsyringe": "^4.8.0"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.7.0",
    "jest-mock-extended": "^3.0.5",
    "pm2": "^6.0.13",
    "prettier": "^3.0.0",
    "rimraf": "^6.0.1",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.0",
    "tsc-alias": "^1.8.16",
    "tsconfig-paths": "^4.2.0",
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
