{
  "name": "@zapier/stubtree",
  "version": "0.1.1",
  "description": "CLI tool to generate ASCII tree of project structure with symbol stubs using universal-ctags",
  "main": "dist/index.js",
  "bin": {
    "stubtree": "./dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/index.js",
    "test": "FORCE_COLOR=0 jest",
    "lint": "eslint src/**/*.ts",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build && npm test"
  },
  "keywords": ["ctags", "ast", "tree", "cli", "development-tools", "code-structure", "documentation"],
  "author": "Bryan Helmig",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zapier/stubtree.git"
  },
  "bugs": {
    "url": "https://github.com/zapier/stubtree/issues"
  },
  "homepage": "https://github.com/zapier/stubtree#readme",
  "files": [
    "dist/",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.11",
    "@types/node": "^20.10.5",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.3"
  },
  "dependencies": {
    "commander": "^11.1.0",
    "chalk": "^4.1.2"
  }
}