-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "bb-plugin-github-notifications",
"version": "0.1.0",
"description": "Shows comments and mentions on GitHub pull requests and issues you authored.",
"type": "module",
"license": "UNLICENSED",
"files": [
"dist",
"docs",
"README.md"
],
"scripts": {
"build": "node ../../tooling/build-plugin.mjs",
"check": "npm run typecheck && npm run build && npm test",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"engines": {
"bb": ">=0.0.34",
"bbPluginSdk": ">=0.4.8"
},
"bb": {
"name": "GitHub Activity",
"description": "Shows comments and mentions on GitHub pull requests and issues you authored.",
"branding": {
"icon": "Github"
},
"server": "./server.ts",
"app": "./app.tsx",
"skills": []
},
"dependencies": {
"lucide-react": "^0.474.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@get-bb/plugin-sdk": "file:../../tooling/vendor/get-bb-plugin-sdk-0.4.8.tgz",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.2.3",
"better-sqlite3": "^12.10.0",
"cron-parser": "^5.5.0",
"hono": "^4.11.9",
"jsdom": "^29.0.1",
"typescript": "^5.7.0",
"vitest": "^4.1.8"
}
}