{
  "name": "syner-code",
  "version": "0.2.0",
  "description": "Syner Code — Open-source terminal AI coding assistant with BYOK and Ollama",
  "type": "module",
  "main": "./dist/cli/index.js",
  "module": "./dist/cli/index.js",
  "types": "./dist/cli/index.d.ts",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "bin": {
    "syner": "bin/syner.js"
  },
  "files": [
    "bin",
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "dev": "tsx watch --ts tsconfig.json src/cli/index.ts",
    "start": "node dist/cli/index.js",
    "lint": "eslint src --ext .ts --fix",
    "lint:check": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "clean": "node --input-type=module -e \"import { rmSync } from 'node:fs'; rmSync('dist',{recursive:true,force:true})\"",
    "prebuild": "npm run clean",
    "postinstall": "node -e \"console.log('\\n  Run syner setup to configure Syner Code\\n')\"",
    "prepare": "npm run build",
    "publish:public": "npm publish --access public",
    "prepublishOnly": "npm run test"
  },
  "dependencies": {
    "@ai-sdk/anthropic": "^1.2.0",
    "@ai-sdk/deepseek": "^0.1.0",
    "@ai-sdk/google": "^1.1.0",
    "@ai-sdk/openai": "^1.2.0",
    "@clack/core": "^0.4.0",
    "@clack/prompts": "^0.10.0",
    "ai": "^4.1.0",
    "chalk": "^5.4.0",
    "cli-highlight": "^2.1.11",
    "cli-spinners": "^3.0.0",
    "commander": "^11.0.0",
    "conf": "^13.1.0",
    "diff": "^7.0.0",
    "execa": "^9.5.2",
    "globby": "^14.0.0",
    "ink": "^4.0.0",
    "marked": "^15.0.0",
    "ora": "^8.2.0",
    "p-map": "^7.0.3",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "semver": "^7.7.1",
    "strip-ansi": "^7.1.0",
    "terminal-link": "^4.0.0",
    "uuid": "^11.1.0",
    "zod": "^3.24.0"
  },
  "devDependencies": {
    "@types/diff": "^6.0.0",
    "@types/node": "^22.13.0",
    "@types/react": "^18.3.3",
    "@types/semver": "^7.5.8",
    "@types/uuid": "^10.0.0",
    "@typescript-eslint/eslint-plugin": "^8.28.0",
    "@typescript-eslint/parser": "^8.28.0",
    "eslint": "^9.23.0",
    "husky": "^9.1.7",
    "lint-staged": "^15.4.3",
    "prettier": "^3.5.3",
    "tsx": "^4.19.0",
    "typescript": "^5.8.0",
    "vitest": "^3.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "ai",
    "assistant",
    "cli",
    "coding",
    "agent",
    "terminal",
    "llm",
    "anthropic",
    "openai",
    "ollama",
    "gemini",
    "deepseek"
  ],
  "license": "MIT",
  "homepage": "https://github.com/arnabimperial/syner-code",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/arnabimperial/syner-code.git"
  },
  "bugs": {
    "url": "https://github.com/arnabimperial/syner-code/issues"
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write"
    ]
  }
}
