{
  "name": "@opengsd/gsd-core",
  "version": "1.4.4",
  "description": "GSD Core is a meta-prompting, context engineering, and spec-driven development system for AI coding agents.",
  "bin": {
    "gsd-core": "bin/install.js",
    "gsd-tools": "gsd-core/bin/gsd-tools.cjs"
  },
  "files": [
    "bin",
    "commands",
    "gsd-core",
    "assets",
    "agents",
    ".claude-plugin",
    "gemini-extension.json",
    "GEMINI.md",
    "hooks",
    "scripts"
  ],
  "keywords": [
    "claude",
    "claude-code",
    "ai",
    "meta-prompting",
    "context-engineering",
    "spec-driven-development",
    "gemini",
    "gemini-cli",
    "codex",
    "codex-cli"
  ],
  "author": "OpenGSD",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/open-gsd/gsd-core.git"
  },
  "homepage": "https://github.com/open-gsd/gsd-core",
  "bugs": {
    "url": "https://github.com/open-gsd/gsd-core/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22.0.0",
    "npm": ">=10.0.0"
  },
  "dependencies": {
    "@anthropic-ai/claude-agent-sdk": "^0.2.84",
    "ws": "8.20.1"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.4",
    "@stryker-mutator/core": "^9.6.1",
    "@types/node": "^22.19.19",
    "c8": "^11.0.0",
    "eslint": "^9.39.4",
    "eslint-plugin-n": "^17.24.0",
    "eslint-plugin-no-only-tests": "^3.4.0",
    "fast-check": "^4.8.0",
    "globals": "^16.5.0",
    "js-yaml": "^4.1.1",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.60.0"
  },
  "overrides": {
    "qs": ">=6.15.2"
  },
  "optionalDependencies": {
    "fallow": "^2.70.0"
  },
  "scripts": {
    "sync:launcher": "node scripts/sync-runtime-launcher.cjs",
    "check:env": "node scripts/check-env.cjs",
    "check:alias-drift": "node scripts/check-alias-drift.cjs",
    "check:identity-drift": "node scripts/lint-package-identity-drift.cjs",
    "check:integrity": "node scripts/check-npm-integrity.cjs",
    "build": "npm run generate:identity && npm run build:lib && npm run build:hooks",
    "build:hooks": "node scripts/build-hooks.js",
    "build:lib": "tsc -p tsconfig.build.json",
    "generate:identity": "node scripts/generate-package-identity.cjs",
    "prepack": "npm run build:lib",
    "prepare": "npm run build:lib",
    "version": "node scripts/sync-manifest-versions.cjs --stage",
    "prepublishOnly": "npm run build:lib && npm run build:hooks",
    "pretest": "npm run build:lib && npm run lint:skill-deps",
    "pretest:coverage": "npm run build:lib && npm run lint:skill-deps",
    "lint": "eslint . --cache --cache-location node_modules/.cache/eslint/",
    "lint:fix": "eslint . --fix",
    "lint:descriptions": "node scripts/lint-descriptions.cjs",
    "lint:skill-deps": "node scripts/lint-skill-deps.cjs",
    "lint:test-file-count": "node scripts/lint-test-file-count.cjs",
    "lint:pr-checks": "node scripts/lint-pr-check-project-dir.cjs",
    "lint:changeset": "node scripts/changeset/lint.cjs",
    "lint:docs": "node scripts/lint-docs-required.cjs",
    "lint:legacy-name": "node scripts/lint-legacy-dir-name.cjs",
    "ci:test-scope": "node scripts/ci-test-scope.cjs",
    "changeset": "node scripts/changeset/new.cjs",
    "changelog:render": "node scripts/changeset/cli.cjs render",
    "test": "node scripts/run-tests.cjs",
    "test:unit": "node scripts/run-tests.cjs --suite unit",
    "test:integration": "node scripts/run-tests.cjs --suite integration",
    "test:install": "node scripts/run-tests.cjs --suite install",
    "test:security": "node scripts/run-tests.cjs --suite security",
    "test:slow": "node scripts/run-tests.cjs --suite slow",
    "test:affected": "node scripts/run-affected-tests.cjs",
    "test:coverage": "c8 --check-coverage --lines 70 --reporter text --include 'gsd-core/bin/lib/*.cjs' --exclude 'tests/**' --all node scripts/run-tests.cjs",
    "test:coverage:unit": "c8 --check-coverage --lines 70 --reporter text --include 'gsd-core/bin/lib/*.cjs' --exclude 'tests/**' --all node scripts/run-tests.cjs --suite unit",
    "test:coverage:all": "npm run test:coverage",
    "test:mutation": "stryker run",
    "test:mutation:since": "stryker run --incremental --since origin/next"
  }
}
