-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4 KB
/
Copy pathpackage.json
File metadata and controls
154 lines (154 loc) · 4 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
{
"name": "sprinthub",
"displayName": "SprintHub",
"description": "GitHub Projects v2 dashboard inside VS Code — sprint board, PR status, CI checks, and team hub",
"version": "1.2.0",
"publisher": "miraeld",
"icon": "resources/sprinthub-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Miraeld/sprinthub"
},
"homepage": "https://github.com/Miraeld/sprinthub#readme",
"bugs": {
"url": "https://github.com/Miraeld/sprinthub/issues"
},
"keywords": [
"github",
"project",
"board",
"sprint",
"kanban",
"dashboard",
"hub",
"pull-request",
"ci",
"workflow",
"scrum",
"agile"
],
"categories": [
"Other",
"Visualization",
"SCM Providers"
],
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "sprinthub.open",
"title": "Open SprintHub",
"category": "SprintHub",
"icon": "$(project)"
},
{
"command": "sprinthub.showBlockers",
"title": "Show Blockers",
"category": "SprintHub"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "sprinthub-container",
"title": "SprintHub — GitHub Projects",
"icon": "resources/sprinthub-mono.svg"
}
]
},
"views": {
"sprinthub-container": [
{
"id": "sprinthub.sidebar",
"name": "SprintHub",
"type": "tree"
}
]
},
"menus": {},
"configuration": {
"title": "SprintHub",
"properties": {
"sprinthub.owner": {
"type": "string",
"default": "",
"description": "GitHub organization or user login that owns the project"
},
"sprinthub.projectNumber": {
"type": "number",
"default": 0,
"description": "GitHub Project (v2) number"
},
"sprinthub.ownerType": {
"type": "string",
"enum": [
"organization",
"user"
],
"default": "organization",
"description": "Whether the owner is an organization or a user"
},
"sprinthub.statusFieldName": {
"type": "string",
"default": "Status",
"description": "Name of the single-select field in the GitHub Project that represents the column/status"
},
"sprinthub.refreshInterval": {
"type": "number",
"default": 5,
"description": "Auto-refresh interval in minutes (0 to disable)"
},
"sprinthub.liquidGlass": {
"type": "boolean",
"default": true,
"description": "Enable frosted-glass / translucent UI style"
},
"sprinthub.theme": {
"type": "string",
"enum": [
"dark",
"light"
],
"default": "dark",
"description": "UI theme: dark or light"
},
"sprinthub.colorBlind": {
"type": "boolean",
"default": false,
"description": "Color-blind friendly mode: replaces red/green with orange/blue for CI and review status"
}
}
}
},
"scripts": {
"build": "node esbuild.js",
"watch": "node esbuild.js --watch",
"vscode:prepublish": "node esbuild.js --production",
"lint": "eslint src webview-ui --ext .ts,.tsx",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@tailwindcss/cli": "^4.3.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vscode/vsce": "^3.0.0",
"esbuild": "^0.20.0",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"tailwindcss": "^4.3.0",
"typescript": "^5.0.0"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}