This repository was archived by the owner on May 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.42 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
{
"name": "vscode-dotnet-pack",
"version": "1.0.13",
"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",
"dotnet Interactive",
"Polyglot Notebooks",
"C#",
"csharp",
"F#",
"fsharp",
"Jupyter",
"notebooks",
"interactive programming"
],
"categories": [
"Extension Packs",
"Programming Languages",
"Debuggers",
"Snippets",
"Linters",
"Notebooks"
],
"engines": {
"vscode": "^1.83.0"
},
"extensionPack": [
"ms-dotnettools.csdevkit",
"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:polyglot-notebook",
"onNotebook:jupyter-notebook",
"workspaceContains:project.json",
"workspaceContains:*.csproj",
"workspaceContains:*.sln",
"workspaceContains:*.csx",
"workspaceContains:*.cake",
"workspaceContains:**/*.csproj",
"workspaceContains:**/*.sln",
"workspaceContains:**/*.csx",
"workspaceContains:**/*.cake",
"onWebviewPanel:dotnet.gettingStarted"
],
"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"
}
}
}
},
"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"
}
}