{
  "name": "lockfile-sync-check",
  "version": "0.0.6",
  "description": "A command-line tool to check if your package manager's lockfile is in sync with the latest changes in your Git repository",
  "type": "module",
  "main": "dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "bin": {
    "lockfile-sync-check": "./dist/cli.js"
  },
  "keywords": [
    "pnpm",
    "yarn",
    "npm",
    "git",
    "lockfile",
    "sync"
  ],
  "author": "clencat <2091927351@qq.com>",
  "license": "MIT",
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@types/node": "^22.13.9",
    "@varlet/release": "^0.3.3",
    "@vitest/coverage-v8": "^3.0.7",
    "tsup": "^8.4.0",
    "typescript": "^5.8.2",
    "vitest": "^3.0.7"
  },
  "scripts": {
    "dev": "bun run ./src/cli.ts",
    "dev:watch": "tsup --watch",
    "build": "tsup",
    "lint": "biome check src",
    "format": "biome format --write src",
    "release": "pnpm run build && vr release",
    "test": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}