-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.88 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.88 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
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
{
"name": "vscode-launcher",
"displayName": "Debug Configuration Launcher",
"description": "Launcher action for debug configurations",
"version": "0.0.1",
"license": "MIT",
"publisher": "ecmel",
"author": {
"name": "Ecmel Ercan",
"url": "https://ecmel.dev/"
},
"sponsor": {
"url": "https://github.com/sponsors/ecmel"
},
"repository": {
"type": "git",
"url": "https://github.com/ecmel/vscode-launcher.git"
},
"bugs": "https://github.com/ecmel/vscode-launcher/issues",
"homepage": "https://github.com/ecmel/vscode-launcher",
"engines": {
"vscode": "^1.99.0"
},
"categories": [
"Other"
],
"keywords": [
"launch",
"run",
"debug",
"multi-root ready"
],
"main": "./out/extension.js",
"icon": "icon.png",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": [
{
"title": "Launcher",
"properties": {
"launcher.mappings": {
"scope": "resource",
"type": "array",
"items": {
"type": "object",
"title": "Mappings",
"properties": {
"name": {
"type": "string",
"description": "Debug configuration name."
},
"pattern": {
"type": "string",
"description": "File path pattern."
}
}
},
"default": [],
"description": "Debug configuration mappings."
}
}
}
],
"commands": [
{
"command": "vscode-launcher.run",
"title": "Launch",
"enablement": "launcher.name",
"icon": "$(run)"
}
],
"keybindings": [
{
"command": "vscode-launcher.run",
"key": "ctrl+l",
"mac": "cmd+l",
"when": "launcher.name"
}
],
"menus": {
"editor/title/run": [
{
"command": "vscode-launcher.run",
"group": "launcher@1",
"when": "launcher.name"
}
]
}
},
"scripts": {
"clean": "git clean -xfdf",
"reset": "npm run clean && npm install",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src",
"pretest": "npm run compile && npm run lint",
"test": "vscode-test",
"coverage": "npm run test -- --coverage",
"vscode:prepublish": "npm run compile",
"package": "npx --package=@vscode/vsce -- vsce package",
"publish": "npx --package=@vscode/vsce -- vsce publish"
},
"devDependencies": {
"@types/node": "20.x",
"@types/sinon": "^17.0.4",
"@types/vscode": "1.99.0",
"@typescript-eslint/eslint-plugin": "8.29.1",
"@typescript-eslint/parser": "8.29.1",
"@vscode/test-cli": "0.0.10",
"@vscode/test-electron": "2.5.2",
"eslint": "9.24.0",
"sinon": "20.0.0",
"typescript": "5.8.3"
}
}