{
  "name": "@gasket/core",
  "version": "7.7.5",
  "description": "Entry point to setting up Gasket instances",
  "type": "module",
  "types": "lib/index.d.ts",
  "files": [
    "lib",
    "cjs",
    "docs",
    "EXAMPLES.md"
  ],
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.js",
      "require": "./cjs/index.cjs",
      "default": "./cjs/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "repository": "godaddy/gasket.git",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "gasket",
    "plugin",
    "plugin-engine",
    "preset"
  ],
  "author": "GoDaddy Operating Company, LLC",
  "license": "MIT",
  "bugs": "https://github.com/godaddy/gasket/issues",
  "homepage": "https://github.com/godaddy/gasket/tree/main/packages/gasket-core",
  "dependencies": {
    "debug": "^4.4.0",
    "@gasket/utils": "^7.6.6"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^3.2.0",
    "vitest": "^3.2.0",
    "@gasket/cjs": "^7.1.2",
    "@gasket/plugin-metadata": "^7.5.11"
  },
  "gasket": {
    "metadata": {
      "lifecycles": [
        {
          "name": "init",
          "description": "Handle any Initialization before configuration",
          "link": "README.md#init",
          "method": "execSync"
        },
        {
          "name": "configure",
          "description": "Adjust the Gasket configuration",
          "link": "README.md#configure",
          "method": "execWaterfallSync"
        },
        {
          "name": "prepare",
          "description": "Allows async configuration of Gasket",
          "link": "README.md#prepare",
          "method": "execWaterfall"
        },
        {
          "name": "ready",
          "description": "Configuration is complete and Gasket is ready to start",
          "link": "README.md#ready",
          "method": "exec"
        }
      ]
    }
  },
  "scripts": {
    "build": "gasket-cjs ./lib",
    "build:watch": "pnpm run build --watch",
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "posttest": "pnpm run lint && pnpm run typecheck",
    "test": "vitest run --globals",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest",
    "typecheck": "tsc",
    "typecheck:watch": "tsc --watch"
  }
}