-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 2.26 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
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vsix-viewer",
"displayName": "VSIX Viewer",
"description": "A simple viewer for VSIX files",
"version": "0.0.1",
"publisher": "onlyutkarsh",
"author": {
"name": "Utkarsh Shigihalli"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#F2F2F2",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/onlyutkarsh/vsixviewer.git"
},
"engines": {
"vscode": "^1.37.0"
},
"categories": [
"Other"
],
"keywords": [
"vsix",
"viewer",
"explorer",
"extension"
],
"license": "MIT",
"activationEvents": [
"onCommand:vsixViewer.showInVSIXViewer"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "vsixViewer.showInVSIXViewer",
"title": "Show in VSIX Viewer",
"when": "resourceScheme == file && resourceExtname == .vsix"
}
],
"menus": {
"explorer/context": [
{
"command": "vsixViewer.showInVSIXViewer",
"when": "resourceScheme == file && resourceExtname == .vsix"
}
],
"commandPalette": [
{
"command": "vsixViewer.showInVSIXViewer",
"when": "1 == 2"
}
]
},
"views": {
"explorer": [
{
"id": "vsixViewer",
"name": "VSIX Viewer"
}
]
},
"configuration": {
"type": "object",
"title": "VSIX Viewer",
"properties": {
"vsixViewer.enableTelemetry": {
"type": "boolean",
"default": true,
"description": "Enable usage data and errors to be sent to the developer."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile && webpack --mode production",
"webpack": "npm run compile && webpack --mode development",
"webpack-dev": "npm run compile && webpack --mode development --watch --info-verbosity verbose",
"compile": "tsc -p ./",
"package": "vsce package",
"deploy": "vsce publish -p"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jszip": "~3.1.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.17",
"@types/vscode": "^1.37.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"ts-loader": "~6.2.0",
"tslint": "^5.20.0",
"tslint-webpack-plugin": "~2.1.0",
"typescript": "^3.6.3",
"vsce": "~1.71.0",
"webpack": "~4.41.2",
"webpack-cli": "~3.3.9"
},
"dependencies": {
"jszip": "~3.2.2",
"vscode-extension-telemetry": "~0.1.2"
}
}