UNPKG

claude-code-crew-custom

Version:
59 lines 1.53 kB
{ "name": "claude-code-crew-custom", "version": "0.2.9", "description": "Web UI based crew management for Claude Code sessions", "type": "module", "repository": { "type": "git", "url": "https://github.com/kurasupedaichi/claude-code-crew-custom.git" }, "keywords": [ "claude", "code", "worktree", "git", "web", "gui", "terminal" ], "author": "kurasupedaichi", "license": "MIT", "engines": { "node": ">=18.0.0" }, "bin": { "claude-code-crew": "./bin/claude-code-crew.js" }, "scripts": { "start": "node server/dist/server/src/index.js", "dev": "pnpm run build && pnpm run start:single", "build": "pnpm run -r build && pnpm run copy-client", "copy-client": "mkdir -p server/dist/public && cp -r client/dist/* server/dist/public/", "start:single": "NODE_ENV=production node server/dist/server/src/index.js", "test": "pnpm run -r test", "test:run": "pnpm run -r test:run", "test:coverage": "pnpm run -r test:coverage", "typecheck": "pnpm run -r typecheck", "prepublishOnly": "echo 'Built version included in package'" }, "dependencies": { "dotenv": "^16.3.1", "express": "^4.18.2", "node-pty": "^1.0.0", "socket.io": "^4.7.2" }, "devDependencies": { "concurrently": "^8.2.2", "typescript": "^5.3.3", "@types/node": "^20.10.0" }, "files": [ "bin", "server/dist", "server/package.json", "client/package.json", "shared", "pnpm-workspace.yaml", "start.sh" ] }