-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "bb-plugin-timeline-comments",
"version": "0.1.0",
"description": "Attach durable comment threads to selected text in bb timelines.",
"type": "module",
"license": "UNLICENSED",
"files": [
"dist",
"docs",
"skills",
"README.md"
],
"scripts": {
"build": "node ../../tooling/build-plugin.mjs",
"check": "npm run typecheck && npm run build && npm test",
"test": "vitest run",
"test:browser": "node ./browser-check/run.mjs",
"typecheck": "tsc --noEmit"
},
"engines": {
"bb": ">=0.0.34",
"bbPluginSdk": "^0.4.1"
},
"bb": {
"name": "Timeline Comments",
"description": "Attach durable comment threads to selected text in bb timelines.",
"branding": {
"icon": "MessageCirclePlus"
},
"server": "./server.ts",
"app": "./app.tsx",
"skills": [
"skills"
]
},
"devDependencies": {
"@get-bb/plugin-sdk": "file:./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",
"better-sqlite3": "^12.10.0",
"cron-parser": "^5.5.0",
"esbuild": "^0.28.0",
"hono": "^4.11.9",
"jsdom": "^29.0.1",
"playwright": "^1.55.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.0",
"vitest": "^4.1.8"
},
"dependencies": {
"@hugeicons/core-free-icons": "^4.1.3",
"@hugeicons/react": "^1.1.6",
"@radix-ui/react-tooltip": "^1.2.12",
"lucide": "^0.474.0",
"lucide-react": "^0.474.0",
"zod": "^4.3.6"
}
}