-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.41 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
{
"name": "multihack-vscode",
"displayName": "multihack-vscode",
"description": "Supercharge your IDE with realtime collaboration features! P2P project sync for pair programming.",
"version": "1.3.4",
"publisher": "rationalcoding",
"license": "MIT",
"bugs": {
"url": "https://github.com/RationalCoding/multihack-vscode/issues"
},
"homepage": "https://github.com/RationalCoding/multihack-vscode/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/RationalCoding/multihack-vscode.git"
},
"galleryBanner": {
"color": "#222222",
"theme": "dark"
},
"engines": {
"vscode": "^1.11.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.multihackJoinRoom"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.multihackJoinRoom",
"title": "Multihack - Join Room"
},
{
"command": "extension.multihackLeaveRoom",
"title": "Multihack - Leave Room"
},
{
"command": "extension.multihackFetchCode",
"title": "Multihack - Fetch Code"
}
],
"configuration": {
"type": "object",
"title": "Multihack Configuration",
"properties": {
"mulithack.hostname": {
"type": "string",
"default": "https://quiet-shelf-57463.herokuapp.com",
"description": "Your multihack-server instance (default is public server)."
},
"multihack.defaultRoom": {
"type": "string",
"default": "",
"description": "The default room ID. (leave empty for a random ID)"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"electron-webrtc": "^0.3.0",
"getusermedia": "^2.0.1",
"inherits": "^2.0.3",
"multihack-wire": "^1.1.1",
"p2p-graph": "^1.1.1",
"path": "^0.12.7",
"simple-signal-client": "^1.2.6",
"socket.io-client": "^1.7.3",
"stream-throttle": "^0.1.3",
"trash": "^4.0.1",
"vscode": "^1.1.0"
}
}