{
  "name": "ynab-buddy",
  "version": "2.0.5",
  "description": "Upload & import CSV files from any bank into YNAB",
  "keywords": [
    "ynab",
    "youneedabudget",
    "csv",
    "import"
  ],
  "main": "dist/index.js",
  "bin": "dist/index.js",
  "files": [
    "dist/",
    "assets/"
  ],
  "license": "MIT",
  "author": {
    "name": "Niels Maerten",
    "url": "https://github.com/nielsmaerten"
  },
  "homepage": "https://github.com/nielsmaerten/ynab-buddy",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nielsmaerten/ynab-buddy.git"
  },
  "scripts": {
    "start": "ts-node ./src/index.ts",
    "hooks": "cross-env NODE_ENV=hooks yarn start",
    "build": "tsc",
    "package": "yarn build && yarn pkg ./dist/index.js --config ./package.json",
    "release": "yarn np --no-publish && npm publish",
    "prepublish": "yarn package && yarn test",
    "postpublish": "yarn package --compress Brotli",
    "test": "jest",
    "lint:fix": "yarn prettier ./src --write",
    "lint": "yarn prettier ./src --check"
  },
  "pkg": {
    "assets": [
      "assets/config/example.yaml"
    ],
    "scripts": "build/**/*.js",
    "targets": [
      "linux",
      "win",
      "macos"
    ],
    "outputPath": "bin"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "devDependencies": {
    "@types/glob": "^8.1.0",
    "@types/jest": "^29.4.4",
    "@types/js-yaml": "^4.0.5",
    "@types/luxon": "^3.2.0",
    "@types/node": "^20.0.0",
    "@types/pako": "^2",
    "@types/prompts": "^2.4.3",
    "@yao-pkg/pkg": "^5.8.1",
    "commitizen": "^4.3.0",
    "cross-env": "^7.0.3",
    "cz-conventional-changelog": "3.3.0",
    "jest": "^29.5.0",
    "np": "^10.0.0",
    "prettier": "3.3.2",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.4"
  },
  "dependencies": {
    "abort-controller": "^3.0.0",
    "chalk": "^4.1.2",
    "csv-parse": "^4.16.3",
    "csv-stringify": "^5.6.5",
    "glob": "^10.2.2",
    "js-yaml": "^4.1.0",
    "luxon": "^3.3.0",
    "minimatch": "^9.0.0",
    "pako": "^2.1.0",
    "prompts": "^2.4.2",
    "ynab": "^2.0.0"
  },
  "resolutions": {
    "minimist": "^1.2.7"
  },
  "packageManager": "yarn@4.3.1",
  "np": {
    "cleanup": false
  }
}
