-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.83 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
{
"name": "ze-extender-new-view",
"displayName": "Extend Zowe Explorer with New View",
"description": "Sample code for Zowe Explorer Extender to create a new view",
"publisher": "Billie Jean Simmons",
"version": "0.0.3",
"license": "none",
"repository": {
"url": "https://github.com/JillieBeanSim/zowe_explorer_extender_newView"
},
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"extensionDependencies": [
"Zowe.vscode-extension-for-zowe"
],
"main": "./dist/extension.js",
"contributes": {
"views": {
"zowe": [
{
"id": "ze-extender-new-view",
"name": "Extender New View"
}
]
},
"menus": {
"view/title": [
{
"when": "view == ze-extender-new-view",
"command": "ze-extender-new-view.refresh",
"group": "navigation"
},
{
"when": "view == ze-extender-new-view",
"command": "ze-extender-new-view.add",
"group": "navigation"
}
]
},
"commands": [
{
"command": "ze-extender-new-view.refresh",
"title": "Refresh View",
"category": "Zowe Explorer",
"icon": "./resources/refresh.svg"
},
{
"command": "ze-extender-new-view.add",
"title": "Add profile",
"category": "Zowe Explorer",
"icon": "./resources/plus.svg"
}
]
},
"scripts": {
"build": "yarn clean && webpack --mode development",
"clean": "rimraf out && rimraf dist",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"package": " vsce package --yarn --no-dependencies && node ./scripts/mv-pack.js ze-extender-new-view vsix",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "webpack --mode production"
},
"dependencies": {
"@zowe/cli": "7.14.0",
"@zowe/zowe-explorer-api": "2.8.0"
},
"devDependencies": {
"@types/vscode": "^1.78.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"del": "^4.1.1",
"eslint": "^8.39.0",
"glob": "^8.1.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-filter": "^5.1.0",
"gulp-fs": "^0.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"mocha": "^10.2.0",
"typescript": "^5.0.4",
"ts-loader": "^9.4.2",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"@vscode/test-electron": "^2.3.0",
"vscode-nls-dev": "^4.0.0",
"vsce": "2.15.0"
}
}