-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "gatekeeper",
"displayName": "Live Share Gatekeeper",
"publisher": "vsls-contrib",
"description": "VS Code extension to automatically block unwanted Live Share guests.",
"version": "0.0.9",
"engines": {
"vscode": "^1.40.0"
},
"icon": "images/icon.png",
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/vsls-contrib/gatekeeper.git"
},
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Live Share Gatekeeper Configuration",
"properties": {
"gatekeeper.allowedDomains": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Specifies the set of domains that guests are allowed be authenticated with."
},
"gatekeeper.allowReadWriteTerminals": {
"type": "boolean",
"default": false,
"description": "Specifies whether or not a read-write terminal can be instantiated within Live Share session."
}
}
}
},
"extensionDependencies": [
"MS-vsliveshare.vsliveshare"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^8.10.25",
"@types/node-fetch": "^2.5.7",
"typescript": "^3.1.4",
"vsce": "^1.87.1",
"vscode": "^1.1.25"
},
"dependencies": {
"node-fetch": "^2.6.1",
"vsls": "^1.0.2590"
}
}