-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.18 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
{
"name": "vscode-node-debug-process-picker",
"displayName": "vscode-node-debug-process-picker",
"description": "Provides configurable pick-process command while debugging Node.js program in vscode.",
"keywords": [
"vscode",
"extension",
"debugger",
"node",
"process-picker"
],
"version": "1.0.0",
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Debuggers",
"Other"
],
"author": "aprilandjan",
"publisher": "aprilandjan",
"license": "SEE LICENSE IN LICENSE",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#333333",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/aprilandjan/vscode-node-debug-process-picker"
},
"activationEvents": [
"onCommand:extension.nodeDebugProcessPicker.pick"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.nodeDebugProcessPicker.pick",
"title": "Pick Matched Process: Pick the node.js process to debug"
}
],
"configuration": [
{
"title": "configurations for node-debug-process-picker",
"properties": {
"nodeDebugProcessPicker.match": {
"type": "array",
"default": [],
"description": "Glob match patterns used to test against all available node process command names. The filtered result will be listed in the picker list"
},
"nodeDebugProcessPicker.autoAttach": {
"type": "boolean",
"default": true,
"description": "If the picker found only one matched process, attach it immediately, without manual pick-confirm"
}
}
}
],
"debuggers": [
{
"type": "node",
"variables": {
"PickMatchedProcess": "extension.nodeDebugProcessPicker.pick"
}
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/minimatch": "^3.0.3",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"tslint": "^5.8.0",
"typescript": "^3.1.4",
"vscode": "^1.1.25"
},
"dependencies": {
"minimatch": "^3.0.4",
"vscode-nls": "^4.1.2"
}
}