-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "bb-plugin-dispatch",
"version": "0.1.3",
"type": "module",
"description": "A bb plugin that turns a one-liner into a scoped thread in the right project: it classifies which of your bb projects the request belongs to, expands it through a prompt enhancer, and spawns the thread.",
"keywords": [
"bb",
"bb-plugin",
"getbb",
"agent-ide",
"ai-agents",
"prompt-engineering",
"prompt-expansion",
"task-routing"
],
"author": "Shane Logsdon",
"repository": {
"type": "git",
"url": "git+https://github.com/slogsdon/bb-plugin-dispatch.git"
},
"bugs": {
"url": "https://github.com/slogsdon/bb-plugin-dispatch/issues"
},
"homepage": "https://github.com/slogsdon/bb-plugin-dispatch#readme",
"license": "MIT",
"scripts": {
"types": "bb plugin types",
"typecheck": "tsc --noEmit -p tsconfig.json",
"build": "bb plugin build ."
},
"engines": {
"bb": ">=0.37",
"bbPluginSdk": "^0.4.1"
},
"bb": {
"name": "Dispatch",
"description": "Expand a one-liner and route it to the right project as a new thread.",
"branding": {
"icon": "./assets/icon.svg"
},
"server": "./server.ts",
"app": "./app.tsx"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"bb-app": "^0.38.0",
"better-sqlite3": "^12.0.0",
"hono": "^4.11.9",
"typescript": "^5.7.0"
},
"dependencies": {
"zod": "^4.3.6"
},
"files": [
"dist",
"server.ts",
"app.tsx",
"assets/icon.svg"
]
}