{
  "name": "pi-tag",
  "version": "0.2.1",
  "description": "Lightweight Slack gateway for pi coding agent",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Crokily/pi-tag.git"
  },
  "homepage": "https://github.com/Crokily/pi-tag#readme",
  "bugs": {
    "url": "https://github.com/Crokily/pi-tag/issues"
  },
  "keywords": [
    "slack",
    "bot",
    "pi",
    "coding-agent",
    "gateway",
    "pi-package"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "bin": {
    "pitag": "dist/cli/index.js",
    "pi-tag": "dist/cli/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    ".env.example",
    "manifest.yaml",
    "LICENSE"
  ],
  "engines": {
    "node": ">=22.19.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc && node -e \"require('fs').chmodSync('dist/cli/index.js',0o755)\"",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "start": "node dist/cli/index.js start",
    "dev": "tsx src/cli/index.ts start"
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*"
  },
  "dependencies": {
    "@clack/prompts": "^0.11.0",
    "@slack/bolt": "^4.7.3",
    "@slack/web-api": "^7.19.0",
    "better-sqlite3": "^12.0.0",
    "croner": "^10.0.1",
    "dotenv": "^16.5.0",
    "minimatch": "^10.0.1",
    "pino": "^9.6.0",
    "pino-pretty": "^13.0.0"
  },
  "devDependencies": {
    "@earendil-works/pi-ai": "^0.80.6",
    "@earendil-works/pi-coding-agent": "^0.80.6",
    "@eslint/js": "^10.0.1",
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^22.15.0",
    "eslint": "^10.3.0",
    "eslint-config-prettier": "^10.1.8",
    "prettier": "^3.8.3",
    "tsx": "^4.19.0",
    "typescript": "^5.8.0",
    "typescript-eslint": "^8.59.3",
    "vitest": "^4.1.2"
  }
}
