-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
118 lines (118 loc) · 2.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
{
"name": "vscode-dotnet-auto-attach",
"displayName": ".NET Auto Attach",
"description": "Automatically attach the debugger to a dotnet process started with dotnet-watch.",
"version": "1.1.1",
"publisher": "DennisMaxJung",
"engines": {
"vscode": "^1.42.1"
},
"extensionDependencies": [
"ms-dotnettools.csharp"
],
"categories": [
"Debuggers",
"Programming Languages"
],
"keywords": [
"C#",
"multi-root ready",
"dotnet watch"
],
"icon": "images/icon.png",
"contributors": [
{
"name": "Dennis Jung"
},
{
"name": "Konrad Müller"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach"
},
"bugs": {
"url": "https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach/issues"
},
"homepage": "https://gitlab.com/dennismaxjung/vscode-dotnet-auto-attach",
"activationEvents": [
"onDebug",
"onLanguage:csharp",
"*"
],
"main": "./out/extension",
"contributes": {
"debuggers": [
{
"type": "DotNetAutoAttach",
"label": ".NET Auto Attach",
"configurationAttributes": {
"launch": {
"properties": {
"args": {
"type": "array",
"description": "Command line arguments passed to the program.",
"items": {
"type": "string"
},
"default": []
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Environment variables passed to the program.",
"default": {}
},
"project": {
"type": "string",
"description": "The project to start, bypass the quick pick menu.",
"default": ""
}
}
}
},
"configurationSnippets": [
{
"label": ".NET: Auto Attach Debug (dotnet-watch)",
"description": "A new configuration for launching .NET Auto Attach",
"body": {
"type": "DotNetAutoAttach",
"request": "launch",
"name": ".NET Core Watch",
"args": [],
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "tslint --project tsconfig.json ./src/**/*.ts -t verbose"
},
"dependencies": {
"typescript-collections": "^1.3.3"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.3",
"@types/vscode": "^1.41.0",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"typescript": "^3.7.4",
"tslint": "^5.20.1",
"vscode-test": "^1.2.2"
}
}