-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "vnetkc-developers-vs-code-pack",
"displayName": "VNETKC Developers Pack",
"description": "An extension pack for VS Code with either access to Azure tools or other required extensions for code management in open source projects.",
"version": "1.0.4",
"publisher": "v-network-solutions",
"repository": {
"type": "git",
"url": "https://github.com/v-network-solutions/vnetkc-vs-code-developers-pack"
},
"icon": "static/vnetkc-developers-pack-icon.png",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Azure",
"Extension Packs",
"Formatters",
"Linters"
],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"keywords": [
"VNETKC",
"V-Network Solutions",
"Developers Pack",
"Dev Environment",
"Open Source",
"GitHub"
],
"extensionPack": [
"aaron-bond.better-comments",
"DavidAnson.vscode-markdownlint",
"esbenp.prettier-vscode",
"mikestead.dotenv",
"ms-vscode.azure-account",
"streetsidesoftware.code-spell-checker"
],
"galleryBanner": {
"color": "#f0f5ef",
"theme": "light"
},
"links": {
"getstarted": {
"uri": "https://github.com/v-network-solutions/vnetkc-vs-code-developers-pack"
},
"support": {
"uri": "https://github.com/v-network-solutions/vnetkc-vs-code-developers-pack/issues/new/"
},
"license": {
"uri": "https://github.com/v-network-solutions/vnetkc-vs-code-developers-pack/blob/master/LICENSE"
}
},
"scripts": {
"clean": "rimraf ./**/*.vsix",
"login": "vsce login v-network-solutions",
"package": "vsce package",
"prepackage": "npm run clean",
"prepublish": "npm run package",
"publish": "vsce publish"
},
"devDependencies": {
"rimraf": "^3.0.2"
}
}