specsync 4.1.1

Bidirectional spec-to-code validation with schema column checking — 11 languages, single binary
{
  "name": "specsync",
  "displayName": "SpecSync",
  "description": "Bidirectional spec-to-code validation — inline diagnostics, quality scores, and coverage indicators",
  "version": "1.0.0",
  "publisher": "corvidlabs",
  "license": "MIT",
  "icon": "icon.png",
  "repository": {
    "type": "git",
    "url": "https://github.com/CorvidLabs/spec-sync"
  },
  "homepage": "https://github.com/CorvidLabs/spec-sync#readme",
  "bugs": {
    "url": "https://github.com/CorvidLabs/spec-sync/issues"
  },
  "engines": {
    "vscode": "^1.85.0"
  },
  "categories": [
    "Linters",
    "Other"
  ],
  "keywords": [
    "spec",
    "documentation",
    "validation",
    "coverage",
    "lint"
  ],
  "activationEvents": [
    "workspaceContains:specsync.json",
    "workspaceContains:.specsync.toml",
    "workspaceContains:specs/"
  ],
  "main": "./out/extension.js",
  "contributes": {
    "commands": [
      {
        "command": "specsync.check",
        "title": "SpecSync: Validate Specs"
      },
      {
        "command": "specsync.coverage",
        "title": "SpecSync: Show Coverage"
      },
      {
        "command": "specsync.score",
        "title": "SpecSync: Score Spec Quality"
      },
      {
        "command": "specsync.generate",
        "title": "SpecSync: Generate Missing Specs"
      },
      {
        "command": "specsync.init",
        "title": "SpecSync: Initialize Config"
      }
    ],
    "configuration": {
      "title": "SpecSync",
      "properties": {
        "specsync.binaryPath": {
          "type": "string",
          "default": "specsync",
          "description": "Path to the specsync binary"
        },
        "specsync.validateOnSave": {
          "type": "boolean",
          "default": true,
          "description": "Run validation when spec or source files are saved"
        },
        "specsync.showInlineScores": {
          "type": "boolean",
          "default": true,
          "description": "Show quality scores as CodeLens on spec files"
        }
      }
    },
    "languages": [
      {
        "id": "specmd",
        "extensions": [
          ".spec.md"
        ],
        "aliases": [
          "SpecSync Spec"
        ]
      }
    ]
  },
  "scripts": {
    "build": "esbuild src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node --target=es2022 --sourcemap",
    "watch": "npm run build -- --watch",
    "package": "esbuild src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node --target=es2022 --minify && vsce package",
    "compile": "tsc -p ./ --noEmit"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@types/vscode": "^1.85.0",
    "@vscode/vsce": "^2.22.0",
    "esbuild": "^0.24.0",
    "typescript": "^5.3.0"
  }
}