-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.64 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
{
"name": "github-linker",
"displayName": "GitHub linker",
"description": "Create links to fragments of code in GitHub",
"version": "0.2.6-pug4",
"publisher": "gimenete",
"engines": {
"vscode": "^1.89.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gimenete/github-linker.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:githublinker.copyLink",
"onCommand:githublinker.copyMarkdown",
"onCommand:githublinker.copyHacknoteMarkdown"
],
"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"
},
{
"when": "editorTextFocus || editorHasSelection",
"command": "githublinker.copyHacknoteMarkdown",
"title": "GitHub linker: Copy link to selection and code as markdown (hacknote)"
}
],
"menus": {
"editor/context": [
{
"when": "editorTextFocus || editorHasSelection",
"command": "githublinker.copyLink",
"group": "9_cutcopypaste"
},
{
"when": "editorTextFocus || editorHasSelection",
"command": "githublinker.copyMarkdown",
"group": "9_cutcopypaste"
},
{
"when": "editorTextFocus || editorHasSelection",
"command": "githublinker.copyHacknoteMarkdown",
"group": "9_cutcopypaste"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"@types/vscode": "^1.89.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.3.10",
"tslint": "^5.20.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/ini": "^4.1.0",
"axios": "^1.7.2",
"clipboardy": "^2.3.0",
"ini": "^4.1.3"
}
}