{
  "version": "1.21.26",
  "name": "@bs-core/shell",
  "description": "The Bamboo Shell",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/shell.mjs",
      "types": "./dist/shell.d.ts"
    }
  },
  "files": [
    "dist/shell.mjs",
    "dist/shell.d.ts",
    "dist/shell.mjs.map"
  ],
  "types": "./dist/shell.d.ts",
  "engines": {
    "node": ">=24.0.0"
  },
  "keywords": [
    "Bamboo",
    "Shell",
    "Framework"
  ],
  "author": "Black Eye Technology",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/blackeyetech/bamboo-mono.git"
  },
  "bugs": {
    "url": "https://github.com/blackeyetech/bamboo-mono/issues"
  },
  "homepage": "https://github.com/blackeyetech/bamboo-mono#readme",
  "private": false,
  "dependencies": {
    "path-to-regexp": "^8.3.0"
  },
  "scripts": {
    "rollup": "rollup -c rollup.config.mjs",
    "build-dev": "tsc && pnpm run rollup",
    "build-prod": "pnpm run clean && tsc && NODE_ENV=production pnpm run rollup",
    "format-ts": "prettier --write 'src/**/*.ts'",
    "format-js": "prettier --write 'dist/**/*.{js,ts}'",
    "format-misc": "prettier --write '**/*.{json,md,yaml}'",
    "install-bin": "pnpm install -g $(pnpm pack . | tail -1)",
    "test": "echo \"No tests\" && exit 0",
    "clean": "rm -rf ./dist ./out"
  }
}