-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 786 Bytes
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
{
"name": "bb-plugin-sidebar-sync",
"version": "0.1.0",
"type": "module",
"private": true,
"license": "MIT",
"engines": {
"bb": ">=0.36",
"bbPluginSdk": "^0.4.1"
},
"bb": {
"name": "Sidebar sync",
"description": "Keep the sidebar arrangement — nav order, hidden rows, collapsed sections, project and thread order — the same in every bb UI",
"branding": {
"icon": "Refresh"
},
"server": "./server.ts",
"app": "./app.tsx"
},
"scripts": {
"test": "node --test --experimental-strip-types --test-timeout=10000 lib/*.test.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"typescript": "^5.7.0"
},
"dependencies": {
"zod": "^4.4.3"
}
}