{
  "name": "virtue-cli",
  "version": "1.0.18",
  "description": "Personal character development CLI tool for tracking virtues and philosophical alignment",
  "main": "dist/index.js",
  "bin": {
    "virtue-cli": "./dist/index.js"
  },
  "scripts": {
    "build": "tsc && cp src/database/schema.sql dist/database/",
    "build:fast": "tsc && cp src/database/schema.sql dist/database/",
    "dev": "ts-node-esm src/index.ts",
    "start": "node dist/index.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:ci": "jest --ci --coverage --watchAll=false",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "typecheck": "tsc --noEmit",
    "quality-check": "npm run lint && npm run typecheck && npm run test:ci",
    "quality-fix": "npm run lint:fix && npm run typecheck",
    "prepare": "npm run build",
    "prepack": "npm run build && node scripts/prepare-publish.js",
    "prepublishOnly-disabled": "npm run quality-check"
  },
  "keywords": [
    "virtue",
    "ethics",
    "character",
    "development",
    "cli",
    "philosophy",
    "self-improvement",
    "personal-growth",
    "tracking",
    "mindfulness"
  ],
  "author": "Mason Buchanan",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Masbuc53/virtue-cli.git"
  },
  "homepage": "https://github.com/Masbuc53/virtue-cli#readme",
  "bugs": {
    "url": "https://github.com/Masbuc53/virtue-cli/issues"
  },
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=8.0.0"
  },
  "type": "module",
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@anthropic-ai/sdk": "^0.55.1",
    "@clack/prompts": "^0.11.0",
    "better-sqlite3": "^12.2.0",
    "commander": "^14.0.0",
    "date-fns": "^4.1.0",
    "picocolors": "^1.1.1",
    "strip-ansi": "^7.1.0",
    "terminal-link": "^4.0.0",
    "undici": "^7.11.0",
    "virtue-cli": "^1.0.9",
    "wrap-ansi": "^9.0.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.0.10",
    "@typescript-eslint/eslint-plugin": "^8.35.1",
    "@typescript-eslint/parser": "^8.35.1",
    "eslint": "^9.30.1",
    "jest": "^30.0.3",
    "nodemon": "^3.1.10",
    "ts-jest": "^29.4.0",
    "ts-node": "^10.9.2",
    "tsx": "^4.20.3",
    "typescript": "^5.8.3"
  }
}
