-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.4 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
{
"name": "vsls-counter",
"displayName": "Live Share Counter",
"publisher": "lostintangent",
"description": "A sample VS Code extension that shows how to add new collaborative features to Live Share",
"version": "0.0.1",
"homepage": "https://github.com/vsls-contrib/counter",
"repository": {
"type": "git",
"url": "https://github.com/vsls-contrib/counter"
},
"bugs": {
"url": "https://github.com/vsls-contrib/counter/issues"
},
"author": {
"name": "Jonathan Carter"
},
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Other"
],
"keywords": [
"Collaboration",
"Sharing",
"Remote"
],
"activationEvents": [
"onFileSystem:vsls",
"onCommand:liveshare.start",
"onCommand:liveshare.startFromActivityBar",
"onCommand:liveshare.startReadOnly",
"onCommand:liveshare.startReadOnlyFromActivityBar",
"onCommand:liveshare.inviteUserJoin",
"onCommand:liveshare.inviteUserJoinByEmail"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"contributes": {
"liveshare.spaces": ["vsls-counter"]
},
"devDependencies": {
"typescript": "^3.1.4",
"vscode": "^1.1.25",
"tslint": "^5.8.0",
"@types/node": "^8.10.25"
},
"dependencies": {
"vsls": "^0.3.1291"
},
"extensionDependencies": [
"ms-vsliveshare.vsliveshare"
]
}