{
  "name": "sync-ai-context",
  "version": "1.1.0",
  "description": "Config-driven AI context sync tool for rules and skills across coding agents",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/KiritoKing/sync-ai-context.git"
  },
  "homepage": "https://github.com/KiritoKing/sync-ai-context#readme",
  "bugs": {
    "url": "https://github.com/KiritoKing/sync-ai-context/issues"
  },
  "keywords": [
    "cli",
    "context-sync",
    "ai-tools",
    "developer-tools",
    "automation"
  ],
  "engines": {
    "node": ">=18"
  },
  "type": "module",
  "bin": {
    "context-sync": "./dist/bin.js"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public",
    "provenance": true
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./cli": {
      "import": "./dist/cli.js"
    }
  },
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@biomejs/biome": "2.4.6",
    "@rslib/core": "^0.20.0",
    "@rstest/adapter-rslib": "^0.2.1",
    "@rstest/core": "^0.9.0",
    "@types/node": "^24.12.0",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "@inquirer/prompts": "^8.3.0"
  },
  "scripts": {
    "build": "rslib build",
    "check:badges": "node scripts/check-readme-badges.mjs",
    "check:oss": "node scripts/check-open-source.mjs",
    "check": "biome check --write",
    "dev": "rslib build --watch",
    "format": "biome format --write",
    "test": "rstest",
    "test:watch": "rstest --watch"
  }
}