-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.12 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
{
"name": "dotnet",
"displayName": "dotnet",
"description": "A modern wrapper around dotnet cli",
"version": "1.3.0",
"publisher": "leo-labs",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/leo-labs/vscode-dotnet"
},
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"keywords": [
".NET Core",
"nuget",
"csharp",
"c#",
"dotnet"
],
"activationEvents": [
"onCommand:extension.dotnet.add.package",
"onCommand:extension.dotnet.remove.package",
"onCommand:extension.dotnet.add.reference",
"onCommand:extension.dotnet.remove.reference",
"onCommand:extension.dotnet.sln.add",
"onCommand:extension.dotnet.sln.remove",
"onCommand:extension.dotnet.new"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.dotnet.add.package",
"title": "dotnet add package"
},
{
"command": "extension.dotnet.remove.package",
"title": "dotnet remove package"
},
{
"command": "extension.dotnet.add.reference",
"title": "dotnet add reference"
},
{
"command": "extension.dotnet.remove.reference",
"title": "dotnet remove reference"
},
{
"command": "extension.dotnet.sln.add",
"title": "dotnet sln add"
},
{
"command": "extension.dotnet.sln.remove",
"title": "dotnet sln remove"
},
{
"command": "extension.dotnet.new",
"title": "dotnet new"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.difference": "^4.5.6",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.38.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode-test": "^1.2.0"
},
"dependencies": {
"axios": "^0.19.0",
"lodash.debounce": "^4.0.8",
"lodash.difference": "^4.5.0",
"path": "^0.12.7",
"promisify-child-process": "^3.1.3"
}
}