{
  "name": "silvan",
  "version": "0.0.15",
  "private": false,
  "description": "Operator-grade CLI for orchestrating resumable AI workflows around git repositories.",
  "keywords": [
    "ai",
    "cli",
    "git",
    "worktree",
    "automation",
    "workflow",
    "operator",
    "devtools"
  ],
  "homepage": "https://github.com/stevekinney/silvan#readme",
  "bugs": {
    "url": "https://github.com/stevekinney/silvan/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/stevekinney/silvan.git"
  },
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "bun": "./dist/index.js",
      "node": "./dist/node-stub.js",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./config": {
      "types": "./dist/config/index.d.ts",
      "node": "./dist/config/index.js",
      "default": "./dist/config/index.js"
    }
  },
  "types": "./dist/index.d.ts",
  "bin": {
    "silvan": "./bin/silvan.js"
  },
  "files": [
    "bin",
    "dist",
    "schemas",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "bun run scripts/build.ts",
    "build:binary": "bun build ./src/index.ts --compile --target $TARGET --outfile $OUTFILE",
    "clean": "rm -rf dist coverage tsconfig.tsbuildinfo",
    "dev": "bun --watch run src/index.ts",
    "format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
    "format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
    "generate:config-schema": "bun run scripts/generate-config-schema.ts",
    "postinstall": "bun run scripts/patch-armorer.ts",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "prepack": "bun run clean && bun run build",
    "prepare": "husky",
    "prepublishOnly": "bun run clean && bun run build",
    "release:major": "npm version major && git push --follow-tags",
    "release:minor": "npm version minor && git push --follow-tags",
    "release:patch": "npm version patch && git push --follow-tags",
    "skill:package": "bun run scripts/package-skill.ts",
    "start": "bun run src/index.ts",
    "test": "bun test",
    "test:coverage": "bun test --coverage",
    "typecheck": "tsc --noEmit",
    "validate": "bun run lint && bun run typecheck && bun run test",
    "verify:release-version": "bun run scripts/verify-release-version.ts"
  },
  "lint-staged": {
    "src/**/*.{js,ts,tsx,jsx,mjs,cjs}": [
      "eslint --fix",
      "prettier --write"
    ],
    "scripts/**/*.{js,ts,tsx,jsx,mjs,cjs}": [
      "eslint --fix",
      "prettier --write"
    ],
    "**/*.{json,md,css,scss}": [
      "prettier --write"
    ],
    "package.json": [
      "sort-package-json"
    ]
  },
  "dependencies": {
    "@anthropic-ai/claude-agent-sdk": "^0.2.7",
    "@lasercat/homogenaize": "^1.2.41",
    "@linear/sdk": "^70.0.0",
    "armorer": "^0.6.0",
    "cac": "^6.7.14",
    "change-case": "^5.4.4",
    "conversationalist": "0.0.11",
    "cosmiconfig": "^9.0.0",
    "dotenv": "^17.2.3",
    "env-paths": "^3.0.0",
    "ink": "^6.6.0",
    "ink-select-input": "^6.2.0",
    "ink-spinner": "^5.0.0",
    "ink-text-input": "^6.0.0",
    "octokit": "^5.0.5",
    "p-queue": "^9.1.0",
    "pino": "^10.2.0",
    "proper-lockfile": "^4.1.2",
    "prose-writer": "^0.1.3",
    "react": "^19.2.3",
    "zod": "^4.2.1"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.3",
    "@eslint/js": "^9.39.2",
    "@eslint/markdown": "^7.5.1",
    "@modelcontextprotocol/sdk": "^1.25.2",
    "@types/bun": "^1.3.5",
    "@types/mdast": "^4.0.4",
    "@types/react": "^19.2.8",
    "@typescript-eslint/eslint-plugin": "^8.50.0",
    "@typescript-eslint/parser": "^8.50.0",
    "chalk": "^5.6.2",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-prettier": "^5.5.4",
    "eslint-plugin-promise": "^7.2.1",
    "eslint-plugin-regexp": "^2.10.0",
    "eslint-plugin-simple-import-sort": "^12.1.1",
    "eslint-plugin-unicorn": "^62.0.0",
    "eslint-plugin-unused-imports": "^4.3.0",
    "globals": "^16.5.0",
    "husky": "^9.1.7",
    "ink-testing-library": "^4.0.0",
    "lint-staged": "^16.2.7",
    "prettier": "^3.7.4",
    "react-devtools-core": "^7.0.1",
    "remark": "^15.0.1",
    "remark-parse": "^11.0.0",
    "remark-stringify": "^11.0.0",
    "sort-package-json": "^3.6.0",
    "typescript-eslint": "^8.50.0",
    "unified": "^11.0.5",
    "unist-util-remove": "^4.0.0"
  },
  "engines": {
    "bun": ">=1.3.0",
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  }
}
