-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
95 lines (95 loc) · 2.46 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
{
"name": "ctags-support",
"displayName": "CTags Support",
"description": "CTags support with navigation to definition and navigation history recored",
"version": "1.0.22",
"publisher": "jaydenlin",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.searchCTags",
"onCommand:extension.showNavigationHistory",
"onCommand:extension.clearAllNavigationHistory",
"onCommand:extension.clearOneNavigationHistory"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.searchCTags",
"title": "Ctags Support: navigate to definition"
},
{
"command": "extension.showNavigationHistory",
"title": "Ctags Support: show navigation history"
},
{
"command": "extension.clearAllNavigationHistory",
"title": "Ctags Support: clear all navigation history"
},
{
"command": "extension.clearOneNavigationHistory",
"title": "Ctags Support: clear one navigation history"
}
],
"configuration": {
"title": "Ctags Support",
"properties": {
"ctagsSupport.ctagsFilename": {
"scope": "language-overridable",
"type": "string",
"default": ".tags",
"description": "Tags filename"
}
}
},
"keybindings": [
{
"command": "extension.searchCTags",
"key": "ctrl+t",
"mac": "cmd+t",
"when": "editorTextFocus"
},
{
"command": "extension.showNavigationHistory",
"key": "ctrl+shift+t",
"mac": "cmd+shift+t",
"when": "editorTextFocus"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/jaydenlin/ctags-support"
},
"galleryBanner": {
"color": "#1e415e",
"theme": "dark"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.8.4"
},
"dependencies": {
"n-readlines": "^0.2.7",
"split": "^1.0.0"
}
}