-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
164 lines (164 loc) · 3.86 KB
/
package.json
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
{
"name": "tabnote",
"displayName": "TabNote",
"description": "Leave a note on tabs or files to help you remember why they were opened/relevant/whatever the heck you may want to remember.",
"version": "0.0.2",
"license": "MIT",
"publisher": "alganzory",
"repository": {
"type": "git",
"url": "https://github.com/alganzory/tabnote"
},
"bugs": {
"url": "https://github.com/alganzory/tabnote/issues"
},
"engines": {
"vscode": "^1.74.0"
},
"icon": "media/icons/icon.png",
"categories": [
"Other",
"Notebooks",
"Debuggers"
],
"keywords": [
"note",
"tab",
"tab note",
"file note",
"file todo",
"tab todo",
"todo",
"productivity",
"notebook",
"todo notes",
"line notes",
"specific file notes"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "extension.addNote",
"title": "TabNote: Add Note",
"icon": "$(add)",
"enablement": "resourcePath not in extension.existingNotes"
},
{
"command": "extension.viewEditNoteItem",
"title": "View/Edit Note",
"icon": "$(pencil)",
"enablement": "view == notesTreeView"
},
{
"command": "extension.viewEditCurrentNote",
"title": "TabNote: View/Edit this Note",
"icon": "$(pencil)",
"enablement": "resourcePath in extension.existingNotes"
},
{
"command": "extension.deleteNoteItem",
"title": "Delete Note",
"icon": "$(remove)",
"enablement": "view == notesTreeView"
},
{
"command": "extension.deleteCurrentNote",
"title": "TabNote: Delete this Note",
"icon": "$(remove)",
"enablement": "resourcePath in extension.existingNotes"
},
{
"command": "extension.refreshNotes",
"title": "Refresh Notes",
"icon": "$(refresh)"
},
{
"command": "extension.searchNotes",
"title": "TabNote: Search Notes",
"icon": "$(search)",
"enablement": "extension.existingNotesLength > 0"
}
],
"views": {
"notesTreeContainer": [
{
"id": "notesTreeView",
"name": "Notes",
"icon": "media/icons/activityBarIcon.png",
"contextualTitle": "Notes"
}
]
},
"viewsWelcome": [
{
"view": "notesTreeView",
"contents": "Your notes will appear here. Add a note through the command palette by searching for 'TabNote: Add Note' or by clicking the TabNote icon in the status bar.",
"when": "extension.existingNotesLength == 0"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "notesTreeContainer",
"title": "TabNote",
"icon": "media/icons/activityBarIcon.png"
}
]
},
"menus": {
"view/title": [
{
"command": "extension.refreshNotes",
"when": "view == notesTreeView",
"group": "navigation"
},
{
"command": "extension.searchNotes",
"when": "view == notesTreeView",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "extension.viewEditNoteItem",
"group": "inline"
},
{
"command": "extension.deleteNoteItem",
"group": "inline"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.3",
"ts-loader": "^9.4.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"@vscode/test-electron": "^2.2.0"
}
}