-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.49 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "open-git-repository",
"displayName": "Open Git Repository",
"description": "Open git repository links in your browser (GitHub, BitBucket, GitLab, SourceForge, and more!)",
"version": "1.0.1",
"license": "MIT",
"icon": "images/octoogre-200.png",
"publisher": "xadamxk",
"homepage": "https://github.com/xadamxk/vscode-OpenGitRepository",
"bugs": {
"url": "https://github.com/xadamxk/vscode-OpenGitRepository/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xadamxk/vscode-OpenGitRepository.git"
},
"author": {
"name": "xadamxk",
"url": "https://github.com/xadamxk"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"keywords": [
"git",
"github",
"bitbucket",
"repository"
],
"activationEvents": [
"workspaceContains:.git",
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": [
{
"title": "Open Git Repository",
"order": 1,
"properties": {
"open-git-repository.statusBar.enabled": {
"type": "boolean",
"order": 1,
"default": true,
"description": "Show the status bar item for opening the remote repository in a browser"
},
"open-git-repository.statusBar.alignment": {
"type": "string",
"order": 2,
"enum": [
"left",
"right"
],
"default": "right",
"description": "Which side of the status bar to show the action button on"
},
"open-git-repository.statusBar.icon": {
"type": "string",
"order": 3,
"enum": [
"browser",
"export",
"link",
"external",
"globe",
"preview",
"remote",
"repo",
"repoPull",
"rocket",
"signOut",
"sourceControl"
],
"default": "globe",
"description": "The icon of the status bar item"
}
}
}
],
"commands": [
{
"command": "open-git-repository.openOriginRepository",
"title": "Open Repository in Browser"
},
{
"command": "open-git-repository.openOriginFile",
"title": "Open File in Browser"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceScheme == 'file'",
"command": "open-git-repository.openOriginFile",
"group": "z_commands"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.56.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"simple-git": "^3.22.0"
}
}