This repository has been archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
109 lines (109 loc) · 3.26 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
{
"name": "sourcetrail",
"icon": "icon.png",
"displayName": "sourcetrail",
"description": "VSCode Extension to communicate with Sourcetrail",
"version": "1.0.0",
"publisher": "coatisoftware",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/CoatiSoftware/vsce-sourcetrail.git"
},
"homepage": "https://github.com/CoatiSoftware/vsce-sourcetrail/blob/master/README.md",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/CoatiSoftware/vsce-sourcetrail/issues"
},
"license": "LICENSE.txt",
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.startServer",
"title": "Sourcetrail: (Re)start server"
},
{
"command": "extension.stopServer",
"title": "Sourcetrail: Stop Server"
},
{
"command": "extension.sendLocation",
"title": "Sourcetrail: Send Location"
},
{
"command": "extension.sendPing",
"title": "Sourcetrail: Send Ping"
}
],
"configuration": {
"type": "object",
"title": "Sourcetrail Configurations",
"properties": {
"sourcetrail.sourcetrailPort": {
"type": "integer",
"default": 6667,
"description": "Port Sourcetrail listen to"
},
"sourcetrail.pluginPort": {
"type": "integer",
"default": 6666,
"description": "Port VS Code listen to"
},
"sourcetrail.ip": {
"type": "string",
"default": "localhost",
"description": ""
},
"sourcetrail.startServerAtStartup": {
"type": "boolean",
"default": false,
"description": "Start the TCP Server for listening at the Startup of VS Code"
}
}
},
"menus": {
"editor/context": [
{
"command": "extension.sendLocation",
"group": "sourcetrailgroup@1"
}
]
},
"keybindings": [
{
"command": "extension.sendLocation",
"key": ""
},
{
"command": "extension.stopServer",
"key": ""
},
{
"command": "extension.startServer",
"key": ""
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}