{
  "name": "backuply",
  "version": "1.0.2",
  "description": "A simple backup client for automating schedule file backups safely",
  "exports": "./dist/app.js",
  "types": "./dist/app.d.ts",
  "type": "module",
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  },
  "scripts": {
    "start": "NODE_ENV=dev tsc && node dist/app.js list",
    "build": "NODE_ENV=production tsc",
    "lint": "NODE_ENV=test eslint \"{src,libs,test}/**/*.ts\" --fix",
    "test": "echo \"WARN: no test specified\" && exit 0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SystemFiles/backuply.git"
  },
  "keywords": [
    "backup",
    "automated",
    "scheduled"
  ],
  "author": "Ben Sykes <ben@sykesdev.ca> (https://sykesdev.ca/)",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/SystemFiles/backuply/issues"
  },
  "bin": {
    "backuply": "./dist/app.js"
  },
  "homepage": "https://github.com/SystemFiles/backuply#readme",
  "devDependencies": {
    "@types/figlet": "^1.5.4",
    "@types/fs-extra": "^9.0.11",
    "@types/node": "^15.6.1",
    "@types/uuid": "^8.3.0",
    "@types/yargs": "^17.0.2",
    "@typescript-eslint/eslint-plugin": "^4.25.0",
    "@typescript-eslint/parser": "^4.25.0",
    "eslint": "^7.27.0",
    "typescript": "^4.3.2"
  },
  "dependencies": {
    "figlet": "^1.5.0",
    "fs-extra": "^10.0.0",
    "lowdb": "^2.1.0",
    "ora": "^5.4.1",
    "uuid": "^8.3.2",
    "yargs": "^17.0.1"
  }
}
