{
  "name": "digi-rain",
  "version": "0.4.0",
  "description": "A digital rain effect for your terminal inspired by the unforgettable classic, The Matrix",
  "author": "gfargo <ghfargo@gmail.com>",
  "license": "MIT",
  "bin": "dist/cli.js",
  "type": "module",
  "engines": {
    "node": ">=16"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/gfargo/digi-rain.git"
  },
  "keywords": [
    "terminal",
    "matrix",
    "digital",
    "rain",
    "effect",
    "animation",
    "console",
    "cli",
    "katakana",
    "ascii-art",
    "terminal-graphics"
  ],
  "bugs": {
    "url": "https://github.com/gfargo/digi-rain/issues"
  },
  "homepage": "https://github.com/gfargo/digi-rain#readme",
  "man": "./README.md",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/gfargo"
  },
  "contributors": [
    {
      "name": "Griffen Fargo",
      "email": "ghfargo@gmail.com",
      "url": "https://github.com/gfargo"
    }
  ],
  "scripts": {
    "start": "node dist/cli.js",
    "build": "tsc",
    "dev": "tsc --watch",
    "release": "release-it",
    "lint": "prettier --check . && xo",
    "lint:fix": "prettier --write . && xo --fix",
    "pretest": "yarn build",
    "test": "ava",
    "test:fix": "yarn lint:fix && ava --update-snapshots"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "meow": "^11.0.0",
    "node-emoji": "^2.2.0",
    "chalk": "^5.4.1"
  },
  "devDependencies": {
    "@ava/typescript": "^5.0.0",
    "@types/node": "^22.8.2",
    "ava": "^6.2.0",
    "prettier": "^2.8.7",
    "release-it": "^17.10.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.3",
    "xo": "^0.59.3"
  },
  "ava": {
    "typescript": {
      "extensions": [
        "ts",
        "tsx"
      ],
      "rewritePaths": {
        "src/": "dist/"
      },
      "compile": false
    },
    "require": [
      "ts-node/register"
    ]
  },
  "xo": {
    "prettier": true,
    "rules": {
      "unicorn/filename-case": "off",
      "@typescript-eslint/ban-ts-comment": "off",
      "@typescript-eslint/naming-convention": [
        "error",
        {
          "selector": "variable",
          "format": [
            "camelCase",
            "PascalCase",
            "UPPER_CASE"
          ]
        }
      ]
    }
  }
}
