-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.87 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
{
"name": "bb-plugin-files",
"version": "0.1.0",
"type": "module",
"engines": {
"bb": ">=0.35.1",
"bbPluginSdk": "^0.4.1"
},
"bb": {
"name": "Files",
"description": "Browse and safely edit the current BB thread environment.",
"branding": {
"icon": "FolderOpen"
},
"server": "./server.ts",
"app": "./app.tsx"
},
"dependencies": {
"@codemirror/autocomplete": "6.20.1",
"@codemirror/commands": "6.10.4",
"@codemirror/language": "6.12.4",
"@codemirror/language-data": "6.5.2",
"@codemirror/search": "6.7.1",
"@codemirror/state": "6.7.1",
"@codemirror/view": "6.43.8",
"@hugeicons/core-free-icons": "^4.2.3",
"@hugeicons/react": "^1.1.9",
"@radix-ui/react-alert-dialog": "^1.1.23",
"@radix-ui/react-context-menu": "^2.3.7",
"@radix-ui/react-slot": "^1.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "6.0.2",
"tailwind-merge": "^3.6.0",
"zod": "4.3.6"
},
"devDependencies": {
"@radix-ui/react-dialog": "^1.1.19",
"@testing-library/dom": "10.4.1",
"@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.0.0",
"hono": "^4.11.9",
"jsdom": "29.0.1",
"react": "19.2.8",
"react-dom": "19.2.8",
"typescript": "^5.7.0",
"vaul": "^1.1.2",
"vitest": "4.1.10"
},
"description": "Browse and safely edit the current BB thread environment.",
"license": "MIT",
"private": true,
"files": [
"dist",
"server.ts",
"app.tsx",
"app.css",
"src",
"components",
"hooks",
"lib",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run --config vitest.config.ts",
"build": "bb plugin build ."
}
}