forked from gimenete/github-linker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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": "github-linker",
"displayName": "GitHub linker",
"description": "Create links to fragments of code in GitHub",
"version": "0.2.3",
"publisher": "gimenete",
"engines": {
"vscode": "^1.30.0"
},
"repository": {
"type": "git",
"url": "/~https://github.com/gimenete/github-linker.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:githublinker.copyLink",
"onCommand:githublinker.copyMarkdown"
],
"main": "./out/extension",
"icon": "icon.png",
"contributes": {
"commands": [
{
"when": "editorTextFocus || editorHasSelection",
"command": "githublinker.copyLink",
"title": "GitHub linker: Copy link to selection"
},
{
"when": "editorTextFocus || editorHasSelection",
"command": "githublinker.copyMarkdown",
"title": "GitHub linker: Copy link to selection and code as markdown"
}
],
"menus": {
"editor/context": [
{
"when": "editorTextFocus || editorHasSelection",
"command": "githublinker.copyLink",
"group": "9_cutcopypaste"
},
{
"when": "editorTextFocus || editorHasSelection",
"command": "githublinker.copyMarkdown",
"group": "9_cutcopypaste"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.1.4",
"vscode": "^1.1.25",
"tslint": "^5.8.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"@types/clipboardy": "^1.1.0",
"@types/ini": "^1.3.30",
"clipboardy": "^1.2.3",
"ini": "^1.3.5"
}
}