{
  "name": "@kyrwing/zest",
  "version": "0.6.3",
  "description": "Type-aware CLI that generates production-ready Jest tests for Zustand stores",
  "main": "dist/cli/index.js",
  "types": "dist/cli/index.d.ts",
  "bin": {
    "zest": "dist/cli/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "zustand",
    "testing",
    "jest",
    "cli",
    "typescript",
    "react",
    "test-generator"
  ],
  "author": "Kirill Poluektov",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/kyrwing/zest.git"
  },
  "bugs": {
    "url": "https://github.com/kyrwing/zest/issues"
  },
  "homepage": "https://github.com/kyrwing/zest#readme",
  "scripts": {
    "dev": "ts-node src/cli/index.ts",
    "build": "tsc",
    "test": "jest --passWithNoTests",
    "prepublishOnly": "npm run build",
    "postversion": "git push && git push --tags"
  },
  "dependencies": {
    "commander": "^14.0.3",
    "ts-morph": "^27.0.2"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^20.17.0",
    "@types/react": "^19.0.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.0",
    "zustand": "^5.0.12"
  }
}
