{
  "name": "@zbigniewsobiecki/squint",
  "version": "1.17.1",
  "description": "Squint — AST + LLM driven codebase analysis and visualization",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "bin": {
    "squint": "./bin/run.js"
  },
  "oclif": {
    "bin": "squint",
    "dirname": "squint",
    "commands": {
      "strategy": "pattern",
      "target": "./dist/commands",
      "globPatterns": [
        "**/*.js",
        "!**/_shared/**",
        "!**/llm/flows/**",
        "!**/llm/features/**",
        "!**/phases/**"
      ]
    },
    "default": "parse",
    "topicSeparator": " "
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "/bin",
    "/dist",
    "/ui/dist"
  ],
  "dependencies": {
    "@oclif/core": "^4.0.0",
    "better-sqlite3": "^12.6.2",
    "chalk": "^5.3.0",
    "glob": "^11.0.0",
    "llmist": "^15.18.1",
    "tree-sitter": "^0.21.1",
    "tree-sitter-javascript": "^0.23.0",
    "tree-sitter-ruby": "^0.23.1",
    "tree-sitter-typescript": "^0.23.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.0",
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^22.0.0",
    "@vitest/coverage-v8": "^2.1.9",
    "@commitlint/cli": "^19.6.0",
    "@commitlint/config-conventional": "^19.6.0",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/exec": "^7.0.3",
    "@semantic-release/git": "^10.0.1",
    "conventional-changelog-conventionalcommits": "^8.0.0",
    "lefthook": "^1.6.0",
    "typescript": "^5.6.0",
    "semantic-release": "^24.2.0",
    "vitest": "^2.1.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/zbigniewsobiecki/squint.git"
  },
  "keywords": [
    "ast",
    "codebase",
    "analysis",
    "llm",
    "visualization",
    "cli"
  ],
  "license": "MIT",
  "scripts": {
    "build": "tsc && pnpm run build:ui",
    "build:server": "tsc",
    "build:ui": "cd ui && pnpm run build",
    "clean": "rm -rf dist ui/dist",
    "start": "node ./bin/run.js",
    "dev": "node ./bin/dev.js",
    "dev:ui": "cd ui && pnpm run dev",
    "dev:all": "sh ./bin/dev-all.sh",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:coverage:ui": "cd ui && pnpm run test:coverage",
    "test:coverage:all": "pnpm run test:coverage && pnpm run test:coverage:ui",
    "test:all": "pnpm test && cd ui && pnpm test",
    "typecheck": "tsc --noEmit",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write ."
  }
}