{
  "name": "rs-runner",
  "version": "1.4.1",
  "keywords": [
    "rs",
    "cli",
    "script-runner",
    "package-manager",
    "npm",
    "yarn",
    "pnpm",
    "bun",
    "deno",
    "global-scripts",
    "directory-scripts",
    "command-line-tool",
    "developer-tools"
  ],
  "bin": {
    "rs": "./dist/index.js"
  },
  "main": "./dist/index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jsingason/rs.git"
  },
  "description": "RS is a CLI tool for quickly detecting package.json scripts, and running them.",
  "homepage": "https://jsingason.github.io/rs",
  "bugs": {
    "url": "https://github.com/jsingason/rs/issues"
  },
  "author": "Jóhann S. Ingason <jsingason@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.5.13",
    "@types/node": "^22.7.4",
    "jest": "^29.7.0",
    "prettier": "^3.3.3",
    "ts-jest": "^29.2.5",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^5.6.2"
  },
  "dependencies": {
    "chalk": "4.1.2",
    "commander": "^12.1.0",
    "inquirer": "^12.6.3"
  },
  "directories": {
    "test": "tests"
  },
  "scripts": {
    "test": "jest",
    "dev": "tsc -w",
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "tslint -p tsconfig.json"
  }
}