{
  "name": "@lumy-pack/syncpoint",
  "version": "0.1.0",
  "description": "CLI tool for project synchronization and scaffolding",
  "keywords": [
    "cli",
    "sync",
    "syncpoint",
    "scaffolding"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/vincent-kk/lumy-pack.git",
    "directory": "packages/syncpoint"
  },
  "license": "MIT",
  "author": {
    "name": "Vincent K. Kelvin",
    "email": "lunox273@gmail.com"
  },
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "source": "./src/index.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "bin": "dist/cli.mjs",
  "files": [
    "dist",
    "!dist/tsconfig.tsbuildinfo",
    "assets",
    "README.md"
  ],
  "scripts": {
    "build": "node scripts/inject-version.js && rolldown -c rolldown.config.ts && yarn build:types",
    "build:publish:npm": "yarn build && yarn publish:npm",
    "build:types": "tsc -p ./tsconfig.declarations.json",
    "dev": "node scripts/inject-version.js && tsx src/cli.ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint \"src/**/*.ts\"",
    "publish:npm": "yarn npm publish --access public",
    "test": "vitest",
    "test:all": "vitest run && yarn test:e2e && yarn test:docker",
    "test:docker": "vitest run --config vitest.e2e.config.ts src/__tests__/docker/",
    "test:e2e": "vitest run --config vitest.e2e.config.ts src/__tests__/e2e/",
    "test:run": "vitest run",
    "version:major": "yarn version major",
    "version:minor": "yarn version minor",
    "version:patch": "yarn version patch"
  },
  "dependencies": {
    "@winglet/common-utils": "^0.12.2",
    "ajv": "^8.0.0",
    "ajv-formats": "^3.0.0",
    "commander": "^12.1.0",
    "fast-glob": "^3.0.0",
    "ink": "^5.0.0",
    "ink-select-input": "^6.0.0",
    "ink-spinner": "^5.0.0",
    "micromatch": "^4.0.8",
    "picocolors": "^1.1.1",
    "react": "^18.0.0",
    "tar": "^7.0.0",
    "yaml": "^2.0.0"
  },
  "devDependencies": {
    "@lumy-pack/shared": "0.0.1",
    "@types/micromatch": "^4.0.9",
    "@types/node": "^20.11.0",
    "@types/react": "^18.0.0",
    "@vitest/coverage-v8": "^3.2.4",
    "ink-testing-library": "^4.0.0",
    "rolldown": "^1.2.0"
  }
}