-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.77 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.77 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
{
"name": "portl",
"displayName": "Portl",
"description": "Save and open frequently-used links from the Command Palette",
"version": "1.2.0",
"publisher": "nsnet",
"engines": { "vscode": "^1.85.0" },
"icon": "media/icon.png",
"galleryBanner": { "color": "#13102b", "theme": "dark" },
"keywords": ["links", "bookmark", "url", "portal", "launcher", "quickpick", "productivity"],
"repository": { "type": "git", "url": "https://github.com/NSNet21/portl" },
"bugs": { "url": "https://github.com/NSNet21/portl/issues" },
"categories": ["Other"],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "portl-sidebar",
"title": "Portl",
"icon": "media/portl-icon.svg"
}
]
},
"views": {
"portl-sidebar": [
{
"id": "portlLinks",
"name": "Links"
}
]
},
"commands": [
{ "command": "portl.open", "title": "Portl: Open Link" },
{ "command": "portl.add", "title": "Portl: Add New Link", "icon": "$(add)" },
{ "command": "portl.delete", "title": "Portl: Delete Link" },
{ "command": "portl.editConfig", "title": "Portl: Edit Config (JSON)" },
{ "command": "portl.refreshTree", "title": "Portl: Refresh", "icon": "$(refresh)" },
{ "command": "portl.openFromTree", "title": "Open", "icon": "$(link-external)" },
{ "command": "portl.openFromTreeClick", "title": "Select / Double-click to open" },
{ "command": "portl.editLink", "title": "Edit Link (settings.json)", "icon": "$(edit)" },
{ "command": "portl.deleteFromTree", "title": "Delete Link", "icon": "$(trash)" },
{ "command": "portl.reset", "title": "Portl: Reset All Links", "icon": "$(clear-all)" },
{ "command": "portl.showOutputLog", "title": "Portl: Show Output Log" },
{ "command": "portl.diagnose", "title": "Portl: Diagnose (Dev Tool)" }
],
"menus": {
"view/title": [
{
"command": "portl.add",
"when": "view == portlLinks",
"group": "navigation@1"
},
{
"command": "portl.refreshTree",
"when": "view == portlLinks",
"group": "navigation@2"
}
],
"view/item/context": [
{
"command": "portl.openFromTree",
"when": "view == portlLinks && viewItem == link",
"group": "inline@1"
},
{
"command": "portl.editLink",
"when": "view == portlLinks && viewItem == link",
"group": "inline@2"
},
{
"command": "portl.deleteFromTree",
"when": "view == portlLinks && viewItem == link",
"group": "inline@3"
}
]
},
"keybindings": [
{
"command": "portl.open",
"key": "ctrl+shift+l",
"mac": "cmd+shift+l"
}
],
"configuration": {
"title": "Portl",
"properties": {
"portl.links": {
"type": "object",
"default": {},
"markdownDescription": "Saved links. Each key is a label; value is a URI string, `{ target, description }`, or `{ nestedItems }` for groups."
},
"portl.openInBrowser": {
"type": "boolean",
"default": true,
"description": "Open links in system browser (true) or VS Code Simple Browser (false)."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "^20.x",
"typescript": "^5.x",
"@vscode/vsce": "^2.x"
}
}