{
  "name": "@tokenizin/ai-repomap",
  "version": "2.1.0",
  "description": "AI-powered codebase mapping tool that analyzes and generates a detailed map of your project structure, with support for JavaScript, TypeScript, Flutter, Dart, and Android.",
  "type": "module",
  "bin": {
    "tokenizin-repomap": "./dist/mapper.js"
  },
  "dependencies": {
    "tree-sitter": "^0.20.6",
    "tree-sitter-javascript": "^0.20.1",
    "tree-sitter-typescript": "^0.20.3",
    "tree-sitter-dart": "^1.0.0",
    "ignore": "^5.3.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.27.1",
    "@types/node": "^20.10.2",
    "tsup": "^8.0.0",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18"
  },
  "keywords": [
    "codebase-analysis",
    "code-mapping",
    "static-analysis",
    "javascript",
    "typescript",
    "flutter",
    "dart",
    "android"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/tokenizin/tokigen.git"
  },
  "bugs": {
    "url": "https://github.com/tokenizin/tokigen/issues"
  },
  "homepage": "https://github.com/tokenizin/tokigen#readme",
  "usage": "tokenizin-repomap [directory-path]",
  "scripts": {
    "start": "tsx bin/mapper.ts",
    "build": "tsup bin/mapper.ts --format esm --dts --clean --out-dir dist",
    "clean": "rm -rf dist",
    "dev": "tsx watch bin/mapper.ts",
    "release": "pnpm run build && changeset publish",
    "full-release": "pnpm run build && pnpm changeset && git add . && git commit -m \"chore: add changeset\" && pnpm changeset version && git add . && git commit -m \"chore: update versions\" && pnpm changeset publish && git push --follow-tags"
  }
}