This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
executable file
·129 lines (129 loc) · 3.29 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
{
"name": "vscode-debug-launcher",
"displayName": "Debug Launcher",
"description": "Start debugging, without having to define any tasks or launch configurations, even from the terminal.",
"icon": "resources/logo/logo-128x128.png",
"version": "2.1.0",
"license": "MIT",
"main": "out/extension.js",
"publisher": "fabiospampinato",
"activationEvents": [
"onCommand:debugLauncher.auto",
"onCommand:debugLauncher.file",
"onCommand:debugLauncher.launch",
"onUri"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Debug Launcher - Configuration",
"properties": {
"debugLauncher": {
"type": "object",
"properties": {
"[project.node]": {
"type": "object",
"properties": {
"configuration": {
"type": "object"
},
"commands": {
"type": "array"
}
}
}
},
"patternProperties": {
"^\\[[a-zA-Z0-9_.-]*\\]$": {
"type": "object",
"description": "Debugger-specific configuration and commands overrides",
"properties": {
"configuration": {
"type": "object",
"description": "Debugger-specific configuration override",
"default": {}
},
"commands": {
"type": "array",
"description": "Debugger-specific commands override",
"default": []
}
}
}
}
}
}
},
"commands": [
{
"command": "debugLauncher.auto",
"title": "Debug Launcher: Auto"
},
{
"command": "debugLauncher.file",
"title": "Debug Launcher: File"
},
{
"command": "debugLauncher.launch",
"title": "Debug Launcher: Launch"
}
],
"menus": {
"commandPalette": [
{
"command": "debugLauncher.launch",
"when": "false"
}
]
}
},
"scripts": {
"vscode:prepublish": "rm -rf out && webpack --mode production",
"publish": "vsce publish && npm publish",
"compile": "webpack --mode development",
"compile:watch": "webpack --mode development --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"bugs": {
"url": "https://github.com/fabiospampinato/vscode-debug-launcher/issues"
},
"author": {
"name": "Fabio Spampinato",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/vscode-debug-launcher.git"
},
"engines": {
"vscode": "^1.26.0"
},
"keywords": [
"vscode",
"vsc",
"extension",
"debug",
"launcher",
"terminal"
],
"categories": [
"Debuggers",
"Other"
],
"dependencies": {
"@types/lodash": "^4.14.118",
"@types/node": "^10.12.8",
"absolute": "0.0.1",
"json5": "^2.1.0",
"lodash": "^4.17.11",
"pify": "^4.0.1"
},
"devDependencies": {
"ts-loader": "^5.2.1",
"typescript": "^3.0.3",
"vscode": "^1.1.4",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}