{
  "name": "@h3ravel/shared",
  "version": "0.27.13",
  "description": "Shared Utilities.",
  "type": "module",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./*": "./*"
  },
  "typesVersions": {
    "*": {
      "*": [
        "dist/index.d.ts"
      ]
    }
  },
  "files": [
    "dist",
    "tsconfig.json"
  ],
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://h3ravel.toneflix.net",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/h3ravel/framework.git",
    "directory": "packages/shared"
  },
  "keywords": [
    "h3ravel",
    "modern",
    "web",
    "H3",
    "framework",
    "nodejs",
    "typescript",
    "laravel"
  ],
  "dependencies": {
    "@inquirer/prompts": "^7.9.0",
    "chalk": "^5.6.0",
    "edge.js": "^6.3.0",
    "escalade": "^3.2.0",
    "h3": "2.0.1-rc.5",
    "inquirer-autocomplete-standalone": "^0.8.1",
    "preferred-pm": "^4.1.1"
  },
  "devDependencies": {
    "fetchdts": "^0.1.6",
    "pnpm": "^10.14.0"
  },
  "scripts": {
    "build": "tsdown --config-loader unconfig",
    "barrel": "barrelsby --directory src --delete --singleQuotes",
    "dev": "tsx watch src/index.ts",
    "start": "node dist/index.js",
    "lint": "eslint . --ext .ts",
    "test": "jest --passWithNoTests",
    "release:patch": "pnpm build && pnpm version patch && git add . && git commit -m \"version: bump shared package and publish\" && pnpm publish --tag latest",
    "version-patch": "pnpm version patch"
  }
}