{ "name": "@pollit/twin-dev-bot", "version": "0.0.6", "description": "Slack bot that runs Claude Code via thread-based conversations", "type": "module", "bin": { "twindevbot": "bin/twindevbot.js" }, "files": [ "dist", "bin" ], "publishConfig": { "access": "public" }, "scripts": { "build": "tsc", "prepublishOnly": "npm run build", "dev:server": "tsx src/server.ts", "start:server": "node dist/server.js", "stop": "node dist/cli.js stop", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage" }, "keywords": [ "claude", "slack", "bridge", "claude-code", "ai", "automation" ], "license": "AGPL-3.0-only", "repository": { "type": "git", "url": "git+https://github.com/hyeonseungk/twin-dev-bot.git" }, "bugs": { "url": "https://github.com/hyeonseungk/twin-dev-bot/issues" }, "homepage": "https://github.com/hyeonseungk/twin-dev-bot#readme", "engines": { "node": ">=18" }, "dependencies": { "@inquirer/prompts": "^8.2.0", "@slack/bolt": "^4.6.0", "@slack/types": "^2.19.0", "@slack/web-api": "^7.13.0", "dotenv": "^16.4.0" }, "devDependencies": { "@types/node": "^20.11.0", "@vitest/coverage-v8": "^4.0.18", "tsx": "^4.7.0", "typescript": "^5.3.0", "vitest": "^4.0.18" } }