{
  "name": "@codluv/versionguard",
  "version": "1.2.0",
  "description": "Strict versioning enforcement for SemVer and CalVer — language-agnostic manifest support, git hooks, changelog validation, and file sync",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "bin": {
    "versionguard": "dist/cli.js",
    "vg": "dist/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kryptobaseddev/versionguard.git"
  },
  "homepage": "https://github.com/kryptobaseddev/versionguard#readme",
  "bugs": {
    "url": "https://github.com/kryptobaseddev/versionguard/issues"
  },
  "scripts": {
    "build": "vite build && tsc -p tsconfig.build.json",
    "dev": "vite build --watch",
    "typecheck": "tsc --noEmit",
    "forge:check": "forge-ts check",
    "forge:test": "forge-ts test",
    "forge:build": "forge-ts build",
    "forge:docs:init": "forge-ts init docs",
    "forge:doctor": "forge-ts doctor",
    "vg:check": "node dist/cli.js check",
    "vg:validate": "node dist/cli.js validate",
    "vg:doctor": "node dist/cli.js doctor",
    "vg:sync": "node dist/cli.js sync",
    "lint": "npm run lint:biome && npm run lint:eslint",
    "lint:biome": "biome check .",
    "lint:eslint": "eslint .",
    "format": "biome format --write .",
    "test": "vitest run --coverage",
    "test:watch": "vitest",
    "prepare": "npm run build",
    "changeset": "changeset",
    "version-packages": "changeset version",
    "release": "npm run build && changeset publish"
  },
  "keywords": [
    "semver",
    "calver",
    "versioning",
    "git-hooks",
    "changelog",
    "version-sync",
    "release",
    "version-guard",
    "package-version",
    "keep-a-changelog"
  ],
  "author": "kryptobaseddev",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@clack/prompts": "^1.1.0",
    "@forge-ts/core": "^0.22.1",
    "chalk": "^5.6.2",
    "ckm-sdk": "^2026.3.3",
    "commander": "^14.0.3",
    "glob": "^13.0.6",
    "js-yaml": "^4.1.1",
    "smol-toml": "^1.6.1"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.9",
    "@changesets/changelog-github": "^0.6.0",
    "@changesets/cli": "^2.30.0",
    "@eslint/js": "^10.0.1",
    "@forge-ts/cli": "^0.22.1",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^25.5.0",
    "@vitest/coverage-v8": "^4.1.2",
    "eslint": "^10.1.0",
    "husky": "^9.1.7",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.57.2",
    "vite": "^8.0.3",
    "vitest": "^4.1.2"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "files": [
    "dist/"
  ]
}
