{
  "name": "@fortress-system/zero-defect-framework",
  "version": "1.2.0",
  "description": "Universal zero-defect development framework with 6-layer validation including critical journey testing, API contract validation, and Memory MCP integration",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "fortress": "dist/cli/fortress-cli.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:layer6": "jest tests/layer6-performance.test.ts",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "validate": "npm run test && npm run build",
    "benchmark:layer6": "npx ts-node scripts/benchmark-layer6.ts",
    "fortress:self-validate": "node dist/cli/fortress-cli.js validate --all-layers",
    "fortress:meta-test": "npm run validate && npm run fortress:self-validate",
    "prepare": "npm run build",
    "prepublishOnly": "npm run validate",
    "postinstall": "node scripts/post-install.js"
  },
  "keywords": [
    "zero-defect",
    "development-framework",
    "quality-assurance",
    "validation-pipeline",
    "cli-tool",
    "typescript",
    "testing",
    "fortress"
  ],
  "author": "Fortress Development Team",
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.20.2",
    "boxen": "^5.1.2",
    "chalk": "^4.1.2",
    "commander": "^9.4.1",
    "glob": "^8.1.0",
    "inquirer": "^8.2.6",
    "ora": "^5.4.1",
    "yaml": "^2.3.4"
  },
  "devDependencies": {
    "@playwright/test": "^1.56.1",
    "@types/inquirer": "^8.2.10",
    "@types/jest": "^29.5.8",
    "@types/node": "^18.19.15",
    "@typescript-eslint/eslint-plugin": "^8.41.0",
    "@typescript-eslint/parser": "^8.41.0",
    "eslint": "^8.55.0",
    "jest": "^29.7.0",
    "prettier": "^3.1.1",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=8.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/fortress-framework/zero-defect-framework.git"
  },
  "homepage": "https://fortress.dev",
  "bugs": {
    "url": "https://github.com/fortress-framework/zero-defect-framework/issues"
  },
  "files": [
    "dist/**/*",
    "scripts/**/*",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "fortress": {
    "self_validation": true,
    "meta_project": true,
    "quality_target": "critical"
  }
}
