{
  "name": "@daymxn/bs",
  "description": "Common build scripts for my rbxts projects.",
  "version": "0.2.0",
  "author": "Daymon Littrell-Reyes",
  "bin": {
    "bs": "./bin/run.js",
    "bs-dev": "./bin/dev.js"
  },
  "bugs": "https://github.com/daymxn/bs-cli/issues",
  "dependencies": {
    "@oclif/core": "^4.0.33",
    "@oclif/plugin-help": "^6.2.18",
    "@oclif/plugin-plugins": "^5.4.17",
    "@types/ejs": "^3.1.5",
    "@verdaccio/config": "6.0.0-6-next.76",
    "ejs": "^3.1.10",
    "eslint": "9.15.0",
    "execa": "^9.5.1",
    "fs-extra": "^11.2.0",
    "github-slugger": "^2.0.0",
    "jsonc-parser": "^3.3.1",
    "lodash-es": "^4.17.21",
    "normalize-package-data": "^7.0.0",
    "pm2": "^5.4.3",
    "strip-ansi": "^7.1.0",
    "tmp-promise": "^3.0.3",
    "verdaccio": "^6.0.2",
    "zod": "^3.23.8",
    "zod-to-json-schema": "^3.23.5"
  },
  "devDependencies": {
    "@changesets/changelog-git": "^0.2.0",
    "@changesets/cli": "^2.27.10",
    "@eslint/js": "^9.15.0",
    "@microsoft/api-documenter": "^7.26.0",
    "@microsoft/api-extractor": "^7.48.0",
    "@oclif/prettier-config": "^0.2.1",
    "@types/eslint": "^9.6.1",
    "@types/eslint__js": "^8.42.3",
    "@types/fs-extra": "^11.0.4",
    "@types/lodash-es": "^4.17.12",
    "@types/node": "^22.10.0",
    "@types/normalize-package-data": "^2.4.4",
    "@typescript-eslint/eslint-plugin": "^8.16.0",
    "@typescript-eslint/parser": "^8.16.0",
    "@verdaccio/types": "^10.8.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-headers": "^1.2.0",
    "eslint-plugin-prettier": "^5.2.1",
    "eslint-plugin-unicorn": "^56.0.1",
    "jiti": "^2.4.0",
    "oclif": "^4.15.29",
    "prettier": "^3.4.2",
    "prettier-plugin-organize-imports": "^4.1.0",
    "shx": "^0.3.4",
    "ts-node": "^10.9.2",
    "tsup": "^8.3.5",
    "typescript": "^5.7.2",
    "typescript-eslint": "^8.16.0"
  },
  "peerDependencies": {
    "@changesets/cli": "^2",
    "@microsoft/api-documenter": "^7",
    "@microsoft/api-extractor": "^7",
    "eslint": ">=8.0.0",
    "tsup": "^8"
  },
  "peerDependenciesMeta": {
    "@microsoft/api-extractor": {
      "optional": true
    },
    "@microsoft/api-documenter": {
      "optional": true
    },
    "tsup": {
      "optional": true
    },
    "eslint": {
      "optional": true
    },
    "@changesets/cli": {
      "optional": true
    },
    "ts-node": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=22.9.0"
  },
  "files": [
    "/bin",
    "/dist",
    "/oclif.manifest.json",
    "/static/theme.json",
    "/static/assets",
    "tsconfig.json"
  ],
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://github.com/daymxn/bs-cli",
  "keywords": [
    "oclif",
    "bs",
    "cli",
    "rbxts"
  ],
  "license": "Apache-2.0",
  "main": "dist/index.js",
  "type": "module",
  "oclif": {
    "bin": "bs",
    "dirname": "bs",
    "commands": "./dist/commands",
    "plugins": [
      "@oclif/plugin-help",
      "@oclif/plugin-plugins"
    ],
    "topicSeparator": " ",
    "helpClass": "./dist/help",
    "theme": "./static/theme.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/daymxn/bs-cli.git"
  },
  "imports": {
    "#src/*": "./dist/*"
  },
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "shx rm -rf dist && tsc -b && pnpm assets",
    "assets": "cp -rf ./static/assets ./dist/assets",
    "dev": "pnpm exec ./bin/dev.cmd",
    "prod": "pnpm exec ./bin/run.cmd",
    "reprod": "node ./bin/run.js",
    "prereprod": "pnpm build",
    "lint": "pnpm eslint . --flag unstable_ts_config --fix",
    "format": "pnpm prettier . --write",
    "manifest": "oclif manifest",
    "readme": "pnpm reprod readme",
    "update": "pnpm readme && pnpm manifest",
    "postbuild": "chmod -R u+x ./bin/",
    "preupdate": "shx rm -f oclif.manifest.json",
    "release": "pnpm changeset publish",
    "prerelease": "pnpm run update",
    "change": "pnpm changeset add",
    "change:version": "pnpm changeset version",
    "push:tags": "pnpm changeset tag && git push --follow-tags"
  }
}