-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
184 lines (184 loc) · 5.66 KB
/
package.json
File metadata and controls
184 lines (184 loc) · 5.66 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"name": "vscode-beads",
"displayName": "Beads",
"description": "VS Code extension for managing Beads issues",
"version": "0.13.0",
"publisher": "planet57",
"license": "Apache-2.0",
"icon": "resources/icon.png",
"files": [
"LICENSE",
"CHANGELOG.md",
"dist/**",
"resources/**",
"docs/images/**"
],
"repository": {
"type": "git",
"url": "https://github.com/jdillon/vscode-beads"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Visualization"
],
"keywords": [
"beads",
"issues",
"project management",
"dashboard"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "beads",
"title": "Beads",
"icon": "resources/beads-icon.svg"
}
]
},
"views": {
"beads": [
{
"type": "webview",
"id": "beadsDashboard",
"name": "Dashboard",
"visibility": "visible"
},
{
"type": "webview",
"id": "beadsPanel",
"name": "Issues",
"visibility": "visible"
},
{
"type": "webview",
"id": "beadsDetails",
"name": "Details",
"visibility": "visible"
}
]
},
"commands": [
{
"command": "beads.switchProject",
"title": "Beads: Switch Project",
"icon": "$(folder)"
},
{
"command": "beads.openBeadsPanel",
"title": "Beads: Open Issues Panel",
"icon": "$(list-unordered)"
},
{
"command": "beads.openBeadDetails",
"title": "Beads: Open Issue Details",
"icon": "$(file-text)"
},
{
"command": "beads.refresh",
"title": "Beads: Refresh",
"icon": "$(refresh)"
},
{
"command": "beads.copyBeadId",
"title": "Beads: Copy Issue ID",
"icon": "$(copy)"
}
],
"menus": {
"view/title": [
{
"command": "beads.refresh",
"when": "view == beadsDashboard",
"group": "navigation@1"
},
{
"command": "beads.refresh",
"when": "view == beadsPanel",
"group": "navigation@1"
},
{
"command": "beads.copyBeadId",
"when": "view == beadsDetails && beads.hasSelectedBead",
"group": "navigation@1"
}
]
},
"configuration": {
"title": "Beads",
"properties": {
"beads.pathToBd": {
"type": "string",
"default": "bd",
"description": "Path to the bd CLI executable. Supports ${env:VAR} placeholders."
},
"beads.refreshInterval": {
"type": "number",
"default": 3000,
"description": "Polling interval in milliseconds for Dolt change detection (0 to disable)"
},
"beads.renderMarkdown": {
"type": "boolean",
"default": true,
"description": "Render markdown in description, design notes, and other text fields"
},
"beads.userId": {
"type": "string",
"default": "",
"description": "Your user ID for 'Assign to me'. Supports ${env:VAR} placeholders (e.g., ${env:USER}). Defaults to $USER if not set."
},
"beads.tooltipHoverDelay": {
"type": "number",
"default": 1000,
"minimum": 0,
"description": "Delay in milliseconds before showing bead description tooltip on hover. Set to 0 to disable tooltips."
}
}
}
},
"scripts": {
"compile": "bun run compile:extension && bun run compile:webview",
"compile:quiet": "bun run compile:extension:quiet && bun run compile:webview:quiet",
"compile:extension": "esbuild src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --target=node18",
"compile:extension:quiet": "esbuild src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --target=node18 --log-level=error",
"compile:webview": "esbuild src/webview/index.tsx --bundle --outfile=dist/webview/main.js --format=iife --platform=browser --target=es2020 --loader:.tsx=tsx --loader:.ts=ts --loader:.css=css --loader:.svg=text --define:process.env.NODE_ENV=\\\"production\\\"",
"compile:webview:quiet": "esbuild src/webview/index.tsx --bundle --outfile=dist/webview/main.js --format=iife --platform=browser --target=es2020 --loader:.tsx=tsx --loader:.ts=ts --loader:.css=css --loader:.svg=text --define:process.env.NODE_ENV=\\\"production\\\" --log-level=error",
"watch": "concurrently \"bun run watch:extension\" \"bun run watch:webview\"",
"watch:extension": "bun run compile:extension -- --watch --sourcemap",
"watch:webview": "bun run compile:webview -- --watch --sourcemap",
"lint": "eslint src --ext ts,tsx",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"vscode:prepublish": "bun run compile",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"concurrently": "^8.2.2",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@tanstack/react-table": "^8.21.3",
"lucide-react": "^0.563.0",
"marked": "^17.0.1",
"mysql2": "^3.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}