-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.92 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
{
"name": "watchtower",
"displayName": "Watchtower",
"description": "Show the active Watchtower plan from a workspace watchtower/ directory as a visual dashboard.",
"version": "0.1.0",
"publisher": "local",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HiepPP/watchtower.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"activationEvents": [
"workspaceContains:watchtower/NEXT.md",
"onView:watchtower.tree",
"onCommand:watchtower.refresh",
"onCommand:watchtower.openNext"
],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "watchtower",
"title": "Watchtower",
"icon": "media/watchtower.svg"
}
]
},
"views": {
"watchtower": [
{
"type": "webview",
"id": "watchtower.tree",
"name": "Dashboard",
"contextualTitle": "Watchtower"
}
]
},
"commands": [
{
"command": "watchtower.refresh",
"title": "Watchtower: Refresh Plan",
"icon": "$(refresh)"
},
{
"command": "watchtower.openNext",
"title": "Watchtower: Open NEXT.md"
}
],
"menus": {
"view/title": [
{
"command": "watchtower.refresh",
"when": "view == watchtower.tree",
"group": "navigation"
}
]
}
},
"scripts": {
"compile": "tsc --noEmit && node esbuild.mjs",
"watch": "node esbuild.mjs --watch",
"test": "node --experimental-strip-types --import ./test/register-vscode.mjs --test 'test/*.ts'",
"package": "npm run compile && vsce package --allow-missing-repository --skip-license"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.0.0",
"esbuild": "^0.24.0",
"typescript": "^5.6.0"
}
}