-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
140 lines (140 loc) · 3.66 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
{
"name": "breakpoint-bookmarks",
"displayName": "Breakpoint Bookmarks",
"description": "Bookmark all your different breakpoints into separate files, and activate them as needed",
"version": "1.2.0",
"icon": "resources/logo-colorful.png",
"repository": "https://github.com/omar-dulaimi/breakpoint-bookmarks",
"author": "Omar Dulaimi",
"publisher": "OmarDulaimi",
"keywords": [
"vscode",
"breakpoint",
"bookmark",
"extension"
],
"license": "MIT",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.saveCurrentBreakpoints",
"onView:savedBookmarks"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.saveCurrentBreakpoints",
"title": "Breakpoint Bookmark: Save Current Breakpoints"
},
{
"command": "extension.loadBookmarks",
"title": "Load breakpoint flow",
"icon": {
"light": "resources/light/load.svg",
"dark": "resources/dark/load.svg"
}
},
{
"command": "extension.refresh",
"title": "Refresh",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
},
{
"command": "extension.deleteFlow",
"title": "Delete Bookmarks Flow",
"shortTitle": "Delete Flow",
"icon": "$(trash)"
}
],
"menus": {
"view/item/context": [
{
"command": "extension.loadBookmarks",
"group": "inline"
},
{
"command": "extension.deleteFlow",
"group": "inline"
}
],
"view/title": [
{
"command": "extension.refresh",
"when": "view == savedBookmarks",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "breakpoint-bookmarks",
"title": "Breakpoint Bookmarks",
"icon": "resources/logo-colorful.svg"
}
]
},
"views": {
"breakpoint-bookmarks": [
{
"id": "savedBookmarks",
"name": "Saved"
}
]
},
"configuration": {
"title": "Breakpoint Bookmarks",
"properties": {
"breakpointBookmark.useRelativePaths": {
"type": "boolean",
"default": true,
"description": "Uses relative paths to save/load breakpoints. Set it to false if you want absolute paths."
},
"breakpointBookmark.clearPreviousBreakpoints": {
"type": "boolean",
"default": true,
"description": "Clears previous active breakpoints when loading a new file."
},
"breakpointBookmark.saveLocation": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the folder path where the breakpoint files will be stored in."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/vscode": "^1.65.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"typescript": "^4.5.5",
"@vscode/test-electron": "^2.1.2"
}
}