{
  "name": "specothesis",
  "version": "1.2.0",
  "description": "Capture API calls from Playwright browser sessions and export to OpenAPI, StepCI, curl, and coverage reports",
  "license": "MIT",
  "type": "module",
  "main": "dist/capture.js",
  "bin": {
    "specint": "./dist/capture.js"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE",
    ".env.example"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/Rajat-Dandoti/specothesis.git"
  },
  "homepage": "https://github.com/Rajat-Dandoti/specothesis#readme",
  "bugs": {
    "url": "https://github.com/Rajat-Dandoti/specothesis/issues"
  },
  "keywords": [
    "api",
    "openapi",
    "swagger",
    "playwright",
    "har",
    "stepci",
    "testing",
    "api-testing",
    "schemathesis",
    "coverage",
    "rest"
  ],
  "scripts": {
    "capture": "node --loader ts-node/esm src/capture.ts",
    "login": "node --loader ts-node/esm src/capture.ts login",
    "list": "node --loader ts-node/esm src/capture.ts list",
    "build": "tsc && node scripts/postbuild.mjs",
    "start": "node dist/capture.js",
    "schema-manifest": "node --loader ts-node/esm src/report/schemaManifestCli.ts",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest",
    "lint": "eslint src/ tests/",
    "format": "prettier --write src/ tests/ scripts/",
    "release:patch": "npm run build && npm version patch && git push && git push --tags && npm publish",
    "release:minor": "npm run build && npm version minor && git push && git push --tags && npm publish",
    "release:major": "npm run build && npm version major && git push && git push --tags && npm publish"
  },
  "dependencies": {
    "dotenv": "^17.4.2",
    "js-yaml": "^4.1.0",
    "minimist": "^1.2.8",
    "playwright": "^1.44.0"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/minimist": "^1.2.5",
    "@types/node": "^20.12.0",
    "@typescript-eslint/eslint-plugin": "^8.59.3",
    "@typescript-eslint/parser": "^8.59.3",
    "@vitest/coverage-v8": "^4.1.6",
    "eslint": "^10.3.0",
    "prettier": "^3.8.3",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.5",
    "vitest": "^4.1.6"
  }
}
