-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 1.98 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
{
"name": "backlinks-panel",
"displayName": "Backlinks Panel",
"version": "0.2.2",
"description": "View all backlinks for the current file.",
"main": "./out/extension.js",
"icon": "resources/[email protected]",
"publisher": "BinyaminGreen",
"galleryBanner": {
"color": "#212429",
"theme": "dark"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/b3u/vscode-backlinks-panel.git"
},
"homepage": "https://github.com/b3u/vscode-backlinks-panel/blob/master/README.md",
"bugs": {
"url": "https://github.com/b3u/vscode-backlinks-panel/issues"
},
"activationEvents": [
"onView:backlinks"
],
"contributes": {
"commands": [
{
"command": "backlinks.refresh",
"title": "Refresh",
"icon": "$(refresh)"
}
],
"viewsWelcome": [
{
"view": "backlinks",
"contents": "No Backlinks found."
}
],
"menus": {
"view/title": [
{
"command": "backlinks.refresh",
"group": "navigation",
"when": "view == backlinks"
}
]
},
"views": {
"explorer": [
{
"id": "backlinks",
"name": "Backlinks"
}
]
}
},
"engines": {
"vscode": "^1.45.0"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"start": "npm run watch",
"watch": "tsc -watch -p ./",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts"
},
"keywords": [
"notes",
"wiki links",
"markdown",
"backlinks",
"references"
],
"author": {
"name": "Binyamin Aron Green"
},
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@types/node": "^14.14.10",
"@types/vscode": "^1.51.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
}
}