forked from dotnet/vscode-dotnet-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
178 lines (178 loc) · 5.92 KB
/
package.json
File metadata and controls
178 lines (178 loc) · 5.92 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "vscode-dotnet-pack",
"version": "1.0.9",
"preview": true,
"publisher": "ms-dotnettools",
"author": "Microsoft Corporation",
"displayName": ".NET Extension Pack",
"description": "The ultimate collection of extensions for working with .NET in VS Code!",
"license": "SEE LICENSE IN LICENSE",
"icon": "dotnet-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/dotnet/vscode-dotnet-pack.git"
},
"homepage": "https://github.com/dotnet/vscode-dotnet-pack",
"bugs": {
"url": "https://github.com/dotnet/vscode-dotnet-pack/issues"
},
"keywords": [
"dotnet",
".NET",
".NET Core",
".NET Interactive",
"C#",
"csharp",
"F#",
"fsharp",
"Jupyter",
"notebooks",
"interactive programming"
],
"categories": [
"Extension Packs",
"Programming Languages",
"Debuggers",
"Snippets",
"Linters",
"Notebooks"
],
"engines": {
"vscode": "^1.53.0"
},
"extensionPack": [
"ms-dotnettools.csharp",
"ms-dotnettools.dotnet-interactive-vscode",
"ms-toolsai.jupyter",
"Ionide.Ionide-fsharp"
],
"main": "./out/extension",
"activationEvents": [
"onUri",
"onDebugInitialConfigurations",
"onDebugResolve:blazorwasm",
"onDebugResolve:coreclr",
"onDebugResolve:clr",
"onLanguage:csharp",
"onLanguage:aspnetcorerazor",
"onNotebook:dotnet-interactive",
"onNotebook:dotnet-interactive-jupyter",
"onNotebook:jupyter-notebook",
"workspaceContains:project.json",
"workspaceContains:*.csproj",
"workspaceContains:*.sln",
"workspaceContains:*.csx",
"workspaceContains:*.cake",
"workspaceContains:**/*.csproj",
"workspaceContains:**/*.sln",
"workspaceContains:**/*.csx",
"workspaceContains:**/*.cake",
"onCommand:dotnet.gettingStarted",
"onWebviewPanel:dotnet.gettingStarted",
"onWalkthrough:vscode-dotnet-pack-getting-started"
],
"contributes": {
"commands": [
{
"command": "dotnet.gettingStarted",
"title": ".NET: Getting Started"
}
],
"configuration": {
"title": ".NET Extension Pack",
"properties": {
"dotnet.help.firstView": {
"type": [
"string"
],
"enum": [
"auto",
"gettingStarted",
"none"
],
"enumDescriptions": [
"Automatically pick the first experience view",
"Present the .NET Getting Started page",
"Do not show any view"
],
"default": "auto",
"description": "Sets the default view which is presented during the first use.",
"scope": "window"
}
}
},
"walkthroughs": [
{
"id": "vscode-dotnet-pack-getting-started",
"title": "Getting Started with .NET",
"description": "A walkthrough to help you get the most out of the .NET tooling.",
"when":"true",
"steps": [
{
"id": "vscode-dotnet-sdk",
"title": "Get the .NET SDK",
"description": "The .NET Extension Pack requires the .NET SDK to be installed.\n[Install .NET SDK](https://aka.ms/dotnet-extensionpack-sdk)",
"media": {
"markdown": "media/install-sdk.md"
}
},
{
"id": "vscode-dotnet-pack-getting-started-sample-apps",
"title": "Where to Start",
"description": "Browse the beginner C# notebooks to learn to code with C#. Click on the button to find our repository of beginner C# content. Simply click on the Notebook Link to open in Visual Studio Code.\n[Beginner C# Notebooks](https://aka.ms/dotnet-extensionpack-csharp-notebooks)",
"media": {
"markdown": "media/where-to-start.md"
}
},
{
"id": "vscode-dotnet-pack-getting-started-where-to-start",
"title": "Build an App",
"description": "Not sure where to start learning how to code and build apps? Microsoft Learn has courses to teach you how to build web apps, mobile apps, and more! \n[Go to Microsoft Learn](https://aka.ms/dotnet-extensionpack-mslearn)",
"media": {
"markdown": "media/build-an-app.md"
}
},
{
"id": "vscode-dotnet-pack-getting-started-notebooks",
"title": "Interactive Notebooks",
"description": "With the .NET Extension Pack, you can use interactive notebooks to experiment with code! Create a new notebook by opening the command palette and selecting '.NET Interactive: Create new blank notebook'. \n[Open Command Palette](command:workbench.action.showCommands)",
"media": {
"markdown": "media/notebooks.md"
}
},
{
"id": "vscode-dotnet-pack-getting-started-new-to-vscode",
"title": "New to Visual Studio Code",
"description": "New to Visual Studio Code? Take a video tour! Watch our introductory videos on the VS Code documentation.\n[Go to Video](https://aka.ms/dotnet-extensionpack-vscode)",
"media": {
"markdown": "media/new-to-vscode.md"
}
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch --info-verbosity verbose",
"build": "webpack --config webpack.config.js --mode=\"production\"",
"lint": "eslint ./src/**/*.ts"
},
"devDependencies": {
"@types/node": "17.0.23",
"@types/vscode": "1.53.0",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "8.12.0",
"eslint-plugin-jsdoc": "38.1.4",
"ts-loader": "9.2.8",
"typescript": "4.6.3",
"vscode-tas-client": "0.1.31",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
},
"dependencies": {
"vscode-extension-telemetry-wrapper": "0.12.0"
}
}