-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"name": "@phosphorco/bb-plugin-perspectives",
"version": "0.2.1",
"type": "module",
"license": "MIT",
"description": "Independent expert help and phase-bounded perspective synthesis for bb agents.",
"author": "Phosphor",
"homepage": "https://github.com/phosphorco/bb-community-plugins/tree/main/plugins/perspectives#readme",
"bugs": {
"url": "https://github.com/phosphorco/bb-community-plugins/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phosphorco/bb-community-plugins.git",
"directory": "plugins/perspectives"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"bb",
"bb-plugin",
"perspectives",
"agents",
"experts",
"orchestration"
],
"engines": {
"bb": ">=0.39.0 <1.0.0",
"bbPluginSdk": "^0.4.47"
},
"bb": {
"name": "Perspectives",
"description": "Independent expert help and phase-bounded perspective synthesis for bb agents.",
"branding": {
"icon": "Search",
"logo": {
"light": "./assets/icon-32.png"
}
},
"server": "./server.ts",
"skills": []
},
"files": [
"dist/",
"assets/",
"README.md",
"LICENSE",
"server.ts",
"Perspectives.ts"
],
"dependencies": {
"zod": "4.3.6"
},
"devDependencies": {
"bb-app": "0.42.0",
"@get-bb/plugin-sdk": "0.4.47",
"@types/node": "^22",
"typescript": "^5.9.3"
},
"scripts": {
"build": "node ../../tools/bb-target-cli.mjs plugin build .",
"dev": "node ../../tools/bb-target-cli.mjs plugin dev .",
"test": "node --test --experimental-strip-types test/*.test.ts",
"typecheck": "tsc --noEmit"
}
}