forked from JaneySprings/DotNet.Meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "dotnet-meteor",
"publisher": "nromanov",
"version": "23.2.0",
"description": "Run and Debug .NET Apps",
"displayName": ".NET Meteor",
"author": "Nikita Romanov",
"license": "MIT",
"icon": "img/logo.png",
"preview": false,
"bugs": {
"url": "https://github.com/JaneySprings/DotNet.Meteor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/JaneySprings/DotNet.Meteor.git"
},
"categories": [
"Debuggers"
],
"keywords": [
"C#",
".NET",
"MAUI",
"dotnet"
],
"engines": {
"vscode": "^1.73.0"
},
"activationEvents": [
"onLanguage:csharp",
"onLanguage:fsharp",
"workspaceContains:**/*.{csproj,fsproj,sln,slnf,csx}"
],
"main": "./extension/extension.js",
"contributes": {
"include": "src/VSCode.Extension/manifest/commands.json",
"include": "src/VSCode.Extension/manifest/tasks.json",
"include": "src/VSCode.Extension/manifest/matchers.json",
"include": "src/VSCode.Extension/manifest/breakpoints.json",
"include": "src/VSCode.Extension/manifest/debuggers.json",
"include": "src/VSCode.Extension/manifest/configuration.json"
},
"scripts": {
"vscode:prepublish": "npm run package",
"watch": "tsc -watch -p ./src/VSCode.Extension/tsconfig.json",
"package": "webpack --mode production --config ./src/VSCode.Extension/webpack.config.js"
},
"devDependencies": {
"@types/node": "16.x",
"@types/sax": "^1.2.4",
"@types/vscode": "^1.73.0",
"typescript": "^4.8.4",
"ts-loader": "^9.4.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"sax": "^1.2.4"
}
}