-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 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
{
"name": "vs-live-share-mdns",
"publisher": "lherman-cs",
"displayName": "Live Share MDNS",
"description": "Easily Live Share Session Link Without Going Out From IDE",
"version": "0.0.11",
"repository": {
"type": "git",
"url": "https://github.com/lherman-cs/vs-live-share-mdns.git"
},
"engines": {
"vscode": "^1.32.0"
},
"keywords": [
"sharing",
"discovery",
"peer",
"liveshare",
"mdns"
],
"preview": true,
"categories": [
"Other"
],
"extensionDependencies": [
"ms-vsliveshare.vsliveshare"
],
"activationEvents": [
"onCommand:extension.liveShareMdns.publish",
"onCommand:extension.liveShareMdns.discover"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.liveShareMdns.publish",
"title": "Live Share Mdns: Publish"
},
{
"command": "extension.liveShareMdns.discover",
"title": "Live Share Mdns: Discover"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"publish": "vsce publish"
},
"devDependencies": {
"@types/bonjour": "^3.5.5",
"@types/crypto-js": "^3.1.43",
"@types/mdns": "0.0.33",
"@types/mocha": "^5.2.6",
"@types/node": "^11.12.0",
"tslint": "^5.14.0",
"typescript": "^3.3.4000",
"vsce": "^1.64.0",
"vscode": "^1.1.33"
},
"dependencies": {
"bonjour": "^3.5.0",
"crypto-js": "^3.1.9-1",
"random-words": "^1.1.0"
}
}