forked from salemsayed/bb-plugin-advisor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.92 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
{
"name": "bb-plugin-advisor",
"version": "0.1.0",
"description": "A persistent independent reviewer for bb coding threads.",
"license": "MIT",
"author": {
"name": "Salem Sayed Abdel Gawad",
"url": "https://github.com/salemsayed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salemsayed/bb-plugin-advisor.git"
},
"bugs": {
"url": "https://github.com/salemsayed/bb-plugin-advisor/issues"
},
"homepage": "https://github.com/salemsayed/bb-plugin-advisor#readme",
"publishConfig": {
"access": "public"
},
"files": [
"app.tsx",
"server.ts",
"src/review.ts",
"dist/app.css",
"dist/app.js",
"dist/app.meta.json",
"dist/server.js",
"dist/server.meta.json",
"README.md",
"LICENSE"
],
"type": "module",
"engines": {
"bb": ">=0.35",
"bbPluginSdk": "^0.4.1"
},
"bb": {
"name": "Advisor",
"description": "A persistent second-model reviewer for bb coding threads.",
"branding": {
"icon": "ShieldCheck"
},
"server": "./server.ts",
"app": "./app.tsx",
"skills": []
},
"scripts": {
"build": "bb plugin build",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json",
"verify": "npm run typecheck && npm test && npm run build",
"prepack": "npm run build"
},
"keywords": [
"bb-plugin",
"advisor",
"review"
],
"dependencies": {
"zod": "4.3.6"
},
"devDependencies": {
"@bb/plugin-sdk": "file:vendor/bb-plugin-sdk-0.4.2.tgz",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"bb-app": "0.36.0",
"better-sqlite3": "^12.0.0",
"cron-parser": "^5.5.0",
"hono": "^4.11.9",
"jsdom": "^29.0.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"typescript": "^5.7.0",
"vitest": "^4.1.1"
},
"allowScripts": {
"better-sqlite3@12.11.1": true
}
}