-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@hasna/dispatch",
"version": "0.0.26",
"author": "Andrei Hasna <andrei@hasna.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/hasna/dispatch.git"
},
"main": "dist/index.js",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"chalk": "^5.6.2",
"commander": "^13.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@hasna/contracts": "0.8.1",
"@types/bun": "^1.2.4",
"bun-types": "1.3.9",
"typescript": "^5.7.3"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./sdk": {
"types": "./dist/sdk/index.d.ts",
"import": "./dist/sdk/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js"
}
},
"bin": {
"dispatch": "dist/cli/index.js",
"dispatch-mcp": "dist/mcp/index.js",
"dispatch-daemon": "dist/daemon/index.js"
},
"bugs": {
"url": "https://github.com/hasna/dispatch/issues"
},
"description": "Dispatch prompts to coding agents in tmux windows — reliable auto-submit, long-prompt support, delivery confirmation, scheduled + cross-machine dispatch. CLI + MCP + SDK + daemon.",
"engines": {
"bun": ">=1.0.0"
},
"files": [
"dist",
"docs",
"hasna.contract.json",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/hasna/dispatch",
"keywords": [
"tmux",
"dispatch",
"coding-agent",
"claude",
"codex",
"mcp",
"cli",
"ai",
"automation",
"ssh"
],
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"build": "rm -rf dist && bun build src/cli/index.ts --outdir dist/cli --target bun --external @modelcontextprotocol/sdk --external @hasna/machines && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk --external @hasna/machines && bun build src/daemon/index.ts --outdir dist/daemon --target bun --external @hasna/machines && bun build src/sdk/index.ts --outdir dist/sdk --target bun --external @hasna/machines && bun build src/index.ts --outdir dist --target bun --external @hasna/machines && tsc --emitDeclarationOnly --outDir dist",
"typecheck": "tsc --noEmit",
"test": "bun test",
"check:contracts": "contracts repo-conformance .",
"scan:artifact": "contracts artifact-scan .",
"dev:cli": "bun run src/cli/index.ts",
"dev:mcp": "bun run src/mcp/index.ts",
"dev:daemon": "bun run src/daemon/index.ts",
"prepack": "bun run build && bun run scan:artifact",
"prepublishOnly": "bun run build && bun run scan:artifact",
"postinstall": "mkdir -p $HOME/.hasna/dispatch 2>/dev/null || true"
},
"type": "module",
"types": "dist/index.d.ts",
"optionalDependencies": {
"@hasna/machines": "^0.0.24"
}
}