{
  "name": "@nicoavanzdev/webspec",
  "version": "0.2.0",
  "description": "A CLI + runtime framework for declarative browser-automation specs — web-only, agent-friendly, Playwright-powered",
  "keywords": [
    "web-automation",
    "browser-testing",
    "playwright",
    "yaml",
    "cli",
    "agent",
    "webspec"
  ],
  "homepage": "https://github.com/NicoAvanzDev/webspec#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/NicoAvanzDev/webspec.git"
  },
  "bugs": {
    "url": "https://github.com/NicoAvanzDev/webspec/issues"
  },
  "license": "MIT",
  "author": "WebSpec Contributors",
  "type": "commonjs",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "webspec": "./dist/cli/index.js"
  },
  "files": [
    "dist",
    "templates",
    "prompts",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:unit": "vitest run tests/unit",
    "test:integration": "vitest run tests/integration",
    "coverage": "vitest run --coverage",
    "lint": "oxlint --config .oxlintrc.json src tests",
    "lint:fix": "oxlint --config .oxlintrc.json --fix src tests",
    "fmt": "oxfmt --write 'src/**/*.ts' 'tests/**/*.ts'",
    "fmt:check": "oxfmt --check 'src/**/*.ts' 'tests/**/*.ts'",
    "typecheck": "tsc --noEmit",
    "clean": "rimraf dist .tsbuildinfo coverage",
    "check": "npm run typecheck && npm run lint && npm run fmt:check && npm test",
    "prepare": "husky install",
    "example:docs-visibility": "node dist/cli/index.js run examples/docs-visibility.spec.yaml --headed",
    "example:login": "node dist/cli/index.js run examples/login.spec.yaml --headed",
    "prepublishOnly": "npm run check && npm pack --dry-run"
  },
  "dependencies": {
    "@playwright/test": "^1.42.0",
    "chalk": "^4.1.2",
    "commander": "^12.0.0",
    "diff": "^5.2.0",
    "fast-glob": "^3.3.2",
    "inquirer": "^8.2.7",
    "js-yaml": "^4.1.0",
    "ora": "^5.4.1",
    "playwright": "^1.42.0",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/diff": "^5.2.1",
    "@types/inquirer": "^9.0.9",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^20.11.0",
    "@vitest/coverage-v8": "^1.4.0",
    "husky": "^9.1.7",
    "lint-staged": "^15.2.10",
    "oxfmt": "^0.43.0",
    "oxlint": "^0.2.0",
    "rimraf": "^5.0.5",
    "typescript": "^5.4.2",
    "vitest": "^1.4.0"
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "oxfmt --write"
    ]
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
