|
1 | 1 | { |
2 | 2 | "name": "vscode-tfs", |
3 | | - "displayName": "TFS", |
| 3 | + "version": "2.0.0", |
4 | 4 | "description": "TFS Visual Studio Code integration.", |
5 | | - "version": "1.2.0", |
6 | | - "author": { |
7 | | - "name": "Evgeniy Generalov", |
8 | | - "email": "e.generalov@gmail.com", |
9 | | - "url": "https://github.com/generalov" |
10 | | - }, |
11 | | - "contributors": [ |
12 | | - { |
13 | | - "name": "Aaron Stevens", |
14 | | - "email": "bheklilr2@gmail.com", |
15 | | - "url": "https://github.com/bheklilr/vscode-tfs" |
16 | | - } |
17 | | - ], |
18 | | - "publisher": "generalov", |
19 | 5 | "license": "SEE LICENSE IN LICENSE", |
20 | | - "keywords": [ |
21 | | - "tfs", |
22 | | - "team", |
23 | | - "foundation", |
24 | | - "server", |
25 | | - "microsoft" |
26 | | - ], |
27 | | - "repository": { |
28 | | - "type": "git", |
29 | | - "url": "https://github.com/generalov/vscode-tfs.git" |
30 | | - }, |
31 | | - "bugs": { |
32 | | - "url": "https://github.com/generalov/vscode-tfs/issues" |
33 | | - }, |
34 | | - "homepage": "https://github.com/generalov/vscode-tfs#readme", |
35 | | - "readmeFilename": "README.md", |
36 | | - "main": "./dist/extension", |
37 | | - "engines": { |
38 | | - "vscode": "^1.45.1" |
39 | | - }, |
| 6 | + "main": "./out/extension", |
40 | 7 | "scripts": { |
41 | 8 | "vscode:prepublish": "yarn run compile", |
42 | | - "precompile": "yarn run rimraf dist/*", |
| 9 | + "precompile": "yarn run rimraf out", |
43 | 10 | "compile": "tsc -p ./", |
| 11 | + "watch": "tsc -watch -p ./", |
44 | 12 | "pretest": "yarn run compile && yarn run lint", |
45 | 13 | "test": "mocha -r ts-node/register \"src/**/*.spec.ts\"", |
46 | 14 | "lint": "eslint src --ext ts", |
47 | 15 | "fix": "prettier --write \"src/**/*.ts\"" |
48 | 16 | }, |
| 17 | + "dependencies": { |
| 18 | + }, |
| 19 | + "devDependencies": { |
| 20 | + "@types/mocha": "^7.0.2", |
| 21 | + "@types/node": "^13.11.0", |
| 22 | + "@types/vscode": "^1.45.1", |
| 23 | + "@typescript-eslint/eslint-plugin": "^3.1.0", |
| 24 | + "@typescript-eslint/parser": "^3.1.0", |
| 25 | + "eslint": "7.2.0", |
| 26 | + "eslint-config-prettier": "^6.11.0", |
| 27 | + "eslint-plugin-mocha": "7.0.1", |
| 28 | + "eslint-plugin-prettier": "^3.1.3", |
| 29 | + "mocha": "^7.2.0", |
| 30 | + "prettier": "^2.0.5", |
| 31 | + "rimraf": "^3.0.2", |
| 32 | + "ts-node": "^8.10.2", |
| 33 | + "typescript": "^3.9.5" |
| 34 | + }, |
| 35 | + "engines": { |
| 36 | + "vscode": "^1.45.1" |
| 37 | + }, |
49 | 38 | "activationEvents": [ |
50 | 39 | "onCommand:vscode-tfs.add", |
51 | 40 | "onCommand:vscode-tfs.checkout", |
52 | 41 | "onCommand:vscode-tfs.delete", |
53 | 42 | "onCommand:vscode-tfs.undo", |
54 | 43 | "onCommand:vscode-tfs.openInBrowser", |
55 | | - "onCommand:vscode-tfs.menu" |
| 44 | + "onCommand:vscode-tfs.list" |
56 | 45 | ], |
57 | 46 | "contributes": { |
58 | 47 | "commands": [ |
|
82 | 71 | "category": "TFS" |
83 | 72 | }, |
84 | 73 | { |
85 | | - "command": "vscode-tfs.menu", |
| 74 | + "command": "vscode-tfs.list", |
86 | 75 | "title": "Team Foundation Server...", |
87 | 76 | "category": "TFS" |
88 | 77 | } |
89 | 78 | ], |
90 | 79 | "menus": { |
91 | 80 | "commandPalette": [ |
92 | 81 | { |
93 | | - "command": "vscode-tfs.menu", |
| 82 | + "command": "vscode-tfs.list", |
94 | 83 | "when": "false" |
95 | 84 | } |
96 | 85 | ], |
97 | 86 | "explorer/context": [ |
98 | 87 | { |
99 | | - "command": "vscode-tfs.menu" |
| 88 | + "command": "vscode-tfs.list" |
100 | 89 | } |
101 | 90 | ], |
102 | 91 | "editor/title/context": [ |
103 | 92 | { |
104 | | - "command": "vscode-tfs.menu" |
| 93 | + "command": "vscode-tfs.list" |
105 | 94 | } |
106 | 95 | ] |
107 | 96 | }, |
|
114 | 103 | "description": "Path to the TFS command line client (tf.exe)." |
115 | 104 | } |
116 | 105 | } |
| 106 | + }, |
| 107 | + "keybindings": [ |
| 108 | + { |
| 109 | + "command": "vscode-tfs.list", |
| 110 | + "key": "Alt+T" |
| 111 | + } |
| 112 | + ] |
| 113 | + }, |
| 114 | + "homepage": "https://github.com/generalov/vscode-tfs#readme", |
| 115 | + "author": { |
| 116 | + "name": "Evgeniy Generalov", |
| 117 | + "email": "e.generalov@gmail.com", |
| 118 | + "url": "https://github.com/generalov" |
| 119 | + }, |
| 120 | + "contributors": [ |
| 121 | + { |
| 122 | + "name": "Aaron Stevens", |
| 123 | + "email": "bheklilr2@gmail.com", |
| 124 | + "url": "https://github.com/bheklilr/vscode-tfs" |
117 | 125 | } |
| 126 | + ], |
| 127 | + "publisher": "generalov", |
| 128 | + "repository": { |
| 129 | + "type": "git", |
| 130 | + "url": "https://github.com/generalov/vscode-tfs.git" |
| 131 | + }, |
| 132 | + "bugs": { |
| 133 | + "url": "https://github.com/generalov/vscode-tfs/issues" |
118 | 134 | }, |
| 135 | + "readmeFilename": "README.md", |
| 136 | + "displayName": "TFS", |
119 | 137 | "icon": "res/icon.png", |
120 | 138 | "galleryBanner": { |
121 | 139 | "color": "#912a2a", |
|
124 | 142 | "categories": [ |
125 | 143 | "Other" |
126 | 144 | ], |
127 | | - "dependencies": { |
128 | | - }, |
129 | | - "devDependencies": { |
130 | | - "@types/mocha": "^7.0.2", |
131 | | - "@types/node": "^13.11.0", |
132 | | - "@types/vscode": "^1.45.1", |
133 | | - "@typescript-eslint/eslint-plugin": "^3.1.0", |
134 | | - "@typescript-eslint/parser": "^3.1.0", |
135 | | - "eslint": "7.2.0", |
136 | | - "eslint-config-prettier": "^6.11.0", |
137 | | - "eslint-plugin-mocha": "7.0.1", |
138 | | - "eslint-plugin-prettier": "^3.1.3", |
139 | | - "mocha": "^7.2.0", |
140 | | - "prettier": "^2.0.5", |
141 | | - "rimraf": "^3.0.2", |
142 | | - "ts-node": "^8.10.2", |
143 | | - "typescript": "^3.9.5" |
144 | | - } |
| 145 | + "keywords": [ |
| 146 | + "tfs", |
| 147 | + "team", |
| 148 | + "foundation", |
| 149 | + "server", |
| 150 | + "microsoft" |
| 151 | + ] |
145 | 152 | } |
0 commit comments