-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.85 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.85 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
{
"name": "cursor-skills-sidebar",
"displayName": "Skills Sidebar",
"description": "Discover and invoke SKILL.md files from a sidebar panel",
"version": "0.1.0",
"publisher": "jsgette",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "skills-sidebar",
"title": "Skills",
"icon": "$(sparkle)"
}
]
},
"views": {
"skills-sidebar": [
{
"id": "skillsView",
"name": "Skills"
}
]
},
"commands": [
{
"command": "skills-sidebar.invokeSkill",
"title": "Invoke Skill",
"icon": "$(play)"
},
{
"command": "skills-sidebar.refresh",
"title": "Refresh Skills",
"icon": "$(refresh)"
},
{
"command": "skills-sidebar.openSkillFile",
"title": "Open SKILL.md",
"icon": "$(go-to-file)"
}
],
"menus": {
"view/title": [
{
"command": "skills-sidebar.refresh",
"when": "view == skillsView",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "skills-sidebar.invokeSkill",
"when": "view == skillsView && viewItem == skill",
"group": "inline"
},
{
"command": "skills-sidebar.openSkillFile",
"when": "view == skillsView && viewItem == skill"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.7.1",
"typescript": "^5.4.0"
}
}